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
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/TestCaller.h>
#include <cppunit/TestCase.h>
#include <cppunit/TestSuite.h>
#include <assert.h>
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_GLYPH_H
#include "Fontdefs.h"
#include "FTCharmap.h"
class FTCharmapTest : public CppUnit::TestCase
{
CPPUNIT_TEST_SUITE( FTCharmapTest);
CPPUNIT_TEST( testConstructor);
CPPUNIT_TEST( testSetEncoding);
CPPUNIT_TEST( testGetCharacterIndex);
CPPUNIT_TEST_SUITE_END();
public:
FTCharmapTest() : CppUnit::TestCase( "FTCharmap Test")
{
setUpFreetype();
}
FTCharmapTest( const std::string& name) : CppUnit::TestCase(name) {}
~FTCharmapTest()
{
tearDownFreetype();
}
void testConstructor()
{
CPPUNIT_ASSERT( charmap->Error() == 0);
CPPUNIT_ASSERT( charmap->Encoding() == ft_encoding_unicode);
}
void testSetEncoding()
{
CPPUNIT_ASSERT( charmap->CharMap( ft_encoding_unicode));
CPPUNIT_ASSERT( charmap->Error() == 0);
CPPUNIT_ASSERT( charmap->Encoding() == ft_encoding_unicode);
CPPUNIT_ASSERT( !charmap->CharMap( ft_encoding_johab));
CPPUNIT_ASSERT( charmap->Error() == 6);
CPPUNIT_ASSERT( charmap->Encoding() == ft_encoding_none);
}
void testGetCharacterIndex()
{
charmap->CharMap( ft_encoding_unicode);
CPPUNIT_ASSERT( charmap->Error() == 0);
CPPUNIT_ASSERT( charmap->CharIndex( CHARACTER_CODE_A) == FONT_INDEX_OF_A);
CPPUNIT_ASSERT( charmap->CharIndex( BIG_CHARACTER_CODE) == BIG_FONT_INDEX);
CPPUNIT_ASSERT( charmap->CharIndex( NULL_CHARACTER_CODE) == NULL_FONT_INDEX);
charmap->CharMap( ft_encoding_johab);
CPPUNIT_ASSERT( charmap->Error() == 6);
CPPUNIT_ASSERT( charmap->CharIndex( CHARACTER_CODE_A) == FONT_INDEX_OF_A);
CPPUNIT_ASSERT( charmap->CharIndex( BIG_CHARACTER_CODE) == BIG_FONT_INDEX);
CPPUNIT_ASSERT( charmap->CharIndex( NULL_CHARACTER_CODE) == NULL_FONT_INDEX);
}
void setUp()
{
charmap = new FTCharmap( face);
}
void tearDown()
{
delete charmap;
}
private:
FT_Library library;
FT_Face face;
FTCharmap* charmap;
void setUpFreetype()
{
FT_Error error = FT_Init_FreeType( &library);
assert(!error);
error = FT_New_Face( library, GOOD_FONT_FILE, 0, &face);
assert(!error);
}
void tearDownFreetype()
{
FT_Done_Face( face);
FT_Done_FreeType( library);
}
};
CPPUNIT_TEST_SUITE_REGISTRATION( FTCharmapTest);