예제 #1
0
 def test_method_invoke_test(self):
     rest_api = Rest_API('temp_rest_api').create()
     api_id = rest_api.id()
     resource_id = rest_api.resource_id('/')
     method = 'GET'
     self.result = self.api_gateway.method_invoke_test(
         api_id, resource_id, method)
예제 #2
0
 def test_method_response(self):
     rest_api = Rest_API('temp_rest_api').create()
     api_id = rest_api.id()
     resource_id = rest_api.resource_id('/')
     method = 'GET'
     status_code = '200'
     self.result = self.api_gateway.method_response(api_id, resource_id,
                                                    method, status_code)
예제 #3
0
class test_Rest_API(Test_Helper):

    test_rest_api_name = 'temp-unit-test-api'

    @staticmethod
    def setup_test_enviroment__Rest_API(
            cls):  # todo: refactor into separate class
        rest_api = Rest_API(cls.test_rest_api_name)
        rest_api.create()

    @staticmethod
    def teardown_test_enviroment__Rest_API(cls):
        rest_api = Rest_API(cls.test_rest_api_name)
        assert rest_api.delete().not_exists()

    @classmethod
    def setUpClass(cls) -> None:
        cls.setup_test_enviroment__Rest_API(cls)

    @classmethod
    def tearDownClass(cls):
        cls.teardown_test_enviroment__Rest_API(cls)

    def setUp(self):
        super().setUp()
        self.rest_api = Rest_API(self.test_rest_api_name)

    def test__init__(self):
        assert self.rest_api.api_name == self.test_rest_api_name
        assert self.rest_api.api_id is None

    def test_add_method_http(self):
        from_path = '/'
        from_method = 'GET'
        to_method = 'GET'
        to_uri = 'http://httpbin.org/robots.txt'
        self.rest_api.add_method_http(from_path, from_method, to_method,
                                      to_uri)
        assert len(
            self.rest_api.test_method(from_path, from_method).get('log')) > 0

    def test_create(self):
        current_id = self.rest_api.id()
        self.rest_api.create(
        )  # note: calling create on a method that already exists will not do anything
        assert self.rest_api.api_id == current_id  # confirm value is set

    def test_id(self):
        assert self.rest_api.id() == self.rest_api.api_id

    def test_exists(self):
        assert self.rest_api.exists() is True

    #def test_resource(self):
    #

    def test_resource_id(self):
        self.rest_api.resource_id('/') == self.rest_api.api_id
예제 #4
0
 def test_integration_response_create(self):
     rest_api = Rest_API('temp_rest_api').create()
     api_id = rest_api.id()
     resource_id = rest_api.resource_id('/')
     method = 'GET'
     status_code = '200'
     response_templates = {'application/json': ''}
     self.result = self.api_gateway.integration_response_create(
         api_id, resource_id, method, status_code, response_templates)
예제 #5
0
 def test_method_response_create(self):
     rest_api = Rest_API('temp_rest_api').create()
     api_id = rest_api.id()
     resource_id = rest_api.resource_id('/')
     http_method = 'GET'
     status_code = '200'
     response_models = {'application/json': 'Empty'}
     self.result = self.api_gateway.method_response_create(
         api_id, resource_id, http_method, status_code, response_models)
