blob: 1b132ac246d615a9d9ee31d41db04706916dbf92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import pytest
from viewstate import *
class TestViewState(object):
def test_blank(self):
vs = ViewState()
assert not vs.is_valid()
def test_is_valid(self):
with open('tests/samples/ngcs.sample', 'r') as f:
vs = ViewState(f.read())
assert vs.is_valid() is True
def test_invalid_base64(self):
with pytest.raises(ViewStateException):
vs = ViewState('hello')
def test_invalid_decode(self):
with pytest.raises(ViewStateException):
vs = ViewState()
vs.raw = b'\x01\x02'
vs.decode()
def test_parse_const_value(self):
vs = ViewState()
vs.raw = b'\xff\x01\x67'
assert vs.decode() is True
def test_parse_simple_pair(self):
vs = ViewState()
vs.raw = b'\xff\x01\x0f\x67\x68'
assert vs.decode() == (True, False)
def test_parse_complex_pair(self):
vs = ViewState()
vs.raw = b'\xff\x01\x0f\x67\x0f\x68\x66'
assert vs.decode() == (True, (False, 0))
vs.raw = b'\xff\x01\x0f\x0f\x67\x68\x66'
assert vs.decode() == ((True, False), 0)
def test_parse_unknown(self):
vs = ViewState()
vs.raw = b'\xff\x01\x99\x99\x99'
assert vs.decode() == b'\x99\x99\x99'
|