]>
git.saurik.com Git - wxWidgets.git/blob - tests/config/fileconf.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/fileconf/fileconf.cpp
3 // Purpose: wxFileConf unit test
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2004 Vadim Zeitlin
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
12 // ----------------------------------------------------------------------------
25 #include "wx/fileconf.h"
26 #include "wx/sstream.h"
29 static const wxChar
*testconfig
=
32 wxT("[root/group1]\n")
33 wxT("[root/group1/subgroup]\n")
34 wxT("subentry=subvalue\n")
35 wxT("subentry2=subvalue2\n")
36 wxT("[root/group2]\n")
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
43 static wxString
Dump(wxFileConfig
& fc
)
45 wxStringOutputStream sos
;
47 return wxTextFile::Translate(sos
.GetString(), wxTextFileType_Unix
);
50 // helper macro to test wxFileConfig contents
51 #define wxVERIFY_FILECONFIG(t, fc) CPPUNIT_ASSERT_EQUAL(wxString(t), Dump(fc))
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 class FileConfigTestCase
: public CppUnit::TestCase
60 FileConfigTestCase() { }
63 CPPUNIT_TEST_SUITE( FileConfigTestCase
);
65 CPPUNIT_TEST( AddEntries
);
66 CPPUNIT_TEST( GetEntries
);
67 CPPUNIT_TEST( GetGroups
);
68 CPPUNIT_TEST( HasEntry
);
69 CPPUNIT_TEST( HasGroup
);
70 CPPUNIT_TEST( Binary
);
72 CPPUNIT_TEST( DeleteEntry
);
73 CPPUNIT_TEST( DeleteAndWriteEntry
);
74 CPPUNIT_TEST( DeleteGroup
);
75 CPPUNIT_TEST( DeleteAll
);
76 CPPUNIT_TEST( RenameEntry
);
77 CPPUNIT_TEST( RenameGroup
);
78 CPPUNIT_TEST( CreateEntriesAndSubgroup
);
79 CPPUNIT_TEST( CreateSubgroupAndEntries
);
80 CPPUNIT_TEST( DeleteLastGroup
);
81 CPPUNIT_TEST( DeleteAndRecreateGroup
);
82 CPPUNIT_TEST( AddToExistingRoot
);
83 CPPUNIT_TEST( ReadNonExistent
);
84 CPPUNIT_TEST_SUITE_END();
95 void DeleteAndWriteEntry();
100 void CreateEntriesAndSubgroup();
101 void CreateSubgroupAndEntries();
102 void DeleteLastGroup();
103 void DeleteAndRecreateGroup();
104 void AddToExistingRoot();
105 void ReadNonExistent();
108 static wxString
ChangePath(wxFileConfig
& fc
, const wxChar
*path
)
115 void CheckGroupEntries(const wxFileConfig
& fc
,
119 void CheckGroupSubgroups(const wxFileConfig
& fc
,
124 DECLARE_NO_COPY_CLASS(FileConfigTestCase
)
127 // register in the unnamed registry so that these tests are run by default
128 CPPUNIT_TEST_SUITE_REGISTRATION( FileConfigTestCase
);
130 // also include in it's own registry so that these tests can be run alone
131 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileConfigTestCase
, "FileConfigTestCase" );
133 void FileConfigTestCase::Path()
135 wxStringInputStream
sis(testconfig
);
136 wxFileConfig
fc(sis
);
138 CPPUNIT_ASSERT( ChangePath(fc
, wxT("")) == wxT("") );
139 CPPUNIT_ASSERT( ChangePath(fc
, wxT("/")) == wxT("") );
140 CPPUNIT_ASSERT( ChangePath(fc
, wxT("root")) == wxT("/root") );
141 CPPUNIT_ASSERT( ChangePath(fc
, wxT("/root")) == wxT("/root") );
142 CPPUNIT_ASSERT( ChangePath(fc
, wxT("/root/group1/subgroup")) == wxT("/root/group1/subgroup") );
143 CPPUNIT_ASSERT( ChangePath(fc
, wxT("/root/group2")) == wxT("/root/group2") );
146 void FileConfigTestCase::AddEntries()
150 wxVERIFY_FILECONFIG( wxT(""), fc
);
152 fc
.Write(wxT("/Foo"), wxT("foo"));
153 wxVERIFY_FILECONFIG( wxT("Foo=foo\n"), fc
);
155 fc
.Write(wxT("/Bar/Baz"), wxT("baz"));
156 wxVERIFY_FILECONFIG( wxT("Foo=foo\n[Bar]\nBaz=baz\n"), fc
);
159 wxVERIFY_FILECONFIG( wxT(""), fc
);
161 fc
.Write(wxT("/Bar/Baz"), wxT("baz"));
162 wxVERIFY_FILECONFIG( wxT("[Bar]\nBaz=baz\n"), fc
);
164 fc
.Write(wxT("/Foo"), wxT("foo"));
165 wxVERIFY_FILECONFIG( wxT("Foo=foo\n[Bar]\nBaz=baz\n"), fc
);
169 FileConfigTestCase::CheckGroupEntries(const wxFileConfig
& fc
,
174 wxConfigPathChanger
change(&fc
, wxString(path
) + wxT("/"));
176 CPPUNIT_ASSERT( fc
.GetNumberOfEntries() == nEntries
);
179 va_start(ap
, nEntries
);
183 for ( bool cont
= fc
.GetFirstEntry(name
, cookie
);
185 cont
= fc
.GetNextEntry(name
, cookie
), nEntries
-- )
187 CPPUNIT_ASSERT( name
== va_arg(ap
, wxChar
*) );
190 CPPUNIT_ASSERT( nEntries
== 0 );
196 FileConfigTestCase::CheckGroupSubgroups(const wxFileConfig
& fc
,
201 wxConfigPathChanger
change(&fc
, wxString(path
) + wxT("/"));
203 CPPUNIT_ASSERT( fc
.GetNumberOfGroups() == nGroups
);
206 va_start(ap
, nGroups
);
210 for ( bool cont
= fc
.GetFirstGroup(name
, cookie
);
212 cont
= fc
.GetNextGroup(name
, cookie
), nGroups
-- )
214 CPPUNIT_ASSERT( name
== va_arg(ap
, wxChar
*) );
217 CPPUNIT_ASSERT( nGroups
== 0 );
222 void FileConfigTestCase::GetEntries()
224 wxStringInputStream
sis(testconfig
);
225 wxFileConfig
fc(sis
);
227 CheckGroupEntries(fc
, wxT(""), 0);
228 CheckGroupEntries(fc
, wxT("/root"), 1, wxT("entry"));
229 CheckGroupEntries(fc
, wxT("/root/group1"), 0);
230 CheckGroupEntries(fc
, wxT("/root/group1/subgroup"),
231 2, wxT("subentry"), wxT("subentry2"));
234 void FileConfigTestCase::GetGroups()
236 wxStringInputStream
sis(testconfig
);
237 wxFileConfig
fc(sis
);
239 CheckGroupSubgroups(fc
, wxT(""), 1, wxT("root"));
240 CheckGroupSubgroups(fc
, wxT("/root"), 2, wxT("group1"), wxT("group2"));
241 CheckGroupSubgroups(fc
, wxT("/root/group1"), 1, wxT("subgroup"));
242 CheckGroupSubgroups(fc
, wxT("/root/group2"), 0);
245 void FileConfigTestCase::HasEntry()
247 wxStringInputStream
sis(testconfig
);
248 wxFileConfig
fc(sis
);
250 CPPUNIT_ASSERT( !fc
.HasEntry(wxT("root")) );
251 CPPUNIT_ASSERT( fc
.HasEntry(wxT("root/entry")) );
252 CPPUNIT_ASSERT( fc
.HasEntry(wxT("/root/entry")) );
253 CPPUNIT_ASSERT( fc
.HasEntry(wxT("root/group1/subgroup/subentry")) );
254 CPPUNIT_ASSERT( !fc
.HasEntry(wxT("")) );
255 CPPUNIT_ASSERT( !fc
.HasEntry(wxT("root/group1")) );
256 CPPUNIT_ASSERT( !fc
.HasEntry(wxT("subgroup/subentry")) );
257 CPPUNIT_ASSERT( !fc
.HasEntry(wxT("/root/no_such_group/entry")) );
258 CPPUNIT_ASSERT( !fc
.HasGroup(wxT("/root/no_such_group")) );
261 void FileConfigTestCase::HasGroup()
263 wxStringInputStream
sis(testconfig
);
264 wxFileConfig
fc(sis
);
266 CPPUNIT_ASSERT( fc
.HasGroup(wxT("root")) );
267 CPPUNIT_ASSERT( fc
.HasGroup(wxT("root/group1")) );
268 CPPUNIT_ASSERT( fc
.HasGroup(wxT("root/group1/subgroup")) );
269 CPPUNIT_ASSERT( fc
.HasGroup(wxT("root/group2")) );
270 CPPUNIT_ASSERT( !fc
.HasGroup(wxT("")) );
271 CPPUNIT_ASSERT( !fc
.HasGroup(wxT("root/group")) );
272 CPPUNIT_ASSERT( !fc
.HasGroup(wxT("root//subgroup")) );
273 CPPUNIT_ASSERT( !fc
.HasGroup(wxT("foot/subgroup")) );
274 CPPUNIT_ASSERT( !fc
.HasGroup(wxT("foot")) );
277 void FileConfigTestCase::Binary()
279 wxStringInputStream
sis(
283 wxFileConfig
fc(sis
);
286 fc
.Read("/root/binary", &buf
);
288 CPPUNIT_ASSERT( memcmp("foo\n", buf
.GetData(), buf
.GetDataLen()) == 0 );
291 buf
.AppendData("\0\1\2", 3);
292 fc
.Write("/root/012", buf
);
301 void FileConfigTestCase::Save()
303 wxStringInputStream
sis(testconfig
);
304 wxFileConfig
fc(sis
);
305 wxVERIFY_FILECONFIG( testconfig
, fc
);
308 void FileConfigTestCase::DeleteEntry()
310 wxStringInputStream
sis(testconfig
);
311 wxFileConfig
fc(sis
);
313 CPPUNIT_ASSERT( !fc
.DeleteEntry(wxT("foo")) );
315 CPPUNIT_ASSERT( fc
.DeleteEntry(wxT("root/group1/subgroup/subentry")) );
316 wxVERIFY_FILECONFIG( wxT("[root]\n")
318 wxT("[root/group1]\n")
319 wxT("[root/group1/subgroup]\n")
320 wxT("subentry2=subvalue2\n")
321 wxT("[root/group2]\n"),
324 // group should be deleted now as well as it became empty
325 wxConfigPathChanger
change(&fc
, wxT("root/group1/subgroup/subentry2"));
326 CPPUNIT_ASSERT( fc
.DeleteEntry(wxT("subentry2")) );
327 wxVERIFY_FILECONFIG( wxT("[root]\n")
329 wxT("[root/group1]\n")
330 wxT("[root/group2]\n"),
334 void FileConfigTestCase::DeleteAndWriteEntry()
336 wxStringInputStream
sis(
338 "subentry=subvalue\n"
339 "subentry2=subvalue2\n"
340 "subentry3=subvalue3\n"
343 wxFileConfig
fc(sis
);
345 fc
.DeleteEntry("/root/group1/subentry2");
346 fc
.Write("/root/group1/subentry2", "testvalue");
347 fc
.DeleteEntry("/root/group2/subentry2");
348 fc
.Write("/root/group2/subentry2", "testvalue2");
349 fc
.DeleteEntry("/root/group1/subentry2");
350 fc
.Write("/root/group1/subentry2", "testvalue");
351 fc
.DeleteEntry("/root/group2/subentry2");
352 fc
.Write("/root/group2/subentry2", "testvalue2");
354 wxVERIFY_FILECONFIG( "[root/group1]\n"
355 "subentry=subvalue\n"
356 "subentry3=subvalue3\n"
357 "subentry2=testvalue\n"
359 "subentry2=testvalue2\n",
362 fc
.DeleteEntry("/root/group2/subentry2");
363 wxVERIFY_FILECONFIG( "[root/group1]\n"
364 "subentry=subvalue\n"
365 "subentry3=subvalue3\n"
366 "subentry2=testvalue\n",
369 fc
.DeleteEntry("/root/group1/subentry2");
370 fc
.DeleteEntry("/root/group1/subentry");
371 fc
.DeleteEntry("/root/group1/subentry3");
372 wxVERIFY_FILECONFIG( "", fc
);
375 void FileConfigTestCase::DeleteGroup()
377 wxStringInputStream
sis(testconfig
);
378 wxFileConfig
fc(sis
);
380 CPPUNIT_ASSERT( !fc
.DeleteGroup(wxT("foo")) );
382 CPPUNIT_ASSERT( fc
.DeleteGroup(wxT("root/group1")) );
383 wxVERIFY_FILECONFIG( wxT("[root]\n")
385 wxT("[root/group2]\n"),
388 // notice trailing slash: it should be ignored
389 CPPUNIT_ASSERT( fc
.DeleteGroup(wxT("root/group2/")) );
390 wxVERIFY_FILECONFIG( wxT("[root]\n")
391 wxT("entry=value\n"),
394 CPPUNIT_ASSERT( fc
.DeleteGroup(wxT("root")) );
395 CPPUNIT_ASSERT( Dump(fc
).empty() );
398 void FileConfigTestCase::DeleteAll()
400 wxStringInputStream
sis(testconfig
);
401 wxFileConfig
fc(sis
);
403 CPPUNIT_ASSERT( fc
.DeleteAll() );
404 CPPUNIT_ASSERT( Dump(fc
).empty() );
407 void FileConfigTestCase::RenameEntry()
409 wxStringInputStream
sis(testconfig
);
410 wxFileConfig
fc(sis
);
412 fc
.SetPath(wxT("root"));
413 CPPUNIT_ASSERT( fc
.RenameEntry(wxT("entry"), wxT("newname")) );
414 wxVERIFY_FILECONFIG( wxT("[root]\n")
415 wxT("newname=value\n")
416 wxT("[root/group1]\n")
417 wxT("[root/group1/subgroup]\n")
418 wxT("subentry=subvalue\n")
419 wxT("subentry2=subvalue2\n")
420 wxT("[root/group2]\n"),
423 fc
.SetPath(wxT("group1/subgroup"));
424 CPPUNIT_ASSERT( !fc
.RenameEntry(wxT("entry"), wxT("newname")) );
425 CPPUNIT_ASSERT( !fc
.RenameEntry(wxT("subentry"), wxT("subentry2")) );
427 CPPUNIT_ASSERT( fc
.RenameEntry(wxT("subentry"), wxT("subentry1")) );
428 wxVERIFY_FILECONFIG( wxT("[root]\n")
429 wxT("newname=value\n")
430 wxT("[root/group1]\n")
431 wxT("[root/group1/subgroup]\n")
432 wxT("subentry2=subvalue2\n")
433 wxT("subentry1=subvalue\n")
434 wxT("[root/group2]\n"),
438 void FileConfigTestCase::RenameGroup()
440 wxStringInputStream
sis(testconfig
);
441 wxFileConfig
fc(sis
);
443 CPPUNIT_ASSERT( fc
.RenameGroup(wxT("root"), wxT("foot")) );
444 wxVERIFY_FILECONFIG( wxT("[foot]\n")
446 wxT("[foot/group1]\n")
447 wxT("[foot/group1/subgroup]\n")
448 wxT("subentry=subvalue\n")
449 wxT("subentry2=subvalue2\n")
450 wxT("[foot/group2]\n"),
453 // renaming a path doesn't work, it must be the immediate group
454 CPPUNIT_ASSERT( !fc
.RenameGroup(wxT("foot/group1"), wxT("group2")) );
457 fc
.SetPath(wxT("foot"));
459 // renaming to a name of existing group doesn't work
460 CPPUNIT_ASSERT( !fc
.RenameGroup(wxT("group1"), wxT("group2")) );
462 // try exchanging the groups names and then restore them back
463 CPPUNIT_ASSERT( fc
.RenameGroup(wxT("group1"), wxT("groupTmp")) );
464 wxVERIFY_FILECONFIG( wxT("[foot]\n")
466 wxT("[foot/groupTmp]\n")
467 wxT("[foot/groupTmp/subgroup]\n")
468 wxT("subentry=subvalue\n")
469 wxT("subentry2=subvalue2\n")
470 wxT("[foot/group2]\n"),
473 CPPUNIT_ASSERT( fc
.RenameGroup(wxT("group2"), wxT("group1")) );
474 wxVERIFY_FILECONFIG( wxT("[foot]\n")
476 wxT("[foot/groupTmp]\n")
477 wxT("[foot/groupTmp/subgroup]\n")
478 wxT("subentry=subvalue\n")
479 wxT("subentry2=subvalue2\n")
480 wxT("[foot/group1]\n"),
483 CPPUNIT_ASSERT( fc
.RenameGroup(wxT("groupTmp"), wxT("group2")) );
484 wxVERIFY_FILECONFIG( wxT("[foot]\n")
486 wxT("[foot/group2]\n")
487 wxT("[foot/group2/subgroup]\n")
488 wxT("subentry=subvalue\n")
489 wxT("subentry2=subvalue2\n")
490 wxT("[foot/group1]\n"),
493 CPPUNIT_ASSERT( fc
.RenameGroup(wxT("group1"), wxT("groupTmp")) );
494 wxVERIFY_FILECONFIG( wxT("[foot]\n")
496 wxT("[foot/group2]\n")
497 wxT("[foot/group2/subgroup]\n")
498 wxT("subentry=subvalue\n")
499 wxT("subentry2=subvalue2\n")
500 wxT("[foot/groupTmp]\n"),
503 CPPUNIT_ASSERT( fc
.RenameGroup(wxT("group2"), wxT("group1")) );
504 wxVERIFY_FILECONFIG( wxT("[foot]\n")
506 wxT("[foot/group1]\n")
507 wxT("[foot/group1/subgroup]\n")
508 wxT("subentry=subvalue\n")
509 wxT("subentry2=subvalue2\n")
510 wxT("[foot/groupTmp]\n"),
513 CPPUNIT_ASSERT( fc
.RenameGroup(wxT("groupTmp"), wxT("group2")) );
514 wxVERIFY_FILECONFIG( wxT("[foot]\n")
516 wxT("[foot/group1]\n")
517 wxT("[foot/group1/subgroup]\n")
518 wxT("subentry=subvalue\n")
519 wxT("subentry2=subvalue2\n")
520 wxT("[foot/group2]\n"),
524 void FileConfigTestCase::CreateSubgroupAndEntries()
527 fc
.Write(wxT("sub/sub_first"), wxT("sub_one"));
528 fc
.Write(wxT("first"), wxT("one"));
530 wxVERIFY_FILECONFIG( wxT("first=one\n")
532 wxT("sub_first=sub_one\n"),
536 void FileConfigTestCase::CreateEntriesAndSubgroup()
539 fc
.Write(wxT("first"), wxT("one"));
540 fc
.Write(wxT("second"), wxT("two"));
541 fc
.Write(wxT("sub/sub_first"), wxT("sub_one"));
543 wxVERIFY_FILECONFIG( wxT("first=one\n")
546 wxT("sub_first=sub_one\n"),
550 static void EmptyConfigAndWriteKey()
552 wxFileConfig
fc(wxT("deleteconftest"));
554 const wxString groupPath
= wxT("/root");
556 if ( fc
.Exists(groupPath
) )
558 // using DeleteGroup exposes the problem, using DeleteAll doesn't
559 CPPUNIT_ASSERT( fc
.DeleteGroup(groupPath
) );
562 // the config must be empty for the problem to arise
563 CPPUNIT_ASSERT( !fc
.GetNumberOfEntries(true) );
564 CPPUNIT_ASSERT( !fc
.GetNumberOfGroups(true) );
567 // this crashes on second call of this function
568 CPPUNIT_ASSERT( fc
.Write(groupPath
+ wxT("/entry"), wxT("value")) );
571 void FileConfigTestCase::DeleteLastGroup()
574 We make 2 of the same calls, first to create a file config with a single
577 ::EmptyConfigAndWriteKey();
580 ... then the same but this time the key's group is deleted before the
581 key is written again. This causes a crash.
583 ::EmptyConfigAndWriteKey();
588 (void) ::wxRemoveFile(wxFileConfig::GetLocalFileName(wxT("deleteconftest")));
591 void FileConfigTestCase::DeleteAndRecreateGroup()
593 static const wxChar
*confInitial
=
599 wxStringInputStream
sis(confInitial
);
600 wxFileConfig
fc(sis
);
602 fc
.DeleteGroup(wxT("Second"));
603 wxVERIFY_FILECONFIG( wxT("[First]\n")
607 fc
.Write(wxT("Second/Value2"), wxT("New"));
608 wxVERIFY_FILECONFIG( wxT("[First]\n")
615 void FileConfigTestCase::AddToExistingRoot()
617 static const wxChar
*confInitial
=
621 wxStringInputStream
sis(confInitial
);
622 wxFileConfig
fc(sis
);
624 fc
.Write(wxT("/value1"), wxT("bar"));
633 void FileConfigTestCase::ReadNonExistent()
635 static const char *confTest
=
636 "community=censored\n"
645 wxStringInputStream
sis(confTest
);
646 wxFileConfig
fc(sis
);
649 CPPUNIT_ASSERT( !fc
.Read("URL", &url
) );
652 #endif // wxUSE_FILECONFIG