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