Ejemplo n.º 1
0
 def test_add_header(self):
     d = HeaderCollection()
     d.add('CONTENT_TYPE', 'text/html')
     d.add('HOST', '127.0.0.1')
     assert d.get('Content-Type') == 'text/html'
     assert d.get('CONTENT_TYPE') == 'text/html'
Ejemplo n.º 2
0
 def test_add_overwrite_header(self):
     d = HeaderCollection()
     d.add('CONTENT_TYPE', 'text/html', charset='utf-8')
     assert len(d) == 1
     d.add('CONTENT_TYPE', 'text/plain', charset='utf-8', replace=True)
     assert len(d) == 1
Ejemplo n.º 3
0
 def test_tuple_pairs_multiple(self):
     d = HeaderCollection()
     d.add('Content-Type', 'text/html')
     d.add('Content-Type', 'text/xml')
     assert ('Content-Type', 'text/html') in d()
     assert ('Content-Type', 'text/xml') in d()
Ejemplo n.º 4
0
 def test_add_option(self):
     d = HeaderCollection()
     d.add('CONTENT_TYPE', 'text/html', charset='utf-8')
     assert d.get('Content-Type') == 'text/html; charset=utf-8'
     assert d.get_option('Content-Type', 'charset') == 'utf-8'
     assert d.get_option('Content-Type', 'random', 'test') == 'test'