Bug 666: Fix window_size overflow with Paramiko
This commit fixes integration testing around bug fixes in the sshproxy
layer that were causing a window_size overflow.
This also improves reliability around testing machine charms, by
verifying the sshd service is running inside the target machine (lxd)
before running tests.
Change-Id: I465d51521bf87b8e4b3dc5cac07c163fac836393
Signed-off-by: Adam Israel <adam.israel@canonical.com>
diff --git a/tests/integration/test_non_string_parameter.py b/tests/integration/test_non_string_parameter.py
index b93dfed..e15b790 100644
--- a/tests/integration/test_non_string_parameter.py
+++ b/tests/integration/test_non_string_parameter.py
@@ -13,9 +13,9 @@
NSD_YAML = """
nsd:nsd-catalog:
nsd:
- - id: charmnative-ns
- name: charmnative-ns
- short-name: charmnative-ns
+ - id: nonstring-ns
+ name: nonstring-ns
+ short-name: nonstring-ns
description: NS with 1 VNFs charmnative-vnf connected by datanet and mgmtnet VLs
version: '1.0'
logo: osm.png
@@ -143,5 +143,5 @@
print("Waiting for test to finish...")
await asyncio.sleep(15)
logging.debug("test_charm_non_string_parameter stopped")
-
+ # assert False
return 'ok'