diff options
author | Christopher Baines <cb15g11@soton.ac.uk> | 2014-03-03 15:56:46 +0000 |
---|---|---|
committer | Christopher Baines <cb15g11@soton.ac.uk> | 2014-03-03 15:56:46 +0000 |
commit | ce9b5b34c98922edcda748ac02850609a058d923 (patch) | |
tree | c592a7b54198867da33aaf8b8342ea705331b81c /networks/hidden-service | |
parent | a1154731c83395f28c87a251de17d039f53eda7e (diff) | |
download | chutney-ce9b5b34c98922edcda748ac02850609a058d923.tar chutney-ce9b5b34c98922edcda748ac02850609a058d923.tar.gz |
Testing now works
Diffstat (limited to 'networks/hidden-service')
-rw-r--r-- | networks/hidden-service | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/networks/hidden-service b/networks/hidden-service index d45954c..e25a224 100644 --- a/networks/hidden-service +++ b/networks/hidden-service @@ -61,17 +61,23 @@ def start_test(): reactor.stop() print("stopped the reactor") - responses = {"1": 0, "2": 0} + def test(): + print("connecting to clients") + responses = {"1": 0, "2": 0} - def done(response): - print("code %s" % response.code) + for c in Client: + result = c.query("http://2oiifbe3wne4iaqb.onion/"); - if response.code == 200: - content = yield treq.content(resp) - responses[site]++ + responses[result] += 1 - get("http://127.0.0.1:8081/").addCallback(done) + print(result) + print(responses) + cleanup() + + thread.start_new_thread(test, ()) + + print("running reactor") reactor.run(installSignalHandlers=0) def start(): |