[tor-commits] [bridgedb/master] Remove unused code from test/legacy_Tests.py.

isis at torproject.org isis at torproject.org
Sat Jul 25 19:26:20 UTC 2015


commit 3ec9dfb50d37f71b8d77e5b106c07cbc2bd397d2
Author: Isis Lovecruft <isis at torproject.org>
Date:   Tue Apr 14 09:36:49 2015 +0000

    Remove unused code from test/legacy_Tests.py.
---
 lib/bridgedb/test/legacy_Tests.py |   48 +------------------------------------
 1 file changed, 1 insertion(+), 47 deletions(-)

diff --git a/lib/bridgedb/test/legacy_Tests.py b/lib/bridgedb/test/legacy_Tests.py
index bdea142..0d2512c 100644
--- a/lib/bridgedb/test/legacy_Tests.py
+++ b/lib/bridgedb/test/legacy_Tests.py
@@ -11,7 +11,6 @@ from __future__ import print_function
 
 import os
 import random
-import sqlite3
 import tempfile
 import unittest
 import warnings
@@ -48,11 +47,6 @@ from math import log
 def suppressWarnings():
     warnings.filterwarnings('ignore', '.*tmpnam.*')
 
-def random16IP():
-    upper = "123.123." # same 16
-    lower = ".".join([str(random.randrange(1,256)) for _ in xrange(2)]) 
-    return upper+lower
-
 def randomPort():
     return random.randint(1,65535)
 
@@ -66,23 +60,6 @@ def randomPortSpec():
     portspec = ",".join(["%d" % random.choice(ports) for i in range(0,16)])
     return portspec
 
-def randomCountry():
-    countries = ['us', 'nl', 'de', 'cz', 'sk', 'as', 'si', 'it']
-    #XXX: load from geoip
-    return random.choice(countries)
-
-def randomCountrySpec():
-    countries = ['us', 'nl', 'de', 'cz', 'sk', 'as', 'si', 'it']
-    #XXX: load from geoip
-    spec = ""
-    choices = []
-    for i in xrange(10):
-        choices.append(random.choice(countries))
-    choices = set(choices) #dedupe
-    choices = list(choices)
-    spec += ",".join(choices)
-    return spec
-
 def fakeBridge(orport=8080, running=True, stable=True, or_addresses=False,
         transports=False):
     nn = "bridge-%s"%random.randrange(0,1000000)
@@ -160,21 +137,11 @@ def fakeBridge6(orport=8080, running=True, stable=True, or_addresses=False,
 
     return b
 
-def fake16Bridge(orport=8080, running=True, stable=True):
-    nn = "bridge-%s"%random.randrange(0,1000000)
-    ip = random16IP()
-    fp = "".join([random.choice("0123456789ABCDEF") for _ in xrange(40)])
-    b = bridgedb.Bridges.Bridge(nn,ip,orport,fingerprint=fp)
-    b.setStatus(running, stable)
-    return b
-
 simpleDesc = "router Unnamed %s %s 0 9030\n"\
 "opt fingerprint DEAD BEEF F00F DEAD BEEF F00F DEAD BEEF F00F DEAD\n"\
 "opt @purpose bridge\n"
 orAddress = "or-address %s:%s\n"
-def gettimestamp():
-    ts = time.strftime("%Y-%m-%d %H:%M:%S")
-    return "opt published %s\n" % ts
+
 
 class RhymesWith255Category:
     def contains(self, ip):
@@ -272,19 +239,6 @@ class IPBridgeDistTests(unittest.TestCase):
     #        self.assertEquals(len(fps), 5)
     #        self.assertTrue(count >= 1)
 
-    #def testDistWithFilter16(self):
-    #    d = bridgedb.Dist.IPBasedDistributor(self.dumbAreaMapper, 3, "Foo")
-    #    for _ in xrange(256):
-    #        d.insert(fake16Bridge())
-    #    n = d.getBridgesForIP("1.2.3.4", "x", 10)
-
-    #    slash16s = dict()
-    #    for bridge in n:
-    #        m = re.match(r'(\d+\.\d+)\.\d+\.\d+', bridge.ip)
-    #        upper16 = m.group(1)
-    #        self.assertTrue(upper16 not in slash16s)
-    #        slash16s[upper16] = True
-
     def testDistWithFilterIP6(self):
         d = bridgedb.Dist.IPBasedDistributor(self.dumbAreaMapper, 3, "Foo")
         for _ in xrange(250):





More information about the tor-commits mailing list