def setUp(self):
        setup_database_for_testing(self)
        self.app = app.test_client()
        self.ctx = app.test_request_context()
        self.ctx.__enter__()

        self.session = requests.Session()
Exemple #2
0
    def setUp(self):
        # Enable direct download in fake storage.
        storage.put_content(['local_us'], 'supports_direct_download', 'true')

        # Have fake storage say all files exist for the duration of the test.
        storage.put_content(['local_us'], 'all_files_exist', 'true')

        # Setup the database with fake storage.
        setup_database_for_testing(self)
        self.app = app.test_client()
        self.ctx = app.test_request_context()
        self.ctx.__enter__()

        instance_keys = InstanceKeys(app)
        self.api = SecurityScannerAPI(app.config,
                                      storage,
                                      app.config['SERVER_HOSTNAME'],
                                      app.config['HTTPCLIENT'],
                                      uri_creator=get_blob_download_uri_getter(
                                          app.test_request_context('/'),
                                          url_scheme_and_hostname),
                                      instance_keys=instance_keys)
Exemple #3
0
 def setUp(self):
     setup_database_for_testing(self)
     self.app = app.test_client()
     self.ctx = app.test_request_context()
     self.ctx.__enter__()
     self.setCsrfToken(CSRF_TOKEN)
 def setUp(self):
   setup_database_for_testing(self)
 def setUp(self):
     setup_database_for_testing(self)
     self.session = requests.Session()