Exemple #1
0
def test_v2_not_allowed():
    with pytest.raises(Includes.NotAllowed):
        Consumer("C").has_pact_with(
            Provider("P"),
            version="2.0.0").given("g").upon_receiving("r").with_request(
                "post", "/foo", body=Includes("bee",
                                              "been")).will_respond_with(200)
Exemple #2
0
def test_basic_type():
    assert Includes("spam", "sample data").generate_matching_rule_v3() == {
        "matchers": [{
            "match": "include",
            "value": "spam"
        }]
    }
Exemple #3
0
def test_mock_usage_fail_validation():
    pact = Consumer('C').has_pact_with(Provider('P'), version='3.0.0') \
        .given("g").upon_receiving("r").with_request("post", "/foo", body=Like({"a": "spam",
                                                                                "b": Includes("bee", 'been')})) \
        .will_respond_with(200)

    with pytest.raises(AssertionError), pact:
        requests.post(pact.uri + '/foo', json={"a": "ham", "b": "wasp"})
Exemple #4
0
def test_mock_usage_pass_validation():
    pact = (Consumer("C").has_pact_with(
        Provider("P"),
        version="3.0.0").given("g").upon_receiving("r").with_request(
            "post",
            "/foo",
            body=Like({
                "a": "spam",
                "b": Includes("bee", "been")
            })).will_respond_with(200))

    with pact:
        requests.post(pact.uri + "/foo",
                      json={
                          "a": "ham",
                          "b": "has bee in it"
                      })
Exemple #5
0
def test_valid_types():
    Includes("string", "sample data")
Exemple #6
0
def test_invalid_types(object):
    with pytest.raises(AssertionError) as e:
        Includes(object, "sample data")

    assert "matcher must be a string" in str(e.value)
Exemple #7
0
def test_valid_types():
    Includes('string', 'sample data')
Exemple #8
0
def test_basic_type():
    assert Includes('spam', 'sample data').generate_matching_rule_v3() == \
           {'matchers': [{'match': 'include', 'value': 'spam'}]}