31 lines
835 B
Python
31 lines
835 B
Python
|
import subprocess
|
||
|
from pprint import pprint
|
||
|
from starlette.testclient import TestClient
|
||
|
from starlette.authentication import (
|
||
|
AuthenticationBackend, AuthenticationError, BaseUser, AuthCredentials,
|
||
|
UnauthenticatedUser)
|
||
|
|
||
|
from halfapi.app import application
|
||
|
from halfapi.lib.schemas import schema_dict_dom
|
||
|
|
||
|
def test_schemas_dict_dom():
|
||
|
from . import dummy_domain
|
||
|
schema = schema_dict_dom({
|
||
|
'dummy_domain':dummy_domain})
|
||
|
assert isinstance(schema, dict)
|
||
|
|
||
|
|
||
|
def test_get_api_routes(project_runner):
|
||
|
c = TestClient(application)
|
||
|
r = c.get('/')
|
||
|
d_r = r.json()
|
||
|
try:
|
||
|
assert isinstance(d_r, dict)
|
||
|
assert 'paths' in d_r
|
||
|
assert '/' in d_r['paths']
|
||
|
assert '/dummy_domain/abc/alphabet' in d_r['paths']
|
||
|
except AssertionError as exc:
|
||
|
pprint(d_r)
|
||
|
raise exc
|
||
|
|