Beispiel #1
0
 def test_no_port_http(self):
     self.assertEqual(extract_host_port('http://localhost/'),
                      ('localhost', 80, 'http'))
Beispiel #2
0
 def test_basic(self):
     self.assertEqual(extract_host_port('http://localhost:80/'),
                      ('localhost', 80, 'http'))
Beispiel #3
0
 def test_no_scheme(self):
     self.assertEqual(extract_host_port('//localhost/'),
                      ('localhost', 80, 'http'))
Beispiel #4
0
 def test_no_port_https(self):
     self.assertEqual(extract_host_port('https://localhost/'),
                      ('localhost', 443, 'https'))
Beispiel #5
0
 def test_no_port_https(self):
     self.assertEqual(extract_host_port('https://localhost/'),
         ('localhost', 443, 'https'))
Beispiel #6
0
 def test_no_port_http(self):
     self.assertEqual(extract_host_port('http://localhost/'),
         ('localhost', 80, 'http'))
Beispiel #7
0
 def test_no_scheme(self):
     self.assertEqual(extract_host_port('//localhost/'),
         ('localhost', 80, 'http'))
Beispiel #8
0
 def test_basic(self):
     self.assertEqual(extract_host_port('http://localhost:80/'),
         ('localhost', 80, 'http'))