1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#!/usr/bin/python3 -i
#
# Copyright (c) 2018-2019 Collabora, Ltd.
#
# SPDX-License-Identifier: Apache-2.0
#
# Author(s): Ryan Pavlik <ryan.pavlik@collabora.com>
import pytest
from check_spec_links import XREntityDatabase
@pytest.fixture
def db():
ret = XREntityDatabase()
# print(ret.getEntityJson())
return ret
def test_likely_recognized(db):
assert(db.likelyRecognizedEntity('xrBla'))
assert(db.likelyRecognizedEntity('XrBla'))
assert(db.likelyRecognizedEntity('XR_BLA'))
def test_db(db):
assert(db.findEntity('xrCreateInstance'))
assert(db.findEntity('XRAPI_CALL'))
|