示例#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'))