aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/test/tools/bench.py
diff options
context:
space:
mode:
Diffstat (limited to 'mitmproxy/test/tools/bench.py')
-rw-r--r--mitmproxy/test/tools/bench.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/mitmproxy/test/tools/bench.py b/mitmproxy/test/tools/bench.py
new file mode 100644
index 00000000..8127d083
--- /dev/null
+++ b/mitmproxy/test/tools/bench.py
@@ -0,0 +1,24 @@
+from __future__ import print_function
+import requests
+import time
+
+n = 100
+url = "http://192.168.1.1/"
+proxy = "http://192.168.1.115:8080/"
+
+start = time.time()
+for _ in range(n):
+ requests.get(url, allow_redirects=False, proxies=dict(http=proxy))
+ print(".", end="")
+t_mitmproxy = time.time() - start
+
+print("\r\nTotal time with mitmproxy: {}".format(t_mitmproxy))
+
+
+start = time.time()
+for _ in range(n):
+ requests.get(url, allow_redirects=False)
+ print(".", end="")
+t_without = time.time() - start
+
+print("\r\nTotal time without mitmproxy: {}".format(t_without))