예제 #6
0
    def test_deploy_api(self):
        rest_api = Rest_API(self.api_name).create()
        self.result = rest_api.deploy()

    # here is the test that added the A record for both top level domain and child domains
    # def test_record_set_upsert(self):
    #
    #     name                = 'gw-proxy.com.'
    #     record_type         = 'A'
    #     dns_name            = 'd-noho75bpih.execute-api.eu-west-1.amazonaws.com.'
    #     hosted_zone_id      = '/hostedzone/ZMHOWKWA1ZN69'
    #     alias_hosted_zone_id = 'ZLY8HYME6SFDD'
    #     self.result = Route_53().record_set_upsert(name, record_type, dns_name,hosted_zone_id,alias_hosted_zone_id)
    #
    # def test_record_set_upsert(self):
    #     from osbot_aws.apis.Route_53 import Route_53
    #     name                = '*.gw-proxy.com.'
    #     record_type         = 'A'
    #     dns_name            = 'd-noho75bpih.execute-api.eu-west-1.amazonaws.com.'
    #     hosted_zone_id      = '/hostedzone/ZMHOWKWA1ZN69'
    #     alias_hosted_zone_id = 'ZLY8HYME6SFDD'
    #     self.result = Route_53().record_set_upsert(name, record_type, dns_name,hosted_zone_id,alias_hosted_zone_id)
    #
    # # here is the test that asked for the wildcart Cert to be created
    # def test_certificate_request(self):
    #     #self.result = self.acm.certificate_request('*.gw-proxy.com')
    #     self.result = self.acm.certificate('arn:aws:acm:eu-west-1:311800962295:certificate/1f191c3a-0214-4ef5-9f03-27cc0b46bef3')
    #
    # def test_GET_request(self):
    #     self.result = GET(Rest_API(self.api_name).url())
    #
    # # adding domain to API Gateway
    # # gw-proxy.com
    # def test_domain_name_add_path_mapping(self):
    #     rest_api_id = self.api_gateway.rest_api_id('lambda-proxy')
    #     domain_name = 'gw-proxy.com'
    #     base_path   = ''
    #     self.result = self.api_gateway.domain_name_add_path_mapping(rest_api_id=rest_api_id,domain_name=domain_name,base_path=base_path)
    #
    # def test_domain_name_create(self):
    #     domain_name     = 'gw-proxy.com'
    #     certificate_arn = 'arn:aws:acm:eu-west-1:311800962295:certificate/cac6ccbe-e5a6-41b1-ab87-461ff1d88458'
    #     self.result     = self.api_gateway.domain_name_create__regional(domain_name=domain_name, certificate_arn=certificate_arn)
    #
    # # *.gw-proxy.com
    #
    # def test_domain_name_create(self):
    #     domain_name     = '*.gw-proxy.com'
    #     certificate_arn = 'arn:aws:acm:eu-west-1:311800962295:certificate/be75edef-b698-4425-bf7a-7a129bb0331e'
    #     self.result     = self.api_gateway.domain_name_create__regional(domain_name=domain_name, certificate_arn=certificate_arn)
    #
    # def test_domain_name_add_path_mapping(self):
    #     rest_api_id = self.api_gateway.rest_api_id('lambda-proxy')
    #     domain_name = '*.gw-proxy.com'
    #     base_path   = ''
    #     self.result = self.api_gateway.domain_name_add_path_mapping(rest_api_id=rest_api_id,domain_name=domain_name,base_path=base_path)
예제 #7
0
 def test_integration_create__http(self):
     uri = 'http://httpbin.org/robots.txt'
     rest_api = Rest_API('temp_rest_api').create()
     method = 'GET'
     integration_method = 'GET'
     api_id = rest_api.id()
     resource_id = rest_api.resource_id('/')
     self.api_gateway.method_create(api_id, resource_id, method)
     self.result = self.api_gateway.integration_create__http(
         api_id=api_id,
         resource_id=resource_id,
         uri=uri,
         http_method=method,
         integration_http_method=integration_method)
예제 #8
0
 def test_setup_lambda_route(self):  # will create a {proxy+} integration
     rest_api = Rest_API(self.api_name).create()
     parent_id = rest_api.resource_id('/')
     if not rest_api.api_gateway.rest_api_exists(rest_api.id()):
         rest_api.api_gateway.resource_create(
             rest_api.id(), parent_id, '{proxy+}')
     self.result = rest_api.add_method_lambda(
         '/', 'ANY', self.lambda_name)  # need to add both
     self.result = rest_api.add_method_lambda(
         '/{proxy+}', 'ANY', self.lambda_name)  # since this one wasn't catching the root requests
     rest_api.deploy()
예제 #9
0
 def test_setup_lambda_route(self):
     name        = 'api-key-generator-for-shopify'
     lambda_name = 'gw_bot_lambdas_gw_store_create_api_gw_api_key'
     rest_api    = Rest_API(name).create()
     rest_api.add_method_lambda('/','GET',lambda_name)
     rest_api.deploy()
     self.result = rest_api.test_method('/','GET')
예제 #10
0
class test_Rest_API(Test_Helper):

    def setUp(self):
        self.name = 'temp-unit-test-api'
        super().setUp()
        self.rest_api = Rest_API(self.name)

    def test_add_method_http(self):
        from_path   =  '/'
        from_method = 'GET'
        to_method   = 'GET'
        to_uri      = 'http://httpbin.org/robots.txt'
        self.rest_api.add_method_http(from_path, from_method, to_method, to_uri)
        self.result = self.rest_api.test_method(from_path, from_method)

    def test_create(self):
        self.result = self.rest_api.create()

    def test_id(self):
        self.result = self.rest_api.id()

    def test_exists(self):
        self.result = self.rest_api.exists()

    #def test_resource(self):
    #

    def test_resource_id(self):
        self.result = self.rest_api.resource_id('/')
