Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: client/site_tests/desktopui_IBusTest/desktopui_IBusTest.py

Issue 1371005: Add tests for ibus-gconf. (Closed)
Patch Set: addressed all comments Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/deps/ibusclient/src/ibusclient.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/site_tests/desktopui_IBusTest/desktopui_IBusTest.py
diff --git a/client/site_tests/desktopui_IBusTest/desktopui_IBusTest.py b/client/site_tests/desktopui_IBusTest/desktopui_IBusTest.py
index 3f68b3eaf5f842bf3219eb6fe5cdc396cbea6f6f..7a4e2c8acb76c1102123a8556945cba46ad5d927 100644
--- a/client/site_tests/desktopui_IBusTest/desktopui_IBusTest.py
+++ b/client/site_tests/desktopui_IBusTest/desktopui_IBusTest.py
@@ -49,6 +49,26 @@ class desktopui_IBusTest(test.test):
expected_engine_name)
+ def test_config(self, type_name):
+ out = self.run_ibusclient('set_config %s' % type_name)
+ if not 'OK' in out:
+ raise error.TestFail('Failed to set %s value to '
+ 'the ibus config service' % type_name)
+ out = self.run_ibusclient('get_config %s' % type_name)
+ if not 'OK' in out:
+ raise error.TestFail('Failed to get %s value from '
+ 'the ibus config service' % type_name)
+ out = self.run_ibusclient('unset_config')
+ if not 'OK' in out:
+ raise error.TestFail('Failed to unset %s value from '
+ 'the ibus config service' % type_name)
+ out = self.run_ibusclient('get_config %s' % type_name)
+ # the value no longer exists.
+ if 'OK' in out:
+ raise error.TestFail('Failed to unset %s value from '
+ 'the ibus config service' % type_name)
+
+
def run_once(self):
logged_in = site_login.logged_in()
if not logged_in:
@@ -64,6 +84,8 @@ class desktopui_IBusTest(test.test):
'deps/ibusclient/ibusclient')
self.test_reachable()
self.test_supported_engines()
+ for type_name in ['boolean', 'int', 'double', 'string']:
+ self.test_config(type_name)
finally:
# If we started logged out, log back out.
if not logged_in:
« no previous file with comments | « client/deps/ibusclient/src/ibusclient.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698