add a wxFont test unit (currently GetFamily and the Get/SetEncoding() bits are disabl...
[wxWidgets.git] / tests / font / fonttest.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/font/fonttest.cpp
3 // Purpose: wxFont unit test
4 // Author: Francesco Montorsi
5 // Created: 16.3.09
6 // RCS-ID: $Id$
7 // Copyright: (c) 2009 Francesco Montorsi
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 // ----------------------------------------------------------------------------
12 // headers
13 // ----------------------------------------------------------------------------
14
15 #include "testprec.h"
16
17 #ifdef __BORLANDC__
18 #pragma hdrstop
19 #endif
20
21 #ifndef WX_PRECOMP
22 #include "wx/wx.h"
23 #endif // WX_PRECOMP
24
25 #if wxUSE_FONTMAP
26
27 #include "wx/font.h"
28
29 // ----------------------------------------------------------------------------
30 // test class
31 // ----------------------------------------------------------------------------
32
33 class FontTestCase : public CppUnit::TestCase
34 {
35 public:
36 FontTestCase() { }
37
38 private:
39 CPPUNIT_TEST_SUITE( FontTestCase );
40 CPPUNIT_TEST( GetSet );
41 CPPUNIT_TEST_SUITE_END();
42
43 void GetSet();
44
45 DECLARE_NO_COPY_CLASS(FontTestCase)
46 };
47
48 // register in the unnamed registry so that these tests are run by default
49 CPPUNIT_TEST_SUITE_REGISTRATION( FontTestCase );
50
51 // also include in it's own registry so that these tests can be run alone
52 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FontTestCase, "FontTestCase" );
53
54
55 void FontTestCase::GetSet()
56 {
57 static const wxFont testfonts[] =
58 {
59 *wxNORMAL_FONT,
60 *wxSMALL_FONT,
61 *wxITALIC_FONT,
62 *wxSWISS_FONT,
63 wxFont(5, wxFONTFAMILY_TELETYPE, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL)
64 };
65
66 for ( size_t n = 0; n < WXSIZEOF(testfonts); n++ )
67 {
68 wxFont test(testfonts[n]);
69
70 // remember: getters can only be called when wxFont::IsOk() == true
71 CPPUNIT_ASSERT( test.IsOk() );
72
73
74 // test Get/SetFaceName()
75
76 const wxString& fn = test.GetFaceName();
77 CPPUNIT_ASSERT( !fn.empty() );
78
79 CPPUNIT_ASSERT( !test.SetFaceName("a dummy face name") );
80 CPPUNIT_ASSERT( !test.IsOk() );
81
82 CPPUNIT_ASSERT( test.SetFaceName(fn) );
83 CPPUNIT_ASSERT( test.IsOk() );
84
85
86 // test Get/SetFamily()
87
88 test.SetFamily( wxFONTFAMILY_MODERN );
89 //CPPUNIT_ASSERT_EQUAL( wxFONTFAMILY_MODERN, test.GetFamily() );
90
91
92 // test Get/SetEncoding()
93
94 //test.SetEncoding( wxFONTENCODING_KOI8 );
95 //CPPUNIT_ASSERT_EQUAL( wxFONTENCODING_KOI8 , test.GetEncoding() );
96
97
98 // test Get/SetNativeFontInfo
99
100 const wxString& nid = test.GetNativeFontInfoDesc();
101 CPPUNIT_ASSERT( !nid.empty() );
102
103 wxFont temp;
104 temp.SetNativeFontInfo(nid);
105 CPPUNIT_ASSERT( temp == test );
106
107
108 // test Get/SetNativeFontInfoUserDesc
109
110 const wxString& niud = test.GetNativeFontInfoUserDesc();
111 CPPUNIT_ASSERT( !niud.empty() );
112
113 wxFont temp2;
114 temp2.SetNativeFontInfoUserDesc(niud);
115 CPPUNIT_ASSERT( temp2 == test );
116
117
118 // test Get/SetPointSize()
119
120 test.SetPointSize(30);
121 CPPUNIT_ASSERT_EQUAL( 30, test.GetPointSize() );
122
123
124 // test Get/SetPixelSize()
125
126 test.SetPixelSize(wxSize(0,30));
127 CPPUNIT_ASSERT( test.GetPixelSize().GetHeight() <= 30 );
128 // NOTE: the match found by SetPixelSize() may be not 100% precise; it
129 // only grants that a font smaller than the required height will
130 // be selected
131
132
133 // test Get/SetStyle()
134
135 test.SetStyle(wxFONTSTYLE_SLANT);
136 CPPUNIT_ASSERT_EQUAL( wxFONTSTYLE_SLANT, test.GetStyle() );
137
138
139 // test Get/SetUnderlined()
140
141 test.SetUnderlined(true);
142 CPPUNIT_ASSERT_EQUAL( true, test.GetUnderlined() );
143
144
145 // test Get/SetWeight()
146
147 test.SetWeight(wxFONTWEIGHT_BOLD);
148 CPPUNIT_ASSERT_EQUAL( wxFONTWEIGHT_BOLD, test.GetWeight() );
149 }
150 }
151
152 #endif // wxUSE_FONTMAP