예제 #11
0
 def setUp(self):
     super().setUp()
     self.api_gateway = API_Gateway()
     self.rest_api = Rest_API('temp_rest_api').create()
     self.api_id = self.rest_api.id()
예제 #12
0
class test_API_Gateway(Test_Helper):
    def setUp(self):
        super().setUp()
        self.api_gateway = API_Gateway()
        self.rest_api = Rest_API('temp_rest_api').create()
        self.api_id = self.rest_api.id()

        #self.test_api_key_id    = '24owcfrcjc'
        #self.test_resource_id   = 'lf80sgepa5'
        #self.test_usage_plan_id = '7a6fl9'

    def test__init__(self):
        assert type(self.api_gateway.api_gateway).__name__ == 'APIGateway'

    def test_account(self):
        #from osbot_jupyter.utils.Trace_Call import Trace_Call
        #trace = Trace_Call()
        #trace.include_filter=['osbot*', 'gwbot*','boto*','ConnectionPool*']
        #self.result = trace.invoke_method(self.api_gateway.account)

        account = self.api_gateway.account()
        assert account.get('apiKeyVersion') == '4'
        assert account.get(
            'cloudwatchRoleArn'
        ) == 'arn:aws:iam::311800962295:role/api-gateway-write-to-cloud-watch'
        assert account.get('features') == ['UsagePlans']
        assert account.get('throttleSettings') == {
            'burstLimit': 5000,
            'rateLimit': 10000.0
        }

    def test_api_key(self):
        assert 'value' in set(
            self.api_gateway.api_key(self.test_api_key_id, include_value=True))

    def test_api_key_create__delete(self):
        key_name = 'temp new key'
        api_keys = self.api_gateway.api_keys()  # store current api_keys
        api_key = self.api_gateway.api_key_create(key_name)  # create key
        self.api_gateway.api_key_delete(
            api_key.get('id'))  # delete it using `id`
        self.api_gateway.api_key_create(key_name)  # create it again
        self.api_gateway.api_key_delete(key_name)  # delete it using `name`
        assert api_keys == self.api_gateway.api_keys(
        )  # confirm api_keys are unchanged

    def test_api_keys(self):
        keys = self.api_gateway.api_keys('name', include_values=True)
        assert len(keys) > 1
        assert list(keys.values()).pop().get('enabled') == True

    def test_deployments(self):
        items = self.api_gateway.deployments(self.test_api_id)
        assert len(items) > 2

    def test_deployment_create(self):
        stage = 'Test_QA'
        api_id = Rest_API('temp_rest_api').create().id()
        self.result = self.api_gateway.deployment_create(api_id, stage)

    def test_domain_name_add_path_mapping(self):
        rest_api_id = self.api_gateway.rest_api_id('lambda-proxy')
        domain_name = '*.gw-proxy.com'
        base_path = ''
        self.result = self.api_gateway.domain_name_add_path_mapping(
            rest_api_id=rest_api_id,
            domain_name=domain_name,
            base_path=base_path)

    def test_domain_name_create(self):
        domain_name = '*.gw-proxy.com'
        certificate_arn = 'arn:aws:acm:eu-west-1:311800962295:certificate/1f191c3a-0214-4ef5-9f03-27cc0b46bef3'
        self.result = self.api_gateway.domain_name_create__regional(
            domain_name=domain_name, certificate_arn=certificate_arn)

    def test_domain_name_delete(self):
        domain_name = 'gw-proxy.com'
        self.result = self.api_gateway.domain_name_delete(
            domain_name=domain_name)

    def test_domain_names(self):
        self.result = self.api_gateway.domain_names(
            index_by='regionalDomainName')
        #assert len(self.api_gateway.domain_names()) > 0

    #not working: 'Invalid Method identifier specified'
    def test_integration(self):
        api_name = 'Slack GW-Bot'  #'Jira Sync' #'VP-SaaS-Proxy'
        path = '/slack-handler'  #'/jira-on-change' # '/{proxy+}'
        http_method = 'POST'
        api_id = self.api_gateway.rest_api_id(api_name)
        resource_id = self.api_gateway.resource_id(api_id, path)
        self.result = self.api_gateway.integration(api_id, resource_id,
                                                   http_method)

    def test_method_invoke_test(self):
        rest_api = Rest_API('temp_rest_api').create()
        api_id = rest_api.id()
        resource_id = rest_api.resource_id('/')
        method = 'GET'
        self.result = self.api_gateway.method_invoke_test(
            api_id, resource_id, method)

    def test_integration_create__http(self):
        uri = 'http://httpbin.org/robots.txt'
        rest_api = Rest_API('temp_rest_api').create()
        method = 'GET'
        integration_method = 'GET'
        api_id = rest_api.id()
        resource_id = rest_api.resource_id('/')
        self.api_gateway.method_create(api_id, resource_id, method)
        self.result = self.api_gateway.integration_create__http(
            api_id=api_id,
            resource_id=resource_id,
            uri=uri,
            http_method=method,
            integration_http_method=integration_method)

    def test_integration_create__lambda(self):
        from osbot_aws.apis.Lambda import Lambda
        #_lambda = Lambda('gw_bot.lambdas.dev.hello_world')
        lambda_name = 'gw_bot_lambdas_dev_hello_world'
        #rest_api    = Rest_API('temp_rest_api').create()
        #api_id      = rest_api.id()
        resource_id = self.rest_api.resource_id('/')
        http_method = 'GET'
        self.api_gateway.method_create(self.api_id, resource_id, http_method)
        self.api_gateway.integration_create__lambda(api_id=self.api_id,
                                                    resource_id=resource_id,
                                                    lambda_name=lambda_name,
                                                    http_method=http_method)
        self.integration_add_permission_to_lambda(lambda_name)

        # add method and integration responses to lambda function
        response_models = {'application/json': 'Empty'}
        self.api_gateway.method_response_create(self.api_id, resource_id,
                                                http_method, '200',
                                                response_models)

        # test method execution
        #self.result = self.api_gateway.method_invoke_test(self.api_id, resource_id, http_method)

        self.result = self.api_gateway.deployment_create(
            self.api_id, 'QA-Lambda')

