summaryrefslogtreecommitdiff
path: root/attach.test
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2025-07-30 20:07:07 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2025-07-30 20:07:07 +0200
commite69c90a34b5bdc96271cd966e84c76f44a99d69e (patch)
tree65f06c442b71c4977f056f4b50fb1fb3e75dd3b4 /attach.test
parentc85b4fdbd0fe58af93ff70ad62abe8b5aed8f82e (diff)
(test) Switch test script extension to “et”
Diffstat (limited to 'attach.test')
-rw-r--r--attach.test45
1 files changed, 0 insertions, 45 deletions
diff --git a/attach.test b/attach.test
deleted file mode 100644
index afbdd0e..0000000
--- a/attach.test
+++ /dev/null
@@ -1,45 +0,0 @@
-test:
- let services = "attach,sync"
-
- spawn as p1
- spawn 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 "start-server services $services" to p1
- send "start-server services $services" to p2
- expect from p1:
- /local-identity Device1 Owner/
- /peer 1 addr ${p2.node.ip} 29665/
- /peer 1 id Device2/
- expect from p2:
- /local-identity Device2/
- /peer 1 addr ${p1.node.ip} 29665/
- /peer 1 id Device1 Owner/
-
- send "attach-to 1" to p2
- expect /attach-request 1 .*/ from p1
- expect /attach-response 1 .*/ from p2
- send "attach-reject 1" to p1
- expect /attach-request-failed 1 user/ from p1
- expect /attach-response-failed 1 rejected/ from p2
-
- send "attach-to 1" to p2
- expect /attach-request 1 .*/ from p1
- expect /attach-response 1 .*/ from p2
- send "attach-reject 1" to p2
- expect /attach-request-failed 1 rejected/ from p1
- expect /attach-response-failed 1 user/ from p2
-
- send "attach-to 1" to p2
- expect /attach-request 1 ([0-9]*)/ from p1 capture code1
- expect /attach-response 1 ([0-9]*)/ from p2 capture code2
- guard (code1 == code2)
-
- 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 /peer 1 id Device2 Owner/ from p1