Ejemplo n.º 1
0
 def test_to_python_not_str(self):
     field = BytesField(name='asdf')
     with pytest.raises(ValueError):
         field.to_python(MockConfig(), 100)
Ejemplo n.º 2
0
 def test_to_basic_hex(self):
     field = BytesField('hex')
     assert field.to_basic(MockConfig(), b'hello') == b'hello'.hex()
Ejemplo n.º 3
0
 def test_to_python_none(self):
     field = BytesField()
     assert field.to_python(MockConfig(), None) is None
Ejemplo n.º 4
0
 def test_to_basic_none(self):
     field = BytesField(name='asdf')
     field.to_basic(MockConfig(), None) is None
Ejemplo n.º 5
0
 def test_to_basic_base64(self):
     field = BytesField('base64')
     assert field.to_basic(MockConfig(), b'hello') == base64.b64encode(b'hello').decode()
Ejemplo n.º 6
0
 def test_to_python_hex_invalid(self):
     field = BytesField('hex')
     with pytest.raises(ValueError):
         field.to_python(MockConfig(), 'hello')
Ejemplo n.º 7
0
 def test_to_basic_none(self):
     field = BytesField(name='asdf')
     field.to_basic(None, None) is None
Ejemplo n.º 8
0
 def test_init_invalid_encoding(self):
     with pytest.raises(TypeError):
         BytesField('asdf')
Ejemplo n.º 9
0
 def test_validate_str(self):
     field = BytesField()
     field._validate(MockConfig(), 'hello') == b'hello'
Ejemplo n.º 10
0
 def test_to_python_base64_invalid(self):
     field = BytesField('base64')
     with pytest.raises(ValueError):
         field.to_python(None, 'hello')
Ejemplo n.º 11
0
 def test_init_valid_encoding(self):
     field = BytesField('hex')
     assert field.encoding == 'hex'
Ejemplo n.º 12
0
 def test_to_python_none(self):
     field = BytesField()
     assert field.to_python(None, None) is None
Ejemplo n.º 13
0
 def test_to_basic_invalid(self):
     field = BytesField(name='asdf')
     field.encoding = 'adsf'
     with pytest.raises(TypeError):
         field.to_basic(None, 'asdf')
Ejemplo n.º 14
0
 def test_to_basic_hex(self):
     field = BytesField('hex')
     assert field.to_basic(None, b'hello') == b'hello'.hex()
Ejemplo n.º 15
0
 def test_to_python_base64_valid(self):
     field = BytesField('base64')
     assert field.to_python(MockConfig(), base64.b64encode(b'hello').decode()) == b'hello'
Ejemplo n.º 16
0
 def test_validate_bytes(self):
     field = BytesField()
     assert field._validate(None, b'hello') == b'hello'
Ejemplo n.º 17
0
 def test_to_python_hex_valid(self):
     field = BytesField('hex')
     assert field.to_python(MockConfig(), 'deadbeef') == b'\xde\xad\xbe\xef'
Ejemplo n.º 18
0
 def test_validate_invalid_type(self):
     field = BytesField(name='asdf')
     with pytest.raises(ValueError):
         field._validate(MockConfig(), 100)
Ejemplo n.º 19
0
 def test_to_python_invalid(self):
     field = BytesField(name='asdf')
     field.encoding = 'adsf'
     with pytest.raises(TypeError):
         field.to_python(MockConfig(), 'asdf')
Ejemplo n.º 20
0
 def test_validate_str(self):
     field = BytesField()
     field._validate(None, 'hello') == b'hello'