#        stage_url = self.api_gateway.stage_url(self.api_id,aws_region,'QA-Lambda')

#        from pbx_gs_python_utils.utils.Http import GET
#        self.result = GET(stage_url)
#self.result = stage_url

    def test_integration_response(self):
        rest_api = Rest_API('temp_rest_api').create()
        api_id = rest_api.id()
        resource_id = rest_api.resource_id('/')
        method = 'POST'
        status_code = '200'
        self.result = self.api_gateway.integration_response(
            api_id, resource_id, method, status_code)

    def test_integration_response_create(self):
        rest_api = Rest_API('temp_rest_api').create()
        api_id = rest_api.id()
        resource_id = rest_api.resource_id('/')
        method = 'GET'
        status_code = '200'
        response_templates = {'application/json': ''}
        self.result = self.api_gateway.integration_response_create(
            api_id, resource_id, method, status_code, response_templates)

    def test_method(self):
        api_name = 'VP-SaaS-Proxy'
        path = '/{proxy+}'
        api_id = self.api_gateway.rest_api_id(api_name)
        resource_id = self.api_gateway.resource_id(api_id, path)
        resource_method = self.api_gateway.resource_methods(api_id, path).pop()
        method = self.api_gateway.method(api_id, resource_id, resource_method)
        assert method.get('httpMethod') == resource_method

    def test_method_create__delete(self):
        api_name = 'temp-unit-test-api'
        path = '/'
        method = 'POST'
        api_id = self.api_gateway.rest_api_create(api_name).get(
            'id')  # create api
        resource_id = self.api_gateway.resource(api_id, path).get(
            'id')  # get resource id
        self.result = self.api_gateway.method_create(api_id, resource_id,
                                                     method)  # create method
        assert method in self.api_gateway.resource_methods(
            api_id, path)  # confirm it exists
        self.result = self.api_gateway.method_delete(api_id, resource_id,
                                                     method)  # delete method
        assert [] == self.api_gateway.resource_methods(
            api_id, path)  # confirm it doesn't exist
        self.api_gateway.rest_api_delete(api_id)  # delete api

    def test_method_response(self):
        rest_api = Rest_API('temp_rest_api').create()
        api_id = rest_api.id()
        resource_id = rest_api.resource_id('/')
        method = 'GET'
        status_code = '200'
        self.result = self.api_gateway.method_response(api_id, resource_id,
                                                       method, status_code)

    def test_method_response_create(self):
        rest_api = Rest_API('temp_rest_api').create()
        api_id = rest_api.id()
        resource_id = rest_api.resource_id('/')
        http_method = 'GET'
        status_code = '200'
        response_models = {'application/json': 'Empty'}
        self.result = self.api_gateway.method_response_create(
            api_id, resource_id, http_method, status_code, response_models)

        #self.result = self.api_gateway.method_invoke_test(api_id, resource_id, http_method)

    def test_models(self):
        assert len(self.api_gateway.models(self.api_id)) > 1

    def test_stage(self):
        stage_name = list(
            set(self.api_gateway.stages(self.api_id,
                                        index_by='stageName'))).pop()
        self.result = self.api_gateway.stage(self.api_id, stage_name)

    def test_stages(self):
        self.result = self.api_gateway.stages(self.api_id,
                                              index_by='stageName')

    def test_resource_create(self):
        api_name = 'temp-unit-test-api'
        new_path = 'test-path'

        # create Rest API
        rest_api = self.api_gateway.rest_api_create(api_name)
        api_id = rest_api.get('id')
        path_id = self.api_gateway.resource(api_id, '/').get('id')

        # create resource
        new_path_id = self.api_gateway.resource_create(api_id, path_id,
                                                       new_path).get('id')

        # confirm resource exists
        assert self.api_gateway.resource(
            api_id, f'/{new_path}').get('id') == new_path_id

        # delete resource and Rest API
        self.api_gateway.resource_delete(api_id, new_path_id)
        sleep(
            2
        )  # without this we get the botocore.errorfactory.TooManyRequestsException
        self.api_gateway.rest_api_delete(api_id)

    def test_resources(self):
        assert len(self.api_gateway.resources(self.api_id)) > 1
        assert self.api_gateway.resources('VP-SaaS-Proxy').get(
            'id') == self.api_id
        assert self.api_gateway.resources('AAAA-BBB') == {
            'error': 'API not found: AAAA-BBB'
        }

    def test_rest_api_create__delete(self):
        rest_api = self.api_gateway.rest_api_create(
            'temp test api ABC')  # create rest_api
        sleep(1)  # wait a little before deleting
        self.result = self.api_gateway.rest_api_delete(
            rest_api.get('id'))  # delete it
        try:
            pass
        except Exception as error:
            self.result = f'{error}'

    def test_rest_apis(self):
        items = self.api_gateway.rest_apis(index_by='id')
        assert self.api_id in items

    def test_usage(self):
        usage_plan_id = self.api_gateway.usage_plans('name').get(
            '1k month').get('id')
        days = 10
        usage = self.api_gateway.usage(usage_plan_id, days)
        assert len(usage) > 1
        #assert len(usage[usage_plan_id]) == days

    def test_usage__as_chart_data(self):
        days = 10
        print('-----')
        self.result = self.api_gateway.usage__as_chart_data(
            self.test_usage_plan_id, days)

    def test_usage_plan_keys(self):
        usage_plan_id = self.api_gateway.usage_plans('name').get('1k day').get(
            'id')
        self.result = self.api_gateway.usage_plan_keys(usage_plan_id)

    def test_usage_plan_add_key(self):
        key_name = 'temp_key_name'
        usage_plan_id = self.api_gateway.usage_plans('name').get('1k day').get(
            'id')
        temp_key_id = self.api_gateway.api_key_create(key_name).get('id')
        usage_plan_key = self.api_gateway.usage_plan_add_key(
            usage_plan_id, temp_key_id).get('id')

        assert usage_plan_key in self.api_gateway.usage_plan_keys(
            usage_plan_id)
        self.result = self.api_gateway.usage_plan_remove_key(
            usage_plan_id, temp_key_id)
        assert usage_plan_key not in self.api_gateway.usage_plan_keys(
            usage_plan_id)
        self.api_gateway.api_key_delete(key_name)

    def test_usage_plans(self):
        assert self.api_gateway.usage_plans('name').get('1k day').get(
            'quota') == {
                'limit': 1000,
                'offset': 0,
                'period': 'DAY'
            }
예제 #13
0
 def test_just_invoke(self):
     name = 'api-key-generator-for-shopify'
     self.result = Rest_API(name).test_method().get('body')
예제 #14
0
 def setUp(self):
     super().setUp()
     self.rest_api = Rest_API(self.test_rest_api_name)
예제 #15
0
 def teardown_test_enviroment__Rest_API(cls):
     rest_api = Rest_API(cls.test_rest_api_name)
     assert rest_api.delete().not_exists()
예제 #16
0
 def setup_test_enviroment__Rest_API(
         cls):  # todo: refactor into separate class
     rest_api = Rest_API(cls.test_rest_api_name)
     rest_api.create()
예제 #17
0
 def test_deployment_create(self):
     stage = 'Test_QA'
     api_id = Rest_API('temp_rest_api').create().id()
     self.result = self.api_gateway.deployment_create(api_id, stage)
예제 #18
0
 def setUp(self):
     self.name = 'temp-unit-test-api'
     super().setUp()
     self.rest_api = Rest_API(self.name)