File: validate_json_test.py

package info (click to toggle)
swagger-spec-validator 3.0.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 696 kB
  • sloc: python: 2,321; makefile: 28; sh: 2
file content (18 lines) | stat: -rw-r--r-- 532 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import json

import pytest

from swagger_spec_validator.common import SwaggerValidationError
from swagger_spec_validator.validator20 import validate_json


def test_success():
    with open("./tests/data/v2.0/petstore.json") as f:
        petstore_spec = json.load(f)
    validate_json(petstore_spec, "schemas/v2.0/schema.json")


def test_failure():
    with pytest.raises(SwaggerValidationError) as excinfo:
        validate_json({}, "schemas/v2.0/schema.json")
    assert "'swagger' is a required property" in str(excinfo.value)