Mercurial > libervia-backend
annotate tests/e2e/libervia-cli/test_libervia-cli.py @ 3971:9b1d74a6b48c
tests (e2e/cli): add tests for JET:
rel 378
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 31 Oct 2022 04:09:38 +0100 |
parents | 2d9d0b77e82b |
children | 5e3b983ab2c6 |
rev | line source |
---|---|
3415 | 1 #!/usr/bin/env python3 |
2 | |
3480
7550ae9cfbac
Renamed the project from "Salut à Toi" to "Libervia":
Goffi <goffi@goffi.org>
parents:
3479
diff
changeset
|
3 # Libervia: an XMPP client |
3479 | 4 # Copyright (C) 2009-2021 Jérôme Poisson (goffi@goffi.org) |
3415 | 5 |
6 # This program is free software: you can redistribute it and/or modify | |
7 # it under the terms of the GNU Affero General Public License as published by | |
8 # the Free Software Foundation, either version 3 of the License, or | |
9 # (at your option) any later version. | |
10 | |
11 # This program is distributed in the hope that it will be useful, | |
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 # GNU Affero General Public License for more details. | |
15 | |
16 # You should have received a copy of the GNU Affero General Public License | |
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
18 | |
3962
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
19 import json |
3415 | 20 import os |
21 import shutil | |
3946
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
22 from time import sleep |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
23 |
3415 | 24 import sh |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
25 from sh import li |
3415 | 26 |
3962
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
27 import pytest |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
28 from sat.plugins.plugin_sec_oxps import NS_OXPS |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
29 from sat.plugins.plugin_xep_0277 import NS_ATOM |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
30 from sat.tools.common import uri |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
31 |
3415 | 32 |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
33 if os.getenv("LIBERVIA_TEST_ENV_E2E") is None: |
3415 | 34 pytest.skip( |
35 "skipping end-to-end tests, we are not in a test environment", | |
36 allow_module_level=True | |
37 ) | |
38 | |
39 | |
40 pytestmark = pytest.mark.usefixtures("test_profiles") | |
41 | |
42 | |
43 class TestInstall: | |
44 | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
45 def test_li_can_run(self): |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
46 li("--version") |
3415 | 47 |
48 | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
49 class TestLiberviaCliAccount: |
3415 | 50 |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
51 def test_create_and_delete(self, li_json): |
3415 | 52 """Create an account in-band, connect it, then delete it and its profile""" |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
53 li.account.create( |
3415 | 54 "test_create@server1.test", |
55 "test", | |
56 profile="test_create", | |
57 host="server1.test" | |
58 ) | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
59 profiles = li_json.profile.list() |
3415 | 60 assert "test_create" in profiles |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
61 li.profile.connect(connect=True, profile="test_create") |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
62 li.account.delete(profile="test_create", force=True) |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
63 li.profile.delete("test_create", force=True) |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
64 profiles = li_json.profile.list() |
3415 | 65 assert "test_create" not in profiles |
66 | |
67 | |
68 @pytest.mark.usefixtures("pubsub_nodes") | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
69 class TestLiberviaCliPubsub: |
3415 | 70 |
71 def test_node_create_info_delete(self): | |
72 node_name = "tmp_node" | |
73 with pytest.raises(sh.ErrorReturnCode_16): | |
74 # the node should not exist | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
75 li.pubsub.node.info(node=node_name) |
3415 | 76 try: |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
77 li.pubsub.node.create(node=node_name) |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
78 # if node exist as expected, following command won't raise an exception |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
79 metadata = li.pubsub.node.info(node=node_name) |
3415 | 80 assert len(metadata.strip()) |
81 finally: | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
82 li.pubsub.node.delete(node=node_name, force=True) |
3415 | 83 |
84 with pytest.raises(sh.ErrorReturnCode_16): | |
85 # the node should not exist anymore | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
86 li.pubsub.node.info(node=node_name) |
3415 | 87 |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
88 def test_set_get_delete_purge(self, li_elt): |
3415 | 89 content = "test item" |
90 payload = f"<test>{content}</test>" | |
91 | |
92 # we create 3 items and check them | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
93 item1_id = li.pubsub.set(node="test", quiet=True, _in=payload) |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
94 item2_id = li.pubsub.set(node="test", quiet=True, _in=payload) |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
95 item3_id = li.pubsub.set(node="test", quiet=True, _in=payload) |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
96 parsed_elt = li_elt.pubsub.get(node="test", item=item1_id) |
3415 | 97 payload = parsed_elt.firstChildElement() |
98 assert payload.name == 'test' | |
99 assert str(payload) == content | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
100 parsed_elt = li_elt.pubsub.get(node="test", item=item2_id) |
3415 | 101 payload = parsed_elt.firstChildElement() |
102 assert payload.name == 'test' | |
103 assert str(payload) == content | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
104 parsed_elt = li_elt.pubsub.get(node="test", item=item3_id) |
3415 | 105 payload = parsed_elt.firstChildElement() |
106 assert payload.name == 'test' | |
107 assert str(payload) == content | |
108 | |
109 # deleting first item should work | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
110 li.pubsub.delete(node="test", item=item1_id, force=True) |
3415 | 111 with pytest.raises(sh.ErrorReturnCode_16): |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
112 li.pubsub.get(node="test", item=item1_id) |
3415 | 113 |
114 # there must be a least item2 and item3 in the node | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
115 node_items = li_elt.pubsub.get(node="test") |
3415 | 116 assert len(list(node_items.elements())) >= 2 |
117 | |
118 # after purge, node must be empty | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
119 li.pubsub.node.purge(node="test", force=True) |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
120 node_items = li_elt.pubsub.get(node="test") |
3415 | 121 assert len(list(node_items.elements())) == 0 |
122 | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
123 def test_edit(self, editor, li_elt): |
3415 | 124 content = "original item" |
125 payload = f"<test>{content}</test>" | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
126 item_id = li.pubsub.set(node="test", quiet=True, _in=payload) |
3415 | 127 editor.set_filter('content.replace("original", "edited")') |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
128 li.pubsub.edit(node="test", item=item_id, _env=editor.env) |
3415 | 129 assert "original item" in editor.original_content |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
130 parsed_elt = li_elt.pubsub.get(node="test", item=item_id) |
3415 | 131 edited_payload = parsed_elt.firstChildElement() |
132 expected_edited_content = content.replace("original", "edited") | |
133 assert edited_payload.name == 'test' | |
134 assert str(edited_payload) == expected_edited_content | |
135 | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
136 def test_affiliations(self, li_json): |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
137 affiliations = li_json.pubsub.affiliations() |
3415 | 138 assert affiliations["test"] == "owner" |
139 | |
140 def test_uri(self): | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
141 built_uri = li.pubsub.uri( |
3415 | 142 service="pubsub.example.net", node="some_node" |
143 ).strip() | |
144 assert built_uri == "xmpp:pubsub.example.net?;node=some_node" | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
145 built_uri = li.pubsub.uri( |
3415 | 146 service="pubsub.example.net", node="some_node", item="some_item" |
147 ).strip() | |
148 assert built_uri == "xmpp:pubsub.example.net?;node=some_node;item=some_item" | |
149 | |
3674
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
150 def test_cache_search(self, li_json): |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
151 """A Full-Text Search query can be done""" |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
152 sk_txt = "this is a blog post about Slovakia" |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
153 fr_txt = "this is a blog post about France" |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
154 nc_txt = "this is a blog post about New Caledonia" |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
155 au_txt = "this is a blog post about Australia" |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
156 li.blog.set( |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
157 "-t", "travel", "-t", "europe", |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
158 _in=sk_txt, |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
159 syntax="markdown" |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
160 ) |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
161 li.blog.set( |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
162 "-t", "travel", "-t", "europe", |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
163 _in=fr_txt, |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
164 syntax="markdown" |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
165 ) |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
166 li.blog.set( |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
167 "-t", "travel", "-t", "south pacific", |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
168 _in=nc_txt, |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
169 syntax="markdown" |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
170 ) |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
171 li.blog.set( |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
172 "-t", "travel", "-t", "south pacific", |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
173 _in="this is a blog post about Australia", |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
174 title=au_txt, |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
175 syntax="markdown" |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
176 ) |
3769
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
177 # we get the blog to activate the cache for it |
3674
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
178 li.blog.get(max_items=1) |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
179 # FTS |
3769
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
180 found = [] |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
181 for __ in range(5): |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
182 found = li_json.pubsub.cache.search( |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
183 type="blog", fts='Slovakia OR "New Caledonia"' |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
184 ) |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
185 if found: |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
186 break |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
187 else: |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
188 # retrieving blog triggers the caching, but it's done in parallel |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
189 # thus we may have nothing in cache yet |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
190 sleep(0.5) |
3674
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
191 assert len(found) == 2 |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
192 assert all(i["content"] in (sk_txt, nc_txt) for i in found) |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
193 # search by field |
3769
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
194 found = li_json.pubsub.cache.search( |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
195 "-F", "tags", "overlap", "travel", type="blog" |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
196 ) |
3674
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
197 assert len(found) == 4 |
3769
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
198 found = li_json.pubsub.cache.search( |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
199 "-F", "tags", "overlap", "europe", type="blog" |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
200 ) |
3674
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
201 assert len(found) == 2 |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
202 assert all(i["content"] in (sk_txt, fr_txt) for i in found) |
3769
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
203 found = li_json.pubsub.cache.search( |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
204 "-F", "tags", "ioverlap", "SOUTH PACIFIC", type="blog" |
a75874df92b8
tests (e2e/cli/cache_search): make the test more resilient:
Goffi <goffi@goffi.org>
parents:
3731
diff
changeset
|
205 ) |
3674
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
206 assert all(i["content"] in (nc_txt, au_txt) for i in found) |
eeb8be32d644
tests (e2e/CLI): tests for Pubsub Cache Search
Goffi <goffi@goffi.org>
parents:
3658
diff
changeset
|
207 |
3415 | 208 |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
209 class TestLiberviaCliBlog: |
3415 | 210 MICROBLOG_NS = "urn:xmpp:microblog:0" |
211 | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
212 def test_set_get(self, li_json): |
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
213 li.blog.set(_in="markdown **bold** [link](https://example.net)") |
3731
7e51cfc36d4e
tests (e2e/CLI/set_get): fix RSM request:
Goffi <goffi@goffi.org>
parents:
3674
diff
changeset
|
214 item_data = li_json.blog.get(max=1, before="") |
3415 | 215 item = item_data[0][0] |
216 metadata = item_data[1] | |
217 assert metadata['service'] == "account1@server1.test" | |
218 assert metadata['node'] == self.MICROBLOG_NS | |
219 assert metadata['rsm'].keys() <= {"first", "last", "index", "count"} | |
220 item_id = item['id'] | |
221 expected_uri = uri.buildXMPPUri( | |
222 'pubsub', subtype="microblog", path="account1@server1.test", | |
223 node=self.MICROBLOG_NS, item=item_id | |
224 ) | |
225 assert item['uri'] == expected_uri | |
226 assert item['content_xhtml'] == ( | |
227 '<div><p>markdown <strong>bold</strong> ' | |
228 '<a href="https://example.net">link</a></p></div>' | |
229 ) | |
230 assert isinstance(item['published'], int) | |
231 assert isinstance(item['updated'], int) | |
232 assert isinstance(item['comments'], list) | |
233 assert isinstance(item['tags'], list) | |
234 assert item['author'] == 'account1' | |
235 assert item['author_jid'] == 'account1@server1.test' | |
236 | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
237 def test_edit(self, editor, li_json): |
3415 | 238 payload_md = "content in **markdown**" |
239 editor.set_filter(repr(payload_md)) | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
240 li.blog.edit(_env=editor.env) |
3415 | 241 assert len(editor.original_content) == 0 |
242 assert editor.new_content == payload_md | |
3658
9e491b2bab88
test (e2e/cli): use `max_items` instead of `max` when retrieving blog items:
Goffi <goffi@goffi.org>
parents:
3498
diff
changeset
|
243 items_data = li_json.blog.get(max_items=1) |
3415 | 244 last_item = items_data[0][0] |
245 last_item_id = last_item['id'] | |
246 assert last_item['content'] == "content in markdown" | |
247 assert last_item['content_xhtml'] == ( | |
248 "<div><p>content in <strong>markdown</strong></p></div>" | |
249 ) | |
250 editor.set_filter('f"{content} extended"') | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
251 li.blog.edit("--last-item", _env=editor.env) |
3415 | 252 assert editor.original_content == payload_md |
253 assert editor.new_content == f"{payload_md} extended" | |
3658
9e491b2bab88
test (e2e/cli): use `max_items` instead of `max` when retrieving blog items:
Goffi <goffi@goffi.org>
parents:
3498
diff
changeset
|
254 items_data = li_json.blog.get(max_items=1) |
3415 | 255 last_item = items_data[0][0] |
256 # we check that the id hasn't been modified | |
257 assert last_item['id'] == last_item_id | |
258 assert last_item['content'] == "content in markdown extended" | |
259 assert last_item['content_xhtml'] == ( | |
260 "<div><p>content in <strong>markdown</strong> extended</p></div>" | |
261 ) | |
262 | |
263 | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
264 class TestLiberviaCliFile: |
3415 | 265 |
266 def test_upload_get(self, fake_file): | |
267 source_file = fake_file.size(10240) | |
268 source_file_hash = fake_file.get_source_hash(source_file) | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
269 upload_url = li.file.upload(source_file).strip() |
3415 | 270 |
271 dest_file = fake_file.new_dest_file() | |
272 try: | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
273 li.file.get(upload_url, dest_file=dest_file) |
3415 | 274 dest_file_hash = fake_file.get_dest_hash(dest_file) |
275 finally: | |
276 dest_file.unlink() | |
277 | |
278 assert source_file_hash == dest_file_hash | |
279 | |
280 def test_send_receive(self, fake_file): | |
281 source_file = fake_file.size(10240) | |
282 source_file_hash = fake_file.get_source_hash(source_file) | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
283 send_cmd = li.file.send(source_file, "account1@server2.test", _bg=True) |
3415 | 284 dest_path = fake_file.dest_files / "test_send_receive" |
285 dest_path.mkdir() | |
286 try: | |
3498
d78b5eae912a
tests: update following names change
Goffi <goffi@goffi.org>
parents:
3480
diff
changeset
|
287 li.file.receive( |
3415 | 288 "account1@server1.test", profile="account1_s2", path=dest_path) |
289 dest_file = dest_path / source_file.name | |
290 dest_file_hash = fake_file.get_dest_hash(dest_file) | |
291 finally: | |
292 shutil.rmtree(dest_path) | |
293 send_cmd.wait() | |
294 | |
295 assert source_file_hash == dest_file_hash | |
3946
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
296 |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
297 |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
298 class TestE2EEncryption: |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
299 |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
300 def test_pubsub_encryption_oxps(self, li_elt): |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
301 secret_blog = "this is a secret blog post" |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
302 node = "e2ee_blog" |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
303 li.blog.set(_in=secret_blog, node="e2ee_blog", item="test_e2ee", encrypt=True) |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
304 |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
305 # the item should be transparently decrypted |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
306 parsed_decrypted = li_elt.pubsub.get( |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
307 node=node, item="test_e2ee", no_cache=True |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
308 ) |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
309 entry_elt = parsed_decrypted.firstChildElement() |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
310 assert entry_elt.name == "entry" |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
311 assert entry_elt.uri == NS_ATOM |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
312 assert secret_blog in parsed_decrypted.toXml() |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
313 |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
314 # with --no-decrypt, we should have the encrypted item |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
315 parsed_ori_item = li_elt.pubsub.get( |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
316 node=node, item="test_e2ee", no_decrypt=True, no_cache=True |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
317 ) |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
318 encrypted_elt = parsed_ori_item.firstChildElement() |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
319 assert encrypted_elt.name == "encrypted" |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
320 assert encrypted_elt.uri == NS_OXPS |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
321 # the body must not be readable in plain text |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
322 assert secret_blog not in parsed_ori_item.toXml() |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
323 |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
324 def test_pubsub_secrets_sharing_oxps(self, li_elt): |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
325 secret_blog = "this is a secret blog post" |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
326 node="secret_sharing" |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
327 |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
328 li.blog.set(_in=secret_blog, node=node, item="test_e2ee", encrypt=True) |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
329 |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
330 # the item must not be decrypted for account1_s2 (secret is not known) |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
331 parsed_item = li_elt.pubsub.get( |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
332 service="account1@server1.test", node=node, item="test_e2ee", no_cache=True, |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
333 profile="account1_s2" |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
334 ) |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
335 encrypted_elt = parsed_item.firstChildElement() |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
336 assert encrypted_elt.name == "encrypted" |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
337 assert encrypted_elt.uri == NS_OXPS |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
338 # the body must not be readable in plain text |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
339 assert secret_blog not in parsed_item.toXml() |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
340 |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
341 # we share the secrets |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
342 li.pubsub.secret.share("account1@server2.test", service="account1@server1.test", node=node) |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
343 |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
344 # and get the item again |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
345 parsed_item = li_elt.pubsub.get( |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
346 service="account1@server1.test", node=node, item="test_e2ee", no_cache=True, |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
347 profile="account1_s2" |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
348 ) |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
349 # now it should be decrypted |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
350 entry_elt = parsed_item.firstChildElement() |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
351 assert entry_elt.name == "entry" |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
352 assert entry_elt.uri == NS_ATOM |
f2a5936f2496
tests (e2e/cli): add test for pubsub encryption:
Goffi <goffi@goffi.org>
parents:
3769
diff
changeset
|
353 assert secret_blog in parsed_item.toXml() |
3962
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
354 |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
355 def test_pubsub_signature(self, li_json): |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
356 """A pubsub item can be signed, and the signature can be verified""" |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
357 body = "this message is signed" |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
358 service="account1@server1.test" |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
359 node ="blog_signing" |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
360 item="signed_item" |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
361 li.blog.set(_in=body, service=service, node=node, item=item, sign=True) |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
362 attachments = li_json.pubsub.attachments.get( |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
363 service=service, node=node, item=item |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
364 ) |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
365 assert len(attachments) == 1 |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
366 attachment = attachments[0] |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
367 assert attachment["from"] == "account1@server1.test" |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
368 signature_json = attachment["signature"] |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
369 sign_data = li_json.pubsub.signature.check( |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
370 json.dumps(signature_json), service=service, node=node, item=item, |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
371 ) |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
372 assert sign_data["signer"] == "account1@server1.test" |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
373 assert sign_data["validated"] == True |
2d9d0b77e82b
tests (e2e/cli): add a test for Pubsub Signing:
Goffi <goffi@goffi.org>
parents:
3946
diff
changeset
|
374 assert all(t == "undecided" for t in sign_data["trusts"].values()) |
3971
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
375 |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
376 def test_jingle_encrypted_transport_jet(self, fake_file): |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
377 """A file is sent and received properly with JET OMEMO""" |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
378 li.encryption.start("account1@server2.test", name="oldmemo") |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
379 source_file = fake_file.size(10240) |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
380 source_file_hash = fake_file.get_source_hash(source_file) |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
381 send_cmd = li.file.send( |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
382 source_file, "account1@server2.test", encrypt=True, _bg=True |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
383 ) |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
384 dest_path = fake_file.dest_files / "test_send_receive" |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
385 dest_path.mkdir() |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
386 try: |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
387 li.file.receive( |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
388 "account1@server1.test", profile="account1_s2", path=dest_path) |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
389 dest_file = dest_path / source_file.name |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
390 dest_file_hash = fake_file.get_dest_hash(dest_file) |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
391 finally: |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
392 shutil.rmtree(dest_path) |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
393 send_cmd.wait() |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
394 |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
395 assert source_file_hash == dest_file_hash |
9b1d74a6b48c
tests (e2e/cli): add tests for JET:
Goffi <goffi@goffi.org>
parents:
3962
diff
changeset
|
396 li.encryption.stop("account1@server2.test") |