summaryrefslogtreecommitdiff
path: root/demoscript/Ice/plugin.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2009-04-21 15:59:33 -0230
committerDwayne Boone <dwayne@zeroc.com>2009-04-21 15:59:33 -0230
commitae58d9f09835de8d57e5ad27d9b33ffbcd0d5092 (patch)
treef96fbf2fd2643bf02c64931dedfd3b6772169705 /demoscript/Ice/plugin.py
parentBug 2504 - added getPlugins method to PluginManager (diff)
downloadice-ae58d9f09835de8d57e5ad27d9b33ffbcd0d5092.tar.bz2
ice-ae58d9f09835de8d57e5ad27d9b33ffbcd0d5092.tar.xz
ice-ae58d9f09835de8d57e5ad27d9b33ffbcd0d5092.zip
Bug 3912 - added logger plugin demo
Diffstat (limited to 'demoscript/Ice/plugin.py')
-rw-r--r--demoscript/Ice/plugin.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/demoscript/Ice/plugin.py b/demoscript/Ice/plugin.py
new file mode 100644
index 00000000000..ebdf614f9de
--- /dev/null
+++ b/demoscript/Ice/plugin.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+# **********************************************************************
+#
+# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
+#
+# This copy of Ice is licensed to you under the terms described in the
+# ICE_LICENSE file included in this distribution.
+#
+# **********************************************************************
+
+import sys
+from demoscript import *
+from scripts import Expect
+
+def run(client, server):
+ print "testing...",
+ sys.stdout.flush()
+ client.sendline('t')
+ server.expect('PRINT: Hello World!')
+ print "ok"
+
+ client.sendline('s')
+ server.waitTestSuccess()
+
+ client.sendline('x')
+ client.waitTestSuccess()