summaryrefslogtreecommitdiff
path: root/demoscript/IceGrid/sessionActivation.py
blob: d6b2f93bef25b7207d2eee94db746716a61b865c (plain)
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
#!/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
from demoscript import *

def run(clientCmd):
    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('icegridnode --Ice.Config=config.grid --Ice.PrintAdapterReady %s' % (args))
    node.expect('IceGrid.Registry.Internal ready\nIceGrid.Registry.Server ready\nIceGrid.Registry.Client ready\nIceGrid.Node ready')
    print "ok"

    print "deploying application...",
    sys.stdout.flush()
    admin = Util.spawn('icegridadmin --Ice.Config=config.grid')
    admin.expect('>>>')
    admin.sendline("application add \'application.xml\'")
    admin.expect('>>>')
    print "ok"

    print "testing client...", 
    sys.stdout.flush()

    client = Util.spawn(clientCmd)
    client.expect('user id:')
    client.sendline('foo')
    client.expect('password:')
    client.sendline('foo')
    node.expect('activating server')
    client.expect('==>')
    client.sendline('t')
    node.expect('says Hello World!')
    client.sendline('x')
    client.waitTestSuccess(timeout=1)
    node.expect('detected termination of server')

    client = Util.spawn(clientCmd)
    client.expect('user id:')
    client.sendline('foo')
    client.expect('password:')
    client.sendline('foo')
    node.expect('activating server')
    client.expect('==>')
    client.sendline('t')
    node.expect('says Hello World!')
    client.sendline('x')
    client.waitTestSuccess(timeout=1)
    node.expect('detected termination of server')

    print "ok"

    admin.sendline('registry shutdown Master')
    admin.sendline('exit')
    admin.waitTestSuccess()
    node.waitTestSuccess()