Edit

kc3-lang/ftgl/test/FTFace-Test.cpp

Branch :

  • Show log

    Commit

  • Author : sammy
    Date : 2008-03-03 16:36:07
    Hash : f0f550ea
    Message : * Remove svn:executable property from source files.

  • test/FTFace-Test.cpp
  • #include "cppunit/extensions/HelperMacros.h"
    #include "cppunit/TestCaller.h"
    #include "cppunit/TestCase.h"
    #include "cppunit/TestSuite.h"
    
    #include "Fontdefs.h"
    #include "FTFace.h"
    
    
    class FTFaceTest : public CppUnit::TestCase
    {
        CPPUNIT_TEST_SUITE( FTFaceTest);
            CPPUNIT_TEST( testOpenFace);
            CPPUNIT_TEST( testOpenFaceFromMemory);
            CPPUNIT_TEST( testAttachFile);
            CPPUNIT_TEST( testAttachMemoryData);
            CPPUNIT_TEST( testGetFontTable);
            CPPUNIT_TEST( testGlyphCount);
            CPPUNIT_TEST( testSetFontSize);
            CPPUNIT_TEST( testUnitPerEMSquare);
            CPPUNIT_TEST( testSetCharMap);
            CPPUNIT_TEST( testCharacterIndex);
            CPPUNIT_TEST( testKerning);
        CPPUNIT_TEST_SUITE_END();
    
        public:
            FTFaceTest() : CppUnit::TestCase( "FTFace test") {};
            FTFaceTest( const std::string& name) : CppUnit::TestCase(name) {};
            
            
            void testOpenFace()
            {
                FTFace face1( BAD_FONT_FILE);
                CPPUNIT_ASSERT( face1.Error() == 1);        
            
                FTFace face2( GOOD_FONT_FILE);
                CPPUNIT_ASSERT( face2.Error() == 0);        
            }
            
            
            void testOpenFaceFromMemory()
            {
                FTFace face1( (unsigned char*)100, 0);
                CPPUNIT_ASSERT( face1.Error() == 85);        
            
                FTFace face2( HPGCalc_pfb.dataBytes, HPGCalc_pfb.numBytes);
                CPPUNIT_ASSERT( face2.Error() == 0);        
            }
            
            
            void testAttachFile()
            {
                CPPUNIT_ASSERT( !testFace->Attach( TYPE1_AFM_FILE));
                CPPUNIT_ASSERT( testFace->Error() == 7);
            
                FTFace test( TYPE1_FONT_FILE);
                CPPUNIT_ASSERT( test.Error() == 0);
            
                CPPUNIT_ASSERT( test.Attach( TYPE1_AFM_FILE));
                CPPUNIT_ASSERT( test.Error() == 0);
            }
            
            
            void testAttachMemoryData()
            {
                CPPUNIT_ASSERT( !testFace->Attach((unsigned char*)100, 0));
                CPPUNIT_ASSERT( testFace->Error() == 7);        
            
                FTFace test( TYPE1_FONT_FILE);
                CPPUNIT_ASSERT( test.Error() == 0);
            
                CPPUNIT_ASSERT( test.Attach( HPGCalc_afm.dataBytes, HPGCalc_afm.numBytes));
                CPPUNIT_ASSERT( test.Error() == 0);
            }
            
            
            void testGetFontTable()
            {
                CPPUNIT_ASSERT( !testFace->FontTable( 'xxxx'));
                CPPUNIT_ASSERT( testFace->FontTable( 'hmtx'));
            }
            
            
            void testGlyphCount()
            {
                CPPUNIT_ASSERT( testFace->GlyphCount() == 14099);        
            }
            
            
            void testSetFontSize()
            {
                FTSize size = testFace->Size( FONT_POINT_SIZE, RESOLUTION);
                CPPUNIT_ASSERT( testFace->Error() == 0);
            }
            
            void testUnitPerEMSquare()
            {
                CPPUNIT_ASSERT_DOUBLES_EQUAL( 1000, testFace->UnitsPerEM(), 0.01);
            }
            
            void testSetCharMap()
            {
                CPPUNIT_ASSERT( testFace->CharMap( ft_encoding_unicode));
                CPPUNIT_ASSERT( testFace->Error() == 0);
                
                CPPUNIT_ASSERT( !testFace->CharMap( ft_encoding_johab));
                CPPUNIT_ASSERT( testFace->Error() == 6);
            }
            
            
            void testCharacterIndex()
            {
                CPPUNIT_ASSERT( testFace->CharIndex( 'A') == 34);
                CPPUNIT_ASSERT( testFace->CharIndex( 0x6FB3) == 4838);
            }
            
            
            void testKerning()
            {
                FTPoint kerningVector = testFace->KernAdvance( 'A', 'W');
                CPPUNIT_ASSERT( kerningVector.x == 0);
                CPPUNIT_ASSERT( kerningVector.y == 0);
                CPPUNIT_ASSERT( kerningVector.z == 0);
            
                kerningVector = testFace->KernAdvance( 0x6FB3, 0x9580);
                CPPUNIT_ASSERT( kerningVector.x == 0);
                CPPUNIT_ASSERT( kerningVector.y == 0);
                CPPUNIT_ASSERT( kerningVector.z == 0);
            }
            
            
            void setUp() 
            {
                testFace = new FTFace( GOOD_FONT_FILE);
            }
            
            
            void tearDown() 
            {
                delete testFace;
            }
            
        private:
            FTFace* testFace;
    
    };
    
    CPPUNIT_TEST_SUITE_REGISTRATION( FTFaceTest);