Example #1
0
 def test_incr(self):
     element = Counter(variable_name="var", incr=2)
     rendered_doc = tag_wrapper(element.to_xml(), 'result')
     parsed_doc = xmltodict.parse(rendered_doc)
     for tag in parsed_doc['result']['CounterConfig']['stringProp']:
         if tag['@name'] == 'CounterConfig.incr':
             assert tag['#text'] == '2'
Example #2
0
    def test_reset(self):
        element = Counter(variable_name="var",
                          per_user=True,
                          reset_on_tg_iteration=True)
        rendered_doc = tag_wrapper(element.to_xml(), 'result')
        parsed_doc = xmltodict.parse(rendered_doc)

        for tag in parsed_doc['result']['CounterConfig']['boolProp']:
            if tag['@name'] == 'CounterConfig.reset_on_tg_iteration':
                assert tag['#text'] == 'true'
Example #3
0
 def test_positive(self):
     Counter(variable_name="var",
             per_user=True,
             reset_on_tg_iteration=True)
Example #4
0
 def test_type_check(self):
     with pytest.raises(TypeError):
         Counter(variable_name=123)
Example #5
0
 def test_type_check1(self):
     with pytest.raises(TypeError):
         Counter(variable_name="var",
                 per_user=True,
                 reset_on_tg_iteration="True")
Example #6
0
 def test_type_check(self):
     with pytest.raises(ValueError):
         Counter(variable_name="var", reset_on_tg_iteration=True)
Example #7
0
 def test_positive(self):
     Counter(variable_name="var", per_user=True)
Example #8
0
 def test_type_check1(self):
     with pytest.raises(TypeError):
         Counter(variable_name="var", per_user=1)
Example #9
0
 def test_positive(self):
     Counter(variable_name="var", incr=10)
Example #10
0
 def test_type_check(self):
     with pytest.raises(TypeError):
         Counter(variable_name="var", incr="1")
Example #11
0
 def test_positive(self):
     Counter(variable_name="var", end=1)
Example #12
0
 def test_type_check2(self):
     with pytest.raises(ValueError):
         Counter(variable_name="var", start=2, end=1)
Example #13
0
 def test_type_check1(self):
     with pytest.raises(TypeError):
         Counter(variable_name="var", start=-1)
Example #14
0
 def test_positive(self):
     Counter(variable_name="var", format_="user")
Example #15
0
 def test_hashtree_contain(self):
     element = Counter(variable_name="var")
     rendered_doc = tag_wrapper(element.to_xml(), 'result')
     assert '<hashTree />' in rendered_doc
Example #16
0
 def test_per_user(self):
     element = Counter(variable_name="var", per_user=True)
     rendered_doc = tag_wrapper(element.to_xml(), 'result')
     parsed_doc = xmltodict.parse(rendered_doc)
     assert parsed_doc['result']['CounterConfig']['boolProp'][
         '#text'] == 'true'