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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
#!/usr/bin/env python
# **********************************************************************
#
# Copyright (c) 2003-2010 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, time, os
from demoscript import *
from scripts import Expect
def run(clientStr, desc = 'application'):
print "cleaning databases...",
sys.stdout.flush()
nodeDir = os.path.join("db", "node")
if not os.path.exists(nodeDir):
os.mkdir(nodeDir)
else:
Util.cleanDbDir(nodeDir)
regDir = os.path.join("db", "registry")
if not os.path.exists(regDir):
os.mkdir(regDir)
else:
Util.cleanDbDir(regDir)
print "ok"
if Util.defaultHost:
args = ' --IceGrid.Node.PropertiesOverride="Ice.Default.Host=127.0.0.1"'
else:
args = ''
print "starting icegridnode...",
sys.stdout.flush()
node = Util.spawn(Util.getIceGridNode() + ' --Ice.Config=config.grid --Ice.PrintAdapterReady %s' % (args))
node.expect('IceGrid.Registry.Internal ready')
node.expect('IceGrid.Registry.Server ready')
node.expect('IceGrid.Registry.Client ready')
if Util.getMapping() == "cpp":
node.expect('IceGrid.Registry.AdminSessionManager ready')
node.expect('IceGrid.Node ready')
print "ok"
print "deploying application...",
sys.stdout.flush()
admin = Util.spawn(Util.getIceGridAdmin() + ' --Ice.Config=config.grid')
admin.expect('>>>')
admin.sendline("application add \'%s.xml\'" %(desc))
admin.expect('>>>')
admin.sendline("server start IceBox")
admin.expect('>>>', timeout=15)
print "ok"
print "testing client...",
sys.stdout.flush()
for s in [ "Homer", "Marge", "Bart", "Lisa", "Maggie" ]:
client = Util.spawn(clientStr)
node.expect("Hello from %s" % s)
client.waitTestSuccess(timeout=1)
print "ok"
print "testing stop/start of services...",
sys.stdout.flush()
admin.sendline("service stop IceBox Lisa")
admin.expect('>>>')
admin.sendline("service stop IceBox Maggie")
admin.expect('>>>')
client = Util.spawn(clientStr)
node.expect("Hello from Homer")
client.waitTestSuccess(timeout=1)
client = Util.spawn(clientStr)
node.expect("Hello from Marge")
client.waitTestSuccess(timeout=1)
client = Util.spawn(clientStr)
node.expect("Hello from Bart")
client.waitTestSuccess(timeout=1)
client = Util.spawn(clientStr)
node.expect("Hello from Homer")
client.waitTestSuccess(timeout=1)
admin.sendline("service start IceBox Lisa")
admin.expect('>>>')
admin.sendline("service start IceBox Maggie")
admin.expect('>>>')
admin.sendline("service stop IceBox Homer")
admin.expect('>>>')
admin.sendline("service stop IceBox Marge")
admin.expect('>>>')
client = Util.spawn(clientStr)
node.expect("Hello from Bart")
client.waitTestSuccess(timeout=1)
client = Util.spawn(clientStr)
node.expect("Hello from Lisa")
client.waitTestSuccess(timeout=1)
client = Util.spawn(clientStr)
node.expect("Hello from Maggie")
client.waitTestSuccess(timeout=1)
client = Util.spawn(clientStr)
node.expect("Hello from Bart")
client.waitTestSuccess(timeout=1)
print "ok"
print "testing administration with Glacier2...",
sys.stdout.flush()
admin.sendline("server start DemoGlacier2")
admin.expect('>>>')
admin.sendline('exit')
# Windows seems to have problems with the password input.
if Util.isWin32():
admin = Util.spawn(Util.getIceGridAdmin() + ' --Ice.Default.Router="DemoGlacier2/router:tcp -h localhost -p 4063" -u foo -p foo')
else:
admin = Util.spawn(Util.getIceGridAdmin() + ' --Ice.Default.Router="DemoGlacier2/router:tcp -h localhost -p 4063"')
admin.expect('user id:')
admin.sendline('foo')
admin.expect('password:')
admin.sendline('foo')
admin.expect('>>>', timeout=100)
admin.sendline("service start IceBox Homer")
admin.expect('>>>')
admin.sendline("service start IceBox Marge")
admin.expect('>>>')
client = Util.spawn(clientStr)
node.expect("Hello from Lisa")
client.waitTestSuccess(timeout=1)
client = Util.spawn(clientStr)
node.expect("Hello from Maggie")
client.waitTestSuccess(timeout=1)
client = Util.spawn(clientStr)
node.expect("Hello from Homer")
client.waitTestSuccess(timeout=1)
client = Util.spawn(clientStr)
node.expect("Hello from Marge")
client.waitTestSuccess(timeout=1)
client = Util.spawn(clientStr)
node.expect("Hello from Bart")
client.waitTestSuccess(timeout=1)
print "ok"
admin.sendline('registry shutdown Master')
admin.sendline('exit')
admin.waitTestSuccess()
node.waitTestSuccess()
|