1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
#!/usr/bin/env python
# **********************************************************************
#
# Copyright (c) 2003-2008 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, os
try:
import demoscript
except ImportError:
for toplevel in [".", "..", "../..", "../../..", "../../../.."]:
toplevel = os.path.normpath(toplevel)
if os.path.exists(os.path.join(toplevel, "demoscript")):
break
else:
raise "can't find toplevel directory!"
sys.path.append(os.path.join(toplevel))
import demoscript
import demoscript.Util
demoscript.Util.defaultLanguage = "C++"
import time, signal
desc = 'application.xml'
if demoscript.Util.mode == 'debug':
fi = open(desc, "r")
desc = 'tmp_application.xml'
fo = open(desc, "w")
for l in fi:
if l.find('exe="icebox"') != -1:
l = l.replace('exe="icebox"', 'exe="iceboxd.exe"')
fo.write(l)
fi.close()
fo.close()
print "cleaning databases...",
sys.stdout.flush()
demoscript.Util.cleanDbDir("db/node")
demoscript.Util.cleanDbDir("db/registry")
print "ok"
if demoscript.Util.defaultHost:
args = ' --IceGrid.Node.PropertiesOverride="Ice.Default.Host=127.0.0.1"'
else:
args = ''
print "starting icegridnode...",
sys.stdout.flush()
node = demoscript.Util.spawn('icegridnode --Ice.Config=config.grid --Ice.PrintAdapterReady %s' % (args))
node.expect('IceGrid.Registry.Server ready\r{1,2}\nIceGrid.Registry.Client ready\r{1,2}\nIceGrid.Node ready')
print "ok"
print "deploying application...",
sys.stdout.flush()
admin = demoscript.Util.spawn('icegridadmin --Ice.Config=config.grid')
admin.expect('>>>')
admin.sendline("application add \'%s\'" %(desc))
admin.expect('>>>')
print "ok"
print "testing pub/sub...",
sys.stdout.flush()
sub = demoscript.Util.spawn('./subscriber --Ice.PrintAdapterReady')
# Match each of the patterns once.
def matchpat(e, pat, timeout=60):
matched = []
for i in pat:
m = e.expect(pat, timeout=timeout)
assert not m in matched
matched.append(m)
assert len(matched) == len(pat)
matchpat(node, [ 'Election: node 1: reporting for duty in group 3:[-0-9A-Fa-f]+ with coordinator 3',
'Election: node 2: reporting for duty in group 3:[-0-9A-Fa-f]+ with coordinator 3',
'Election: node 3: reporting for duty in group 3:[-0-9A-Fa-f]+ as coordinator' ])
matchpat(node, ['DemoIceStorm-3: Topic: time: subscribeAndGetPublisher: [-0-9A-Fa-f]+',
'DemoIceStorm-1: Topic: time: add replica observer: [-0-9A-Fa-f]+',
'DemoIceStorm-2: Topic: time: add replica observer: [-0-9A-Fa-f]+' ])
sub.expect('.* ready')
pub = demoscript.Util.spawn('./publisher')
time.sleep(3)
sub.expect('[0-9][0-9]/[0-9][0-9].*\r{1,2}\n[0-9][0-9]/[0-9][0-9]')
print "ok"
sub.kill(signal.SIGINT)
sub.waitTestSuccess()
pub.kill(signal.SIGINT)
pub.waitTestSuccess()
# With Cygwin SIGINT isn't intercepted.
if not demoscript.Util.isCygwin():
matchpat(node, [ 'DemoIceStorm-1: Topic: time: remove replica observer: [-0-9A-Fa-f]+',
'DemoIceStorm-2: Topic: time: remove replica observer: [-0-9A-Fa-f]+' ,
'DemoIceStorm-3: Topic: time: unsubscribe: [-0-9A-Fa-f]+' ])
admin.sendline('registry shutdown Master')
admin.sendline('exit')
admin.waitTestSuccess()
node.waitTestSuccess()
|