From 74934f0574339586e5954cd74e8fcac30e0489a5 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Mon, 7 Sep 2015 11:05:06 +0200 Subject: [PATCH] Added php introspection test. --- tests/gir.php | 15 +++++++++++ tests/gir.py | 74 +++++++++++++++++++++++++-------------------------- 2 files changed, 52 insertions(+), 37 deletions(-) create mode 100644 tests/gir.php mode change 100644 => 100755 tests/gir.py diff --git a/tests/gir.php b/tests/gir.php new file mode 100644 index 0000000..39f9ead --- /dev/null +++ b/tests/gir.php @@ -0,0 +1,15 @@ +new_gir("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=confi", "Default", None, False); +var_dump ($confi2);*/ + +/*$configs = Confi\get_configs_list ("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=confi"); +var_dump ($configs);*/ + + +?> diff --git a/tests/gir.py b/tests/gir.py old mode 100644 new mode 100755 index dc53ec8..cd40672 --- a/tests/gir.py +++ b/tests/gir.py @@ -1,37 +1,37 @@ -#!/usr/bin/env python2 - -from gi.repository import GLib -from gi.repository import Confi - -# Create a new object -confi = Confi.Confi.new("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=confi", "Default", None, False) - -print("Properties of a Confi object: ") -print(dir(confi.props)) - -value = confi.path_get_value ("folder/key1/key1_2") - -print("Value from key \"folder/key1/key1_2\": " + str(value)) - -key = confi.path_get_confi_key ("folder/key1/key1_2") -print("Path of confi key \"folder/key1/key1_2\": " + str(key.path)) -print("Value from confi key \"folder/key1/key1_2\": " + str(key.value)) - -list = confi.get_configs_list ("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=confi"); -print("The name of configuration 0: " + str(list[0].get_property("name"))) - -confi.set_root ("key2") - -value = confi.path_get_value ("key2-1") - -print("Value from key \"key2-1\": " + str(value)) - -confi.set_root ("/") -confi.add_key ("folder", "key3"); -confi.add_key_with_value ("folder/key3", "key3-1", "value of key3-1 added programmatically") - -confi.set_root ("folder/key3") - -value = confi.path_get_value ("key3-1") - -print("Value from key \"key3-1\": " + str(value)) +#!/usr/bin/python + +from gi.repository import GLib +from gi.repository import Confi + +# Create a new object +confi = Confi.Confi.new("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=confi", "Default", None, False) + +print("Properties of a Confi object: ") +print(dir(confi.props)) + +value = confi.path_get_value ("folder/key1/key1_2") + +print("Value from key \"folder/key1/key1_2\": " + str(value)) + +key = confi.path_get_confi_key ("folder/key1/key1_2") +print("Path of confi key \"folder/key1/key1_2\": " + str(key.path)) +print("Value from confi key \"folder/key1/key1_2\": " + str(key.value)) + +list = confi.get_configs_list ("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=confi"); +print("The name of configuration 0: " + str(list[0].get_property("name"))) + +confi.set_root ("key2") + +value = confi.path_get_value ("key2-1") + +print("Value from key \"key2-1\": " + str(value)) + +confi.set_root ("/") +confi.add_key ("folder", "key3"); +confi.add_key_with_value ("folder/key3", "key3-1", "value of key3-1 added programmatically") + +confi.set_root ("folder/key3") + +value = confi.path_get_value ("key3-1") + +print("Value from key \"key3-1\": " + str(value)) -- 2.49.0