37 lines
840 B
Python
37 lines
840 B
Python
import logging
|
|
|
|
import boto3
|
|
|
|
import config as config
|
|
from utils.api import Api
|
|
|
|
logger = logging.getLogger(__name__)
|
|
client = boto3.client('apigateway')
|
|
|
|
|
|
class TestApiDocExportApi:
|
|
|
|
@classmethod
|
|
def setup_class(self):
|
|
self.api = Api(config)
|
|
self.api.feat_oas_schema()
|
|
|
|
@classmethod
|
|
def teardown_class(self):
|
|
pass
|
|
|
|
def test_1_doc_get_without_key(self):
|
|
resp = self.api.root()
|
|
assert resp.status_code == 403, resp.dumps()
|
|
|
|
def test_2_doc_with_bad_key(self):
|
|
headers = {'x-api-key': "bad_key"}
|
|
|
|
resp = self.api.root(headers=headers)
|
|
assert resp.status_code == 403, resp.dumps()
|
|
|
|
def test_3_get_schema_by_id(self):
|
|
operation_id = 'GetInferenceJob'
|
|
resp = self.api.root()
|
|
self.api.get_schema_by_id_and_code(operation_id, resp)
|