Hash :
becb282a
Author :
Date :
2002-12-17T23:28:16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
#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( testGlyphCount);
CPPUNIT_TEST( testSetFontSize);
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()
{
CPPUNIT_ASSERT( !testFace->Open( BAD_FONT_FILE));
CPPUNIT_ASSERT( testFace->Error() == 1);
CPPUNIT_ASSERT( testFace->Open( GOOD_FONT_FILE));
CPPUNIT_ASSERT( testFace->Error() == 0);
}
void testOpenFaceFromMemory()
{
CPPUNIT_ASSERT( !testFace->Open( (unsigned char*)100, 0));
CPPUNIT_ASSERT( testFace->Error() == 85);
// CPPUNIT_ASSERT( testFace->Open( arial_ttf.dataBytes, arial_ttf.numBytes));
// CPPUNIT_ASSERT( testFace->Error() == 0);
}
void testAttachFile()
{
CPPUNIT_ASSERT( testFace->Open( GOOD_FONT_FILE));
CPPUNIT_ASSERT( testFace->Error() == 0);
CPPUNIT_ASSERT( !testFace->Attach( GOOD_FONT_FILE));
CPPUNIT_ASSERT( testFace->Error() == 7);
}
void testGlyphCount()
{
CPPUNIT_ASSERT( testFace->Open( GOOD_FONT_FILE));
CPPUNIT_ASSERT( testFace->Error() == 0);
CPPUNIT_ASSERT(testFace->GlyphCount() == 14099);
}
void testSetFontSize()
{
testFace->Open( GOOD_FONT_FILE);
FTSize size = testFace->Size( GOOD_SIZE, RESOLUTION);
CPPUNIT_ASSERT( testFace->Error() == 0);
}
void testSetCharMap()
{
testFace->Open( GOOD_FONT_FILE);
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()
{
testFace->Open( GOOD_FONT_FILE);
CPPUNIT_ASSERT( testFace->CharIndex( 'A') == 34);
CPPUNIT_ASSERT( testFace->CharIndex( 0x6FB3) == 4838);
}
void testKerning()
{
testFace->Open( GOOD_FONT_FILE);
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;
}
void tearDown()
{
delete testFace;
}
private:
FTFace* testFace;
};
CPPUNIT_TEST_SUITE_REGISTRATION( FTFaceTest);