]>
git.saurik.com Git - wxWidgets.git/blob - tests/font/fonttest.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/font/fonttest.cpp
3 // Purpose: wxFont unit test
4 // Author: Francesco Montorsi
7 // Copyright: (c) 2009 Francesco Montorsi
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
29 #include "asserthelper.h"
31 // ----------------------------------------------------------------------------
33 // ----------------------------------------------------------------------------
35 class FontTestCase
: public CppUnit::TestCase
41 CPPUNIT_TEST_SUITE( FontTestCase
);
42 CPPUNIT_TEST( Construct
);
43 CPPUNIT_TEST( GetSet
);
44 CPPUNIT_TEST( NativeFontInfo
);
45 CPPUNIT_TEST( NativeFontInfoUserDesc
);
46 CPPUNIT_TEST_SUITE_END();
50 void NativeFontInfo();
51 void NativeFontInfoUserDesc();
53 static const wxFont
*GetTestFonts(unsigned& numFonts
)
55 static const wxFont testfonts
[] =
61 wxFont(5, wxFONTFAMILY_TELETYPE
, wxFONTSTYLE_NORMAL
, wxFONTWEIGHT_NORMAL
)
64 numFonts
= WXSIZEOF(testfonts
);
69 DECLARE_NO_COPY_CLASS(FontTestCase
)
72 // register in the unnamed registry so that these tests are run by default
73 CPPUNIT_TEST_SUITE_REGISTRATION( FontTestCase
);
75 // also include in its own registry so that these tests can be run alone
76 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FontTestCase
, "FontTestCase" );
78 wxString
DumpFont(const wxFont
*font
)
80 // dumps the internal properties of a wxFont in the same order they
81 // are checked by wxFontBase::operator==()
83 wxASSERT(font
->IsOk());
86 s
.Printf(wxS("%d-%d;%d-%d-%d-%d-%d-%s-%d"),
88 font
->GetPixelSize().x
,
89 font
->GetPixelSize().y
,
93 font
->GetUnderlined() ? 1 : 0,
100 void FontTestCase::Construct()
102 // The main purpose of this test is to verify that the font ctors below
103 // compile because it's easy to introduce ambiguities due to the number of
104 // overloaded wxFont ctors.
106 CPPUNIT_ASSERT( wxFont(10, wxFONTFAMILY_DEFAULT
).IsOk() );
107 CPPUNIT_ASSERT( wxFont(10, wxFONTFAMILY_DEFAULT
,
108 wxFONTFLAG_DEFAULT
).IsOk() );
109 CPPUNIT_ASSERT( wxFont(10, wxFONTFAMILY_DEFAULT
,
111 wxFONTWEIGHT_NORMAL
).IsOk() );
113 #if FUTURE_WXWIN_COMPATIBILITY_3_0
114 // Tests relying on the soon-to-be-deprecated ctor taking ints and not
115 // wxFontXXX enum elements.
116 CPPUNIT_ASSERT( wxFont(10, wxDEFAULT
, wxNORMAL
, wxNORMAL
).IsOk() );
117 #endif // FUTURE_WXWIN_COMPATIBILITY_3_0
120 void FontTestCase::GetSet()
123 const wxFont
*pf
= GetTestFonts(numFonts
);
124 for ( unsigned n
= 0; n
< numFonts
; n
++ )
128 // remember: getters can only be called when wxFont::IsOk() == true
129 CPPUNIT_ASSERT( test
.IsOk() );
132 // test Get/SetFaceName()
133 CPPUNIT_ASSERT( !test
.SetFaceName("a dummy face name") );
134 CPPUNIT_ASSERT( !test
.IsOk() );
136 // if the call to SetFaceName() below fails on your system/port,
137 // consider adding another branch to this #if
138 #if defined(__WXMSW__) || defined(__WXOSX__)
139 static const char *knownGoodFaceName
= "Arial";
141 static const char *knownGoodFaceName
= "Monospace";
146 ("failed to set face name \"%s\" for test font #%u\n"
147 "(this failure is harmless if this face name is not "
148 "available on this system)", knownGoodFaceName
, n
),
149 test
.SetFaceName(knownGoodFaceName
)
151 CPPUNIT_ASSERT( test
.IsOk() );
154 // test Get/SetFamily()
156 test
.SetFamily( wxFONTFAMILY_ROMAN
);
157 CPPUNIT_ASSERT( test
.IsOk() );
159 // note that there is always the possibility that GetFamily() returns
160 // wxFONTFAMILY_DEFAULT (meaning "unknown" in this case) so that we
161 // consider it as a valid return value
162 const wxFontFamily family
= test
.GetFamily();
163 if ( family
!= wxFONTFAMILY_DEFAULT
)
164 CPPUNIT_ASSERT_EQUAL( wxFONTFAMILY_ROMAN
, family
);
167 // test Get/SetEncoding()
169 //test.SetEncoding( wxFONTENCODING_KOI8 );
170 //CPPUNIT_ASSERT( test.IsOk() );
171 //CPPUNIT_ASSERT_EQUAL( wxFONTENCODING_KOI8 , test.GetEncoding() );
174 // test Get/SetPointSize()
176 test
.SetPointSize(30);
177 CPPUNIT_ASSERT( test
.IsOk() );
178 CPPUNIT_ASSERT_EQUAL( 30, test
.GetPointSize() );
181 // test Get/SetPixelSize()
183 test
.SetPixelSize(wxSize(0,30));
184 CPPUNIT_ASSERT( test
.IsOk() );
185 CPPUNIT_ASSERT( test
.GetPixelSize().GetHeight() <= 30 );
186 // NOTE: the match found by SetPixelSize() may be not 100% precise; it
187 // only grants that a font smaller than the required height will
191 // test Get/SetStyle()
193 test
.SetStyle(wxFONTSTYLE_SLANT
);
194 CPPUNIT_ASSERT( test
.IsOk() );
196 // on wxMSW wxFONTSTYLE_SLANT==wxFONTSTYLE_ITALIC
197 CPPUNIT_ASSERT( wxFONTSTYLE_SLANT
== test
.GetStyle() ||
198 wxFONTSTYLE_ITALIC
== test
.GetStyle() );
200 CPPUNIT_ASSERT_EQUAL( wxFONTSTYLE_SLANT
, test
.GetStyle() );
203 // test Get/SetUnderlined()
205 test
.SetUnderlined(true);
206 CPPUNIT_ASSERT( test
.IsOk() );
207 CPPUNIT_ASSERT_EQUAL( true, test
.GetUnderlined() );
209 // test Get/SetStrikethrough()
211 test
.SetStrikethrough(true);
212 CPPUNIT_ASSERT( test
.IsOk() );
213 CPPUNIT_ASSERT_EQUAL( true, test
.GetStrikethrough() );
216 // test Get/SetWeight()
218 test
.SetWeight(wxFONTWEIGHT_BOLD
);
219 CPPUNIT_ASSERT( test
.IsOk() );
220 CPPUNIT_ASSERT_EQUAL( wxFONTWEIGHT_BOLD
, test
.GetWeight() );
224 void FontTestCase::NativeFontInfo()
227 const wxFont
*pf
= GetTestFonts(numFonts
);
228 for ( size_t n
= 0; n
< numFonts
; n
++ )
232 const wxString
& nid
= test
.GetNativeFontInfoDesc();
233 CPPUNIT_ASSERT( !nid
.empty() );
234 // documented to be never empty
237 CPPUNIT_ASSERT( temp
.SetNativeFontInfo(nid
) );
238 CPPUNIT_ASSERT( temp
.IsOk() );
240 ("Test #%lu failed\ndump of test font: \"%s\"\ndump of temp font: \"%s\"", \
241 n
, DumpFont(&test
), DumpFont(&temp
)),
245 // test that clearly invalid font info strings do not work
247 CPPUNIT_ASSERT( !font
.SetNativeFontInfo("") );
249 // pango_font_description_from_string() used by wxFont in wxGTK and wxX11
250 // never returns an error at all so this assertion fails there -- and as it
251 // doesn't seem to be possible to do anything about it maybe we should
252 // change wxMSW and other ports to also accept any strings?
253 #if !defined(__WXGTK__) && !defined(__WXX11__)
254 CPPUNIT_ASSERT( !font
.SetNativeFontInfo("bloordyblop") );
257 // Pango font description doesn't have 'underlined' and 'strikethrough'
258 // attributes, so wxNativeFontInfo implements these itself. Test if these
259 // are properly preserved by wxNativeFontInfo or its string description.
260 font
.SetUnderlined(true);
261 font
.SetStrikethrough(true);
262 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
));
263 CPPUNIT_ASSERT_EQUAL(font
, wxFont(*font
.GetNativeFontInfo()));
264 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
.GetNativeFontInfoDesc()));
265 font
.SetUnderlined(false);
266 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
));
267 CPPUNIT_ASSERT_EQUAL(font
, wxFont(*font
.GetNativeFontInfo()));
268 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
.GetNativeFontInfoDesc()));
269 font
.SetUnderlined(true);
270 font
.SetStrikethrough(false);
271 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
));
272 CPPUNIT_ASSERT_EQUAL(font
, wxFont(*font
.GetNativeFontInfo()));
273 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
.GetNativeFontInfoDesc()));
274 // note: the GetNativeFontInfoUserDesc() doesn't preserve all attributes
275 // according to docs, so it is not tested.
278 void FontTestCase::NativeFontInfoUserDesc()
281 const wxFont
*pf
= GetTestFonts(numFonts
);
282 for ( size_t n
= 0; n
< numFonts
; n
++ )
286 const wxString
& niud
= test
.GetNativeFontInfoUserDesc();
287 CPPUNIT_ASSERT( !niud
.empty() );
288 // documented to be never empty
291 CPPUNIT_ASSERT( temp2
.SetNativeFontInfoUserDesc(niud
) );
292 CPPUNIT_ASSERT( temp2
.IsOk() );
295 // Pango saves/restores all font info in the user-friendly string:
297 ("Test #%lu failed; native info user desc was \"%s\" for test and \"%s\" for temp2", \
298 n
, niud
, temp2
.GetNativeFontInfoUserDesc()),
301 // NOTE: as documented GetNativeFontInfoUserDesc/SetNativeFontInfoUserDesc
302 // are not granted to save/restore all font info.
303 // In fact e.g. the font family is not saved at all; test only those
304 // info which GetNativeFontInfoUserDesc() does indeed save:
305 CPPUNIT_ASSERT_EQUAL( test
.GetWeight(), temp2
.GetWeight() );
306 CPPUNIT_ASSERT_EQUAL( test
.GetStyle(), temp2
.GetStyle() );
308 // if the original face name was empty, it means that any face name (in
309 // this family) can be used for the new font so we shouldn't be
310 // surprised to find that they differ in this case
311 const wxString facename
= test
.GetFaceName();
312 if ( !facename
.empty() )
314 CPPUNIT_ASSERT_EQUAL( facename
.Upper(), temp2
.GetFaceName().Upper() );
317 CPPUNIT_ASSERT_EQUAL( test
.GetPointSize(), temp2
.GetPointSize() );
318 CPPUNIT_ASSERT_EQUAL( test
.GetEncoding(), temp2
.GetEncoding() );
323 #endif // wxUSE_FONTMAP