Esempio n. 1
0
def test_jinja2_unknown_attr():
    with pytest.raises(voluptuous.Invalid) as x:
        types.Jinja2("{{foo}}")
    assert str(x.value) == "Template syntax error"
    assert str(x.value.error_message) == "Unknown pull request attribute: foo"

    with pytest.raises(voluptuous.Invalid) as x:
        types.Jinja2WithNone("{{foo}}")
    assert str(x.value) == "Template syntax error"
    assert str(x.value.error_message) == "Unknown pull request attribute: foo"
Esempio n. 2
0
def test_jinja2_invalid():
    with pytest.raises(voluptuous.Invalid) as x:
        types.Jinja2("{{foo")
    assert str(x.value) == "Template syntax error @ data[line 1]"
    assert (str(x.value.error_message) ==
            "unexpected end of template, expected 'end of print statement'.")

    with pytest.raises(voluptuous.Invalid) as x:
        types.Jinja2WithNone("{{foo")
    assert str(x.value) == "Template syntax error @ data[line 1]"
    assert (str(x.value.error_message) ==
            "unexpected end of template, expected 'end of print statement'.")
Esempio n. 3
0
def test_jinja2_custom_attr():
    s = "{{ role_status }}"

    assert types.Jinja2(s, {"role_status": "passed"}) == s

    assert types.Jinja2WithNone(s, {"role_status": "passed"}) == s
Esempio n. 4
0
def test_jinja2_None():
    with pytest.raises(voluptuous.Invalid) as x:
        types.Jinja2(None)
    assert str(x.value) == "Template cannot be null"

    assert types.Jinja2WithNone(None) is None
Esempio n. 5
0
def test_jinja2_valid(s):
    assert types.Jinja2(s) == s

    assert types.Jinja2WithNone(s) == s
Esempio n. 6
0
def test_jinja2_not_str():
    with pytest.raises(voluptuous.Invalid) as x:
        types.Jinja2({"title": None})
    assert str(x.value) == "Template must be a string"

    assert types.Jinja2WithNone(None) is None