summaryrefslogtreecommitdiffstats
path: root/tdecore/tests/ksimpleconfigtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdecore/tests/ksimpleconfigtest.cpp')
-rw-r--r--tdecore/tests/ksimpleconfigtest.cpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/tdecore/tests/ksimpleconfigtest.cpp b/tdecore/tests/ksimpleconfigtest.cpp
new file mode 100644
index 000000000..6aa93c06d
--- /dev/null
+++ b/tdecore/tests/ksimpleconfigtest.cpp
@@ -0,0 +1,48 @@
+// $Id$
+
+//
+// configtest.cpp: libKDEcore example
+//
+// demonstrates use of KSimpleConfig class
+
+#include <ksimpleconfig.h>
+#include <kapplication.h>
+#include <unistd.h>
+#include <stdio.h>
+
+#ifdef HAVE_PATHS_H
+#include <paths.h>
+#endif
+
+#ifndef _PATH_TMP
+#define _PATH_TMP "/tmp/"
+#endif
+
+int main( int argc, char **argv )
+{
+ KApplication a( argc, argv, "kconfigtest" );
+
+ KSimpleConfig aConfig( _PATH_TMP"/simpleconfig.cfg" );
+
+ aConfig.setGroup( "Test group" );
+ aConfig.writeEntry( "key1", "value1" );
+ aConfig.writeEntry( "key2", "value2" );
+
+ aConfig.setGroup( "Another Test group" );
+ aConfig.writeEntry( "akey1", "avalue1" );
+ aConfig.writeEntry( "akey2", "avalue2" );
+
+ fprintf( stderr, "entries written, sleeping for 10 seconds\n" );
+ aConfig.sync();
+ sleep( 10 );
+
+ aConfig.setGroup( "Test group" );
+ aConfig.deleteEntry( "key2", false );
+ fprintf( stderr, "Deleted on entry from Test group, sleeping\n" );
+ aConfig.sync();
+ sleep( 10 );
+
+ aConfig.deleteGroup( "Another Test group", true );
+ fprintf( stderr, "Deleted Another Test group\n" );
+}
+