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