コード例 #1
0
def test_unknown_error(m_validate):
    """SystemExit on running with unknown error."""
    testargs = [
        '--schema', '3.0.0', './tests/integration/data/v2.0/petstore.yaml'
    ]
    with pytest.raises(SystemExit):
        main(testargs)
コード例 #2
0
def test_schema_unknown():
    """Errors on running with unknown schema."""
    testargs = [
        '--schema', 'x.x', './tests/integration/data/v2.0/petstore.yaml'
    ]
    with pytest.raises(SystemExit):
        main(testargs)
コード例 #3
0
def test_schema_stdin():
    """Test schema from STDIN"""
    spes_path = './tests/integration/data/v3.0/petstore.yaml'
    with open(spes_path, 'r') as spec_file:
        spec_lines = spec_file.readlines()
    spec_io = StringIO("".join(spec_lines))

    testargs = ['-']
    with mock.patch('openapi_spec_validator.__main__.sys.stdin', spec_io):
        main(testargs)
コード例 #4
0
def test_errors_on_missing_description_best(capsys):
    """An error is obviously printed given an empty schema."""
    testargs = [
        './tests/integration/data/v3.0/missing-description.yaml',
        '--schema=3.0.0'
    ]
    with pytest.raises(SystemExit):
        main(testargs)
    out, err = capsys.readouterr()
    assert "Failed validating" in out
    assert "'description' is a required property" in out
    assert "'$ref' is a required property" not in out
    assert '1 more subschemas errors' in out
コード例 #5
0
def test_schema_default():
    """Test default schema is 3.0.0"""
    testargs = ['./tests/integration/data/v3.0/petstore.yaml']
    main(testargs)
コード例 #6
0
def test_nonexisting_file():
    """Calling with non-existing file should sys.exit."""
    testargs = ['i_dont_exist.yaml']
    with pytest.raises(SystemExit):
        main(testargs)
コード例 #7
0
def test_schema_v2():
    """No errors when calling with proper v2 file."""
    testargs = [
        '--schema', '2.0', './tests/integration/data/v2.0/petstore.yaml'
    ]
    main(testargs)
コード例 #8
0
def test_schema_v3():
    """No errors when calling proper v3 file."""
    testargs = [
        '--schema', '3.0.0', './tests/integration/data/v3.0/petstore.yaml'
    ]
    main(testargs)