Formatting automated-tests
[platform/core/uifw/dali-adaptor.git] / automated-tests / src / dali-adaptor-internal / utc-Dali-CompressedTextures.cpp
old mode 100755 (executable)
new mode 100644 (file)
index 1b1eb54..c88222c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  */
 
 // EXTERNAL INCLUDES
-#include <iostream>
-#include <stdlib.h>
-#include <vector>
 #include <dali-test-suite-utils.h>
-#include <dali/internal/imaging/common/loader-ktx.h>
 #include <dali/internal/imaging/common/loader-astc.h>
+#include <dali/internal/imaging/common/loader-ktx.h>
+#include <stdlib.h>
+#include <iostream>
+#include <vector>
 
 // INTERNAL INCLUDES
 #include "image-loaders.h"
@@ -29,8 +29,8 @@
 using namespace Dali;
 
 // Pre-define loader functions for each image type being tested (as they are reused in different tests).
-static const LoadFunctions KtxLoaders(  TizenPlatform::LoadKtxHeader,  TizenPlatform::LoadBitmapFromKtx  );
-static const LoadFunctions AstcLoaders( TizenPlatform::LoadAstcHeader, TizenPlatform::LoadBitmapFromAstc );
+static const LoadFunctions KtxLoaders(TizenPlatform::LoadKtxHeader, TizenPlatform::LoadBitmapFromKtx);
+static const LoadFunctions AstcLoaders(TizenPlatform::LoadAstcHeader, TizenPlatform::LoadBitmapFromAstc);
 
 /**
  * This class encapsulates knowledge of testing compressed files.
@@ -39,99 +39,93 @@ static const LoadFunctions AstcLoaders( TizenPlatform::LoadAstcHeader, TizenPlat
  */
 class KtxTestFixture
 {
-  public:
-
-    /**
+public:
+  /**
      * Constructor.
      * Sets up the fixture.
      */
-    KtxTestFixture( void )
-    {
-    }
+  KtxTestFixture(void)
+  {
+  }
 
-    /**
+  /**
      * Destructor.
      */
-    ~KtxTestFixture()
-    {
-    }
+  ~KtxTestFixture()
+  {
+  }
 
-    /**
+  /**
      * This struct contains any per-test parameters.
      * This should be added to if more properties of a file/format should be tested.
      */
-    struct TestEntry
+  struct TestEntry
+  {
+    LoadFunctions loadFunctions;  ///< Used to parse the header of a given type of image.
+    std::string   filename;       ///< Name of the compressed texture KTX file to load.
+    int           expectedWidth;  ///< The width the texture should be.
+    int           expectedHeight; ///< The height the KTX texture should be.
+
+    TestEntry(const LoadFunctions& newLoadFunctions, std::string newFilename, int newExpectedWidth, int newExpectedHeight)
+    : loadFunctions(newLoadFunctions),
+      filename(newFilename),
+      expectedWidth(newExpectedWidth),
+      expectedHeight(newExpectedHeight)
     {
-        LoadFunctions loadFunctions;    ///< Used to parse the header of a given type of image.
-        std::string filename;           ///< Name of the compressed texture KTX file to load.
-        int expectedWidth;              ///< The width the texture should be.
-        int expectedHeight;             ///< The height the KTX texture should be.
-
-        TestEntry( const LoadFunctions& newLoadFunctions, std::string newFilename, int newExpectedWidth, int newExpectedHeight )
-        : loadFunctions( newLoadFunctions ),
-          filename( newFilename ),
-          expectedWidth( newExpectedWidth ),
-          expectedHeight( newExpectedHeight )
-        {
-        }
-    };
-
-  private:
-
-    typedef std::vector< TestEntry > TestContainer;
+    }
+  };
 
-  public:
+private:
+  typedef std::vector<TestEntry> TestContainer;
 
-    /**
+public:
+  /**
      * Adds a test to be performed.
      * @param[in] testEntry A TestEntry struct containing all the details to perform one test.
      */
-    void AddTest( TestEntry testEntry )
-    {
-        mTests.push_back( testEntry );
-    }
+  void AddTest(TestEntry testEntry)
+  {
+    mTests.push_back(testEntry);
+  }
 
-    /**
+  /**
      * Runs all tests created with "AddTest".
      * This will create failures upon failing tests.
      */
-    void RunTests()
+  void RunTests()
+  {
+    for(TestContainer::iterator testIterator = mTests.begin(); testIterator != mTests.end(); ++testIterator)
     {
-      for( TestContainer::iterator testIterator = mTests.begin(); testIterator != mTests.end(); ++testIterator )
-      {
-        const TestEntry& currentTest = *testIterator;
+      const TestEntry& currentTest = *testIterator;
 
-        RunTest( currentTest );
-      }
+      RunTest(currentTest);
     }
+  }
 
-  private:
-
-    /**
+private:
+  /**
      * Sets up, Runs and Closes-down an individual test.
      * @param[in] testEntry A TestEntry struct containing all the details to perform one test.
      */
