]> git.saurik.com Git - wxWidgets.git/blame_incremental - tests/config/config.cpp
Don't access null tip_window pointer [ 1767485 ] wxGtk uses private API, breaks with...
[wxWidgets.git] / tests / config / config.cpp
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: tests/config/config.cpp
3// Purpose: wxConfig unit test
4// Author: Marcin Wojdyr
5// Created: 2007-07-07
6// RCS-ID: $Id$
7// Copyright: (c) 2007 Marcin Wojdyr
8///////////////////////////////////////////////////////////////////////////////
9
10// see also tests/fileconf/fileconftest.cpp for wxFileConfig specific tests
11
12// ----------------------------------------------------------------------------
13// headers
14// ----------------------------------------------------------------------------
15
16#include "testprec.h"
17
18#ifdef __BORLANDC__
19 #pragma hdrstop
20#endif
21
22#ifndef WX_PRECOMP
23 #include "wx/wx.h"
24#endif // WX_PRECOMP
25
26#include "wx/config.h"
27#include "wx/colour.h"
28
29// --------------------------------------------------------------------------
30// test class
31// --------------------------------------------------------------------------
32
33class ConfigTestCase : public CppUnit::TestCase
34{
35public:
36 ConfigTestCase() {}
37
38private:
39 CPPUNIT_TEST_SUITE( ConfigTestCase );
40 CPPUNIT_TEST( ReadWriteLocalTest );
41 CPPUNIT_TEST( RecordingDefaultsTest );
42 CPPUNIT_TEST_SUITE_END();
43
44 void ReadWriteLocalTest();
45 void RecordingDefaultsTest();
46 void ReadValues(wxConfig *config, bool has_values);
47
48 DECLARE_NO_COPY_CLASS(ConfigTestCase)
49};
50
51// register in the unnamed registry so that these tests are run by default
52CPPUNIT_TEST_SUITE_REGISTRATION( ConfigTestCase );
53
54// also include in it's own registry so that these tests can be run alone
55CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ConfigTestCase, "ConfigTestCase" );
56
57void ConfigTestCase::ReadWriteLocalTest()
58{
59 wxString app = wxT("wxConfigTestCase");
60 wxString vendor = wxT("wxWidgets");
61 wxConfig *config = new wxConfig(app, vendor, wxT(""), wxT(""),
62 wxCONFIG_USE_LOCAL_FILE);
63 config->DeleteAll();
64 config->Write(wxT("string1"), wxT("abc"));
65 config->Write(wxT("string2"), wxString(wxT("def")));
66 config->Write(wxT("int1"), 123);
67 config->Write(wxString(wxT("long1")), 234L);
68 config->Write(wxT("double1"), 345.67);
69 config->Write(wxT("bool1"), true);
70 config->Write(wxT("color1"), wxColour(11,22,33,44));
71 config->Flush();
72 delete config;
73
74 config = new wxConfig(app, vendor, wxT(""), wxT(""),
75 wxCONFIG_USE_LOCAL_FILE);
76 wxString string1 = config->Read(wxT("string1"));
77 CPPUNIT_ASSERT_EQUAL( string1, wxString(wxT("abc")) );
78 string1 = config->Read(wxT("string1"), wxT("defaultvalue"));
79 CPPUNIT_ASSERT_EQUAL( string1, wxString(wxT("abc")) );
80
81 wxString string2;
82 bool r = config->Read(wxT("string2"), &string2);
83 CPPUNIT_ASSERT( r );
84 CPPUNIT_ASSERT_EQUAL( string2, wxString(wxT("def")) );
85
86 r = config->Read(wxT("string2"), &string2, wxT("defaultvalue"));
87 CPPUNIT_ASSERT( r );
88 CPPUNIT_ASSERT_EQUAL( string2, wxString(wxT("def")) );
89
90 int int1 = config->Read(wxT("int1"), 5);
91 CPPUNIT_ASSERT_EQUAL( int1, 123 );
92
93 long long1;
94 r = config->Read(wxT("long1"), &long1);
95 CPPUNIT_ASSERT( r );
96 CPPUNIT_ASSERT_EQUAL( long1, 234L );
97
98 bool bool1;
99 r = config->Read(wxT("foo"), &bool1);
100 CPPUNIT_ASSERT( !r );
101
102 r = config->Read(wxT("bool1"), &bool1);
103 CPPUNIT_ASSERT( r );
104 CPPUNIT_ASSERT_EQUAL( bool1, true );
105
106 wxColour color1;
107 r = config->Read(wxT("color1"), &color1);
108 CPPUNIT_ASSERT( r );
109 CPPUNIT_ASSERT( color1 == wxColour(11,22,33,44) );
110
111 config->DeleteAll();
112 delete config;
113}
114
115void ConfigTestCase::ReadValues(wxConfig *config, bool has_values)
116{
117 bool r;
118 wxString string1 = config->Read(wxT("string1"), wxT("abc"));
119 wxString string2 = config->Read(wxT("string2"), wxString(wxT("def")));
120 wxString string3, string4;
121 r = config->Read(wxT("string3"), &string3, wxT("abc"));
122 CPPUNIT_ASSERT_EQUAL( r, has_values );
123 r = config->Read(wxT("string4"), &string4, wxString(wxT("def")));
124 CPPUNIT_ASSERT_EQUAL( r, has_values );
125 int int1;
126 r = config->Read(wxT("int1"), &int1, 123);
127 CPPUNIT_ASSERT_EQUAL( r, has_values );
128 int int2 = config->Read(wxT("int2"), 1234);
129 CPPUNIT_ASSERT_EQUAL( int2, 1234 );
130 long long1;
131 r = config->Read(wxString(wxT("long1")), &long1, 234L);
132 CPPUNIT_ASSERT_EQUAL( r, has_values );
133 double double1;
134 r = config->Read(wxT("double1"), &double1, 345.67);
135 CPPUNIT_ASSERT_EQUAL( r, has_values );
136 bool bool1;
137 r = config->Read(wxT("bool1"), &bool1, true);
138 CPPUNIT_ASSERT_EQUAL( r, has_values );
139 wxColour color1;
140 r = config->Read(wxT("color1"), &color1, wxColour(11,22,33,44));
141 CPPUNIT_ASSERT_EQUAL( r, has_values );
142}
143
144
145void ConfigTestCase::RecordingDefaultsTest()
146{
147 wxString app = wxT("wxConfigTestCaseRD");
148 wxString vendor = wxT("wxWidgets");
149 wxConfig *config = new wxConfig(app, vendor, wxT(""), wxT(""),
150 wxCONFIG_USE_LOCAL_FILE);
151 config->DeleteAll();
152 config->SetRecordDefaults(false); // by default it is false
153 ReadValues(config, false);
154 CPPUNIT_ASSERT_EQUAL( (int) config->GetNumberOfEntries(), 0 );
155 config->SetRecordDefaults(true);
156 ReadValues(config, false);
157 CPPUNIT_ASSERT_EQUAL( (int) config->GetNumberOfEntries(), 10 );
158 ReadValues(config, true);
159 config->DeleteAll();
160 delete config;
161}
162
163