blob: 34b7cc0f1c58bf7c68ecbc972e7071c63233a965 (
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
|
test:
spawn on node1 as p1
spawn on node2 as p2
send "create-identity Device1 Owner" to p1
send "create-identity Device2" to p2
send "watch-local-identity" to p1
send "watch-local-identity" to p2
send "watch-shared-identity" to p1
send "watch-shared-identity" to p2
send "start-server" to p1
send "start-server" to p2
expect from p1:
/local-identity Device1 Owner/
/shared-identity Owner/
/peer 1 addr 192.168.0.12 29665/
/peer 1 id Device2/
expect from p2:
/local-identity Device2/
/peer 1 addr 192.168.0.11 29665/
/peer 1 id Device1 Owner/
send "attach-to 1" to p2
expect /attach-request 1 .*/ from p1
expect /attach-response 1 .*/ from p2
# TODO: check code match
send "attach-accept 1" to p1
send "attach-accept 1" to p2
expect /attach-request-done 1/ from p1
expect /attach-response-done 1/ from p2
expect /local-identity Device2 Owner/ from p2
expect /shared-identity Owner/ from p2
expect /peer 1 id Device2 Owner/ from p1
send "update-shared-identity NewOwner" to p1
expect /shared-identity NewOwner/ from p1
expect /shared-identity NewOwner/ from p2
send "update-shared-identity NewOwner2" to p2
expect /shared-identity NewOwner2/ from p1
expect /shared-identity NewOwner2/ from p2
send "update-shared-identity NewOwner3" to p1
expect /shared-identity NewOwner3/ from p1
expect /shared-identity NewOwner3/ from p2
|