]>
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
,
108 wxFONTWEIGHT_NORMAL
).IsOk() );
110 #if FUTURE_WXWIN_COMPATIBILITY_3_0
111 // Tests relying on the soon-to-be-deprecated ctor taking ints and not
112 // wxFontXXX enum elements.
113 CPPUNIT_ASSERT( wxFont(10, wxDEFAULT
, wxNORMAL
, wxNORMAL
).IsOk() );
114 #endif // FUTURE_WXWIN_COMPATIBILITY_3_0
117 void FontTestCase::GetSet()
120 const wxFont
*pf
= GetTestFonts(numFonts
);
121 for ( unsigned n
= 0; n
< numFonts
; n
++ )
125 // remember: getters can only be called when wxFont::IsOk() == true
126 CPPUNIT_ASSERT( test
.IsOk() );
129 // test Get/SetFaceName()
130 CPPUNIT_ASSERT( !test
.SetFaceName("a dummy face name") );
131 CPPUNIT_ASSERT( !test
.IsOk() );
133 // if the call to SetFaceName() below fails on your system/port,
134 // consider adding another branch to this #if
135 #if defined(__WXMSW__) || defined(__WXOSX__)
136 static const char *knownGoodFaceName
= "Arial";
138 static const char *knownGoodFaceName
= "Monospace";
143 ("failed to set face name \"%s\" for test font #%u\n"
144 "(this failure is harmless if this face name is not "
145 "available on this system)", knownGoodFaceName
, n
),
146 test
.SetFaceName(knownGoodFaceName
)
148 CPPUNIT_ASSERT( test
.IsOk() );
151 // test Get/SetFamily()
153 test
.SetFamily( wxFONTFAMILY_ROMAN
);
154 CPPUNIT_ASSERT( test
.IsOk() );
156 // note that there is always the possibility that GetFamily() returns
157 // wxFONTFAMILY_DEFAULT (meaning "unknown" in this case) so that we
158 // consider it as a valid return value
159 const wxFontFamily family
= test
.GetFamily();
160 if ( family
!= wxFONTFAMILY_DEFAULT
)
161 CPPUNIT_ASSERT_EQUAL( wxFONTFAMILY_ROMAN
, family
);
164 // test Get/SetEncoding()
166 //test.SetEncoding( wxFONTENCODING_KOI8 );
167 //CPPUNIT_ASSERT( test.IsOk() );
168 //CPPUNIT_ASSERT_EQUAL( wxFONTENCODING_KOI8 , test.GetEncoding() );
171 // test Get/SetPointSize()
173 test
.SetPointSize(30);
174 CPPUNIT_ASSERT( test
.IsOk() );
175 CPPUNIT_ASSERT_EQUAL( 30, test
.GetPointSize() );
178 // test Get/SetPixelSize()
180 test
.SetPixelSize(wxSize(0,30));
181 CPPUNIT_ASSERT( test
.IsOk() );
182 CPPUNIT_ASSERT( test
.GetPixelSize().GetHeight() <= 30 );
183 // NOTE: the match found by SetPixelSize() may be not 100% precise; it
184 // only grants that a font smaller than the required height will
188 // test Get/SetStyle()
190 test
.SetStyle(wxFONTSTYLE_SLANT
);
191 CPPUNIT_ASSERT( test
.IsOk() );
193 // on wxMSW wxFONTSTYLE_SLANT==wxFONTSTYLE_ITALIC
194 CPPUNIT_ASSERT( wxFONTSTYLE_SLANT
== test
.GetStyle() ||
195 wxFONTSTYLE_ITALIC
== test
.GetStyle() );
197 CPPUNIT_ASSERT_EQUAL( wxFONTSTYLE_SLANT
, test
.GetStyle() );
200 // test Get/SetUnderlined()
202 test
.SetUnderlined(true);
203 CPPUNIT_ASSERT( test
.IsOk() );
204 CPPUNIT_ASSERT_EQUAL( true, test
.GetUnderlined() );
206 // test Get/SetStrikethrough()
208 test
.SetStrikethrough(true);
209 CPPUNIT_ASSERT( test
.IsOk() );
210 CPPUNIT_ASSERT_EQUAL( true, test
.GetStrikethrough() );
213 // test Get/SetWeight()
215 test
.SetWeight(wxFONTWEIGHT_BOLD
);
216 CPPUNIT_ASSERT( test
.IsOk() );
217 CPPUNIT_ASSERT_EQUAL( wxFONTWEIGHT_BOLD
, test
.GetWeight() );
221 void FontTestCase::NativeFontInfo()
224 const wxFont
*pf
= GetTestFonts(numFonts
);
225 for ( size_t n
= 0; n
< numFonts
; n
++ )
229 const wxString
& nid
= test
.GetNativeFontInfoDesc();
230 CPPUNIT_ASSERT( !nid
.empty() );
231 // documented to be never empty
234 CPPUNIT_ASSERT( temp
.SetNativeFontInfo(nid
) );
235 CPPUNIT_ASSERT( temp
.IsOk() );
237 ("Test #%lu failed\ndump of test font: \"%s\"\ndump of temp font: \"%s\"", \
238 n
, DumpFont(&test
), DumpFont(&temp
)),
242 // test that clearly invalid font info strings do not work
244 CPPUNIT_ASSERT( !font
.SetNativeFontInfo("") );
246 // pango_font_description_from_string() used by wxFont in wxGTK and wxX11
247 // never returns an error at all so this assertion fails there -- and as it
248 // doesn't seem to be possible to do anything about it maybe we should
249 // change wxMSW and other ports to also accept any strings?
250 #if !defined(__WXGTK__) && !defined(__WXX11__)
251 CPPUNIT_ASSERT( !font
.SetNativeFontInfo("bloordyblop") );
254 // Pango font description doesn't have 'underlined' and 'strikethrough'
255 // attributes, so wxNativeFontInfo implements these itself. Test if these
256 // are properly preserved by wxNativeFontInfo or its string description.
257 font
.SetUnderlined(true);
258 font
.SetStrikethrough(true);
259 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
));
260 CPPUNIT_ASSERT_EQUAL(font
, wxFont(*font
.GetNativeFontInfo()));
261 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
.GetNativeFontInfoDesc()));
262 font
.SetUnderlined(false);
263 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
));
264 CPPUNIT_ASSERT_EQUAL(font
, wxFont(*font
.GetNativeFontInfo()));
265 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
.GetNativeFontInfoDesc()));
266 font
.SetUnderlined(true);
267 font
.SetStrikethrough(false);
268 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
));
269 CPPUNIT_ASSERT_EQUAL(font
, wxFont(*font
.GetNativeFontInfo()));
270 CPPUNIT_ASSERT_EQUAL(font
, wxFont(font
.GetNativeFontInfoDesc()));
271 // note: the GetNativeFontInfoUserDesc() doesn't preserve all attributes
272 // according to docs, so it is not tested.
275 void FontTestCase::NativeFontInfoUserDesc()
278 const wxFont
*pf
= GetTestFonts(numFonts
);
279 for ( size_t n
= 0; n
< numFonts
; n
++ )
283 const wxString
& niud
= test
.GetNativeFontInfoUserDesc();
284 CPPUNIT_ASSERT( !niud
.empty() );
285 // documented to be never empty
288 CPPUNIT_ASSERT( temp2
.SetNativeFontInfoUserDesc(niud
) );
289 CPPUNIT_ASSERT( temp2
.IsOk() );
292 // Pango saves/restores all font info in the user-friendly string:
294 ("Test #%lu failed; native info user desc was \"%s\" for test and \"%s\" for temp2", \
295 n
, niud
, temp2
.GetNativeFontInfoUserDesc()),
298 // NOTE: as documented GetNativeFontInfoUserDesc/SetNativeFontInfoUserDesc
299 // are not granted to save/restore all font info.
300 // In fact e.g. the font family is not saved at all; test only those
301 // info which GetNativeFontInfoUserDesc() does indeed save:
302 CPPUNIT_ASSERT_EQUAL( test
.GetWeight(), temp2
.GetWeight() );
303 CPPUNIT_ASSERT_EQUAL( test
.GetStyle(), temp2
.GetStyle() );
305 // if the original face name was empty, it means that any face name (in
306 // this family) can be used for the new font so we shouldn't be
307 // surprised to find that they differ in this case
308 const wxString facename
= test
.GetFaceName();
309 if ( !facename
.empty() )
311 CPPUNIT_ASSERT_EQUAL( facename
.Upper(), temp2
.GetFaceName().Upper() );
314 CPPUNIT_ASSERT_EQUAL( test
.GetPointSize(), temp2
.GetPointSize() );
315 CPPUNIT_ASSERT_EQUAL( test
.GetEncoding(), temp2
.GetEncoding() );
320 #endif // wxUSE_FONTMAP