-    void RunTest( const TestEntry& testEntry )
-    {
-      FILE* fileDescriptor = fopen( testEntry.filename.c_str(), "rb" );
-      AutoCloseFile autoClose( fileDescriptor );
-      DALI_TEST_CHECK( fileDescriptor != NULL );
-
-      // Check the header file.
-      unsigned int width( 0 ), height( 0 );
-      const Dali::ImageLoader::Input input( fileDescriptor );
-
-      // Use the given loader to parse the image header.
-      DALI_TEST_CHECK( testEntry.loadFunctions.header( input, width, height ) );
+  void RunTest(const TestEntry& testEntry)
+  {
+    FILE*         fileDescriptor = fopen(testEntry.filename.c_str(), "rb");
+    AutoCloseFile autoClose(fileDescriptor);
+    DALI_TEST_CHECK(fileDescriptor != NULL);
 
-      DALI_TEST_EQUALS( width,  testEntry.expectedWidth,  TEST_LOCATION );
-      DALI_TEST_EQUALS( height, testEntry.expectedHeight, TEST_LOCATION );
-    }
+    // Check the header file.
+    unsigned int                   width(0), height(0);
+    const Dali::ImageLoader::Input input(fileDescriptor);
 
-  private:
+    // Use the given loader to parse the image header.
+    DALI_TEST_CHECK(testEntry.loadFunctions.header(input, width, height));
 
-    TestContainer mTests;         ///< Holds all tests to be run.
+    DALI_TEST_EQUALS(width, testEntry.expectedWidth, TEST_LOCATION);
+    DALI_TEST_EQUALS(height, testEntry.expectedHeight, TEST_LOCATION);
+  }
 
+private:
+  TestContainer mTests; ///< Holds all tests to be run.
 };
 
 // KTX files (KTX is a wrapper, so can contain different compressed texture types):
@@ -140,8 +134,8 @@ int UtcDaliKtxLoaderETC(void)
 {
   KtxTestFixture fixture;
 
-  fixture.AddTest( KtxTestFixture::TestEntry( KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-ETC1_RGB8_OES-45x80.ktx", 45u, 80u ) );
-  fixture.AddTest( KtxTestFixture::TestEntry( KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-RGB8_ETC2-45x80.ktx", 45u, 80u ) );
+  fixture.AddTest(KtxTestFixture::TestEntry(KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-ETC1_RGB8_OES-45x80.ktx", 45u, 80u));
+  fixture.AddTest(KtxTestFixture::TestEntry(KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-RGB8_ETC2-45x80.ktx", 45u, 80u));
 
   fixture.RunTests();
 
@@ -152,7 +146,7 @@ int UtcDaliKtxLoaderPVRTC(void)
 {
   KtxTestFixture fixture;
 
-  fixture.AddTest( KtxTestFixture::TestEntry( KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-RGB_PVRTC_4BPPV1_IMG-32x64.ktx", 32u, 64u ) );
+  fixture.AddTest(KtxTestFixture::TestEntry(KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-RGB_PVRTC_4BPPV1_IMG-32x64.ktx", 32u, 64u));
 
   fixture.RunTests();
 
@@ -163,7 +157,7 @@ int UtcDaliKtxLoaderEAC(void)
 {
   KtxTestFixture fixture;
 
-  fixture.AddTest( KtxTestFixture::TestEntry( KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-R11_EAC-45x80.ktx", 45u, 80u ) );
+  fixture.AddTest(KtxTestFixture::TestEntry(KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-R11_EAC-45x80.ktx", 45u, 80u));
 
   fixture.RunTests();
 
@@ -174,24 +168,22 @@ int UtcDaliKtxLoaderASTC(void)
 {
   KtxTestFixture fixture;
 
-  fixture.AddTest( KtxTestFixture::TestEntry( KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-RGBA_ASTC_4x4_KHR-32x64.ktx", 32u, 64u ) );
-  fixture.AddTest( KtxTestFixture::TestEntry( KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-SRBG8_ALPHA8_ASTC_4x4_KHR-32x64.ktx", 32u, 64u ) );
+  fixture.AddTest(KtxTestFixture::TestEntry(KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-RGBA_ASTC_4x4_KHR-32x64.ktx", 32u, 64u));
+  fixture.AddTest(KtxTestFixture::TestEntry(KtxLoaders, TEST_IMAGE_DIR "/fractal-compressed-SRBG8_ALPHA8_ASTC_4x4_KHR-32x64.ktx", 32u, 64u));
 
   fixture.RunTests();
 
   END_TEST;
 }
 
-
 // ASTC (Native) files:
 int UtcDaliAstcLoader(void)
 {
   KtxTestFixture fixture;
 
-  fixture.AddTest( KtxTestFixture::TestEntry( AstcLoaders, TEST_IMAGE_DIR "/fractal-compressed-RGBA_ASTC_4x4_KHR-32x64.astc", 32u, 64u ) );
+  fixture.AddTest(KtxTestFixture::TestEntry(AstcLoaders, TEST_IMAGE_DIR "/fractal-compressed-RGBA_ASTC_4x4_KHR-32x64.astc", 32u, 64u));
 
   fixture.RunTests();
 
   END_TEST;
 }
-