Commit 6868da9f177810f436109565b2ebf80b78fe44da
update tests to assume just one argument
Dominic Tarr committed on 7/5/2019, 11:04:12 AMParent: cb6fe8cf24dfda94e22f981ad9074b4edae061df
Files changed
test/accept2.js | changed |
test/accept3.js | changed |
test/accept4.js | changed |
test/accept5.js | changed |
test/invite-with-pubs.js | changed |
test/accept2.js | ||
---|---|---|
@@ -51,13 +51,15 @@ | ||
51 | 51 … | |
52 | 52 … | //use device address, just for tests |
53 | 53 … | invite.pubs.push(alice.getAddress('device')) |
54 | 54 … | |
55 | - bob.peerInvites.openInvite(invite, function (err, invite_msg, data) { | |
55 … | + bob.peerInvites.openInvite(invite, function (err, data) { | |
56 | 56 … | if(err) throw err |
57 … | + var invite_msg = data.value | |
58 … | + var opened = data.opened | |
57 | 59 … | t.ok(invite) |
58 | 60 … | t.equal(toId(invite_msg), invite_id) |
59 | - t.deepEqual(data, {reveal: undefined, private: undefined}) | |
61 … | + t.deepEqual(opened, {reveal: undefined, private: undefined}) | |
60 | 62 … | //check this invite is valid. would throw if it wasn't. |
61 | 63 … | bob.peerInvites.acceptInvite(invite, function (err, confirm) { |
62 | 64 … | if(err) throw err |
63 | 65 … | |
@@ -74,5 +76,4 @@ | ||
74 | 76 … | }) |
75 | 77 … | }) |
76 | 78 … | }) |
77 | 79 … | }) |
78 | - |
test/accept3.js | ||
---|---|---|
@@ -54,14 +54,16 @@ | ||
54 | 54 … | |
55 | 55 … | //use device address, just for tests |
56 | 56 … | invite.pubs.push(alice.getAddress('device')) |
57 | 57 … | |
58 | - bob.peerInvites.openInvite(invite, function (err, invite_msg, data) { | |
58 … | + bob.peerInvites.openInvite(invite, function (err, data) { | |
59 | 59 … | if(err) throw err |
60 … | + var invite_msg = data.value | |
61 … | + var opened = data.opened | |
60 | 62 … | t.ok(invite) |
61 | 63 … | t.equal(invite_msg.author, carol_id) |
62 | 64 … | t.equal(toId(invite_msg), invite_id) |
63 | - t.deepEqual(data, {reveal: undefined, private: undefined}) | |
65 … | + t.deepEqual(opened, {reveal: undefined, private: undefined}) | |
64 | 66 … | //check this invite is valid. would throw if it wasn't. |
65 | 67 … | bob.peerInvites.acceptInvite(invite, function (err, confirm) { |
66 | 68 … | if(err) throw err |
67 | 69 … | t.equal(confirm.author, alice.id) |
@@ -81,5 +83,4 @@ | ||
81 | 83 … | }) |
82 | 84 … | }) |
83 | 85 … | }) |
84 | 86 … | }) |
85 | - |
test/accept4.js | |||
---|---|---|---|
@@ -50,13 +50,15 @@ | |||
50 | 50 … | ||
51 | 51 … | //use device address, just for tests | |
52 | 52 … | invite.pubs.push(alice.getAddress('device')) | |
53 | 53 … | ||
54 | - bob.peerInvites.openInvite(u.stringify(invite), function (err, invite_msg, data) { | ||
54 … | + bob.peerInvites.openInvite(u.stringify(invite), function (err, data) { | ||
55 | 55 … | if(err) throw err | |
56 … | + var invite_msg = data.value | ||
57 … | + var opened = data.opened | ||
56 | 58 … | t.ok(invite) | |
57 | 59 … | t.equal(toId(invite_msg), invite_id) | |
58 | - t.deepEqual(data, {reveal: undefined, private: undefined}) | ||
60 … | + t.deepEqual(opened, {reveal: undefined, private: undefined}) | ||
59 | 61 … | ||
60 | 62 … | //bob publishes accept_content manually. simulates that he crashed | |
61 | 63 … | //before causing confirm. | |
62 | 64 … | var accept_content = I.createAccept(invite_msg, seed, bob.id, caps) | |
@@ -82,8 +84,4 @@ | |||
82 | 84 … | }) | |
83 | 85 … | }) | |
84 | 86 … | }) | |
85 | 87 … | }) | |
86 | - | ||
87 | - | ||
88 | - | ||
89 | - |
test/accept5.js | ||
---|---|---|
@@ -49,14 +49,16 @@ | ||
49 | 49 … | var invite_id = invite.invite |
50 | 50 … | |
51 | 51 … | //use device address, just for tests |
52 | 52 … | invite.pubs.push(alice.getAddress('device')) |
53 … | + t.ok(invite) | |
53 | 54 … | |
54 | - bob.peerInvites.openInvite(u.stringify(invite), function (err, invite_msg, data) { | |
55 … | + bob.peerInvites.openInvite(u.stringify(invite), function (err, data) { | |
55 | 56 … | if(err) throw err |
56 | - t.ok(invite) | |
57 … | + var invite_msg = data.value | |
58 … | + var opened = data.opened | |
57 | 59 … | t.equal(toId(invite_msg), invite_id) |
58 | - t.deepEqual(data, {reveal: undefined, private: undefined}) | |
60 … | + t.deepEqual(opened, {reveal: undefined, private: undefined}) | |
59 | 61 … | |
60 | 62 … | //bob publishes accept_content manually. simulates that he crashed |
61 | 63 … | //before causing confirm. |
62 | 64 … | var accept_content = I.createAccept(invite_msg, seed, bob.id, caps) |
@@ -91,5 +93,4 @@ | ||
91 | 93 … | }) |
92 | 94 … | }) |
93 | 95 … | }) |
94 | 96 … | }) |
95 | - |
test/invite-with-pubs.js | ||
---|---|---|
@@ -112,11 +112,11 @@ | ||
112 | 112 … | alice.get(invite.invite, function (err, invite_msg) { |
113 | 113 … | if(err) throw err |
114 | 114 … | t.deepEqual(invite.pubs, [carol.getAddress('device')]) |
115 | 115 … | |
116 | - bob.peerInvites.openInvite(invite, function (err, _invite_msg) { | |
116 … | + bob.peerInvites.openInvite(invite, function (err, data) { | |
117 | 117 … | if(err) throw explain(err, 'error while opening invite') |
118 | - t.deepEqual(_invite_msg, invite_msg) | |
118 … | + t.deepEqual(data.value, invite_msg) | |
119 | 119 … | bob.peerInvites.acceptInvite(invite, function (err) { |
120 | 120 … | if(err) throw err |
121 | 121 … | t.end() |
122 | 122 … | }) |
@@ -135,7 +135,4 @@ | ||
135 | 135 … | bob.close() |
136 | 136 … | t.end() |
137 | 137 … | }, 1000) |
138 | 138 … | }) |
139 | - | |
140 | - | |
141 | - |
Built with git-ssb-web