aboutsummaryrefslogtreecommitdiff
path: root/src/integration-tests/test_integration_clique_nat.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/integration-tests/test_integration_clique_nat.py.in')
-rwxr-xr-xsrc/integration-tests/test_integration_clique_nat.py.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/integration-tests/test_integration_clique_nat.py.in b/src/integration-tests/test_integration_clique_nat.py.in
index 82d85f530..59d117949 100755
--- a/src/integration-tests/test_integration_clique_nat.py.in
+++ b/src/integration-tests/test_integration_clique_nat.py.in
@@ -73,7 +73,7 @@ def check_disconnect_client ():
73 73
74 check.add (StatisticsCondition (client2, 'transport', '# peers connected',0)) 74 check.add (StatisticsCondition (client2, 'transport', '# peers connected',0))
75 check.add (StatisticsCondition (client2, 'core', '# neighbour entries allocated',0)) 75 check.add (StatisticsCondition (client2, 'core', '# neighbour entries allocated',0))
76 check.add (StatisticsCondition (client2, 'core', '# entries in session map',0)) 76 check.add (StatisticsCondition (client2, 'core', '# peers connected',0))
77 check.add (StatisticsCondition (client2, 'topology', '# peers connected',0)) 77 check.add (StatisticsCondition (client2, 'topology', '# peers connected',0))
78 check.add (StatisticsCondition (client2, 'fs', '# peers connected',0)) 78 check.add (StatisticsCondition (client2, 'fs', '# peers connected',0))
79 79
@@ -96,13 +96,13 @@ def check_disconnect_server ():
96 check = Check (test) 96 check = Check (test)
97 check.add (StatisticsCondition (client, 'transport', '# peers connected',1)) 97 check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
98 check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1)) 98 check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))
99 check.add (StatisticsCondition (client, 'core', '# entries in session map',1)) 99 check.add (StatisticsCondition (client, 'core', '# peers connected',1))
100 check.add (StatisticsCondition (client, 'topology', '# peers connected',1)) 100 check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
101 check.add (StatisticsCondition (client, 'fs', '# peers connected',1)) 101 check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
102 102
103 check.add (StatisticsCondition (client2, 'transport', '# peers connected',1)) 103 check.add (StatisticsCondition (client2, 'transport', '# peers connected',1))
104 check.add (StatisticsCondition (client2, 'core', '# neighbour entries allocated',1)) 104 check.add (StatisticsCondition (client2, 'core', '# neighbour entries allocated',1))
105 check.add (StatisticsCondition (client2, 'core', '# entries in session map',1)) 105 check.add (StatisticsCondition (client2, 'core', '# peers connected',1))
106 check.add (StatisticsCondition (client2, 'topology', '# peers connected',1)) 106 check.add (StatisticsCondition (client2, 'topology', '# peers connected',1))
107 check.add (StatisticsCondition (client2, 'fs', '# peers connected',1)) 107 check.add (StatisticsCondition (client2, 'fs', '# peers connected',1))
108 108
@@ -123,19 +123,19 @@ def check_connect ():
123 check = Check (test) 123 check = Check (test)
124 check.add (StatisticsCondition (client, 'transport', '# peers connected',2)) 124 check.add (StatisticsCondition (client, 'transport', '# peers connected',2))
125 check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',2)) 125 check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',2))
126 check.add (StatisticsCondition (client, 'core', '# entries in session map',2)) 126 check.add (StatisticsCondition (client, 'core', '# peers connected',2))
127 check.add (StatisticsCondition (client, 'topology', '# peers connected',2)) 127 check.add (StatisticsCondition (client, 'topology', '# peers connected',2))
128 check.add (StatisticsCondition (client, 'fs', '# peers connected',2)) 128 check.add (StatisticsCondition (client, 'fs', '# peers connected',2))
129 129
130 check.add (StatisticsCondition (client2, 'transport', '# peers connected',2)) 130 check.add (StatisticsCondition (client2, 'transport', '# peers connected',2))
131 check.add (StatisticsCondition (client2, 'core', '# neighbour entries allocated',2)) 131 check.add (StatisticsCondition (client2, 'core', '# neighbour entries allocated',2))
132 check.add (StatisticsCondition (client2, 'core', '# entries in session map',2)) 132 check.add (StatisticsCondition (client2, 'core', '# peers connected',2))
133 check.add (StatisticsCondition (client2, 'topology', '# peers connected',2)) 133 check.add (StatisticsCondition (client2, 'topology', '# peers connected',2))
134 check.add (StatisticsCondition (client2, 'fs', '# peers connected',2)) 134 check.add (StatisticsCondition (client2, 'fs', '# peers connected',2))
135 135
136 check.add (StatisticsCondition (server, 'transport', '# peers connected',2)) 136 check.add (StatisticsCondition (server, 'transport', '# peers connected',2))
137 check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',2)) 137 check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',2))
138 check.add (StatisticsCondition (server, 'core', '# entries in session map',2)) 138 check.add (StatisticsCondition (server, 'core', '# peers connected',2))
139 check.add (StatisticsCondition (server, 'topology', '# peers connected',2)) 139 check.add (StatisticsCondition (server, 'topology', '# peers connected',2))
140 check.add (StatisticsCondition (server, 'fs', '# peers connected',2)) 140 check.add (StatisticsCondition (server, 'fs', '# peers connected',2))
141 141