Skip to content

Commit

Permalink
Merge branch 'master' into fix/delete_expired_refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
Avantol13 committed Oct 3, 2022
2 parents 852f2b5 + 29a4cc9 commit 029cc7c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/buildpipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:

ci:
name: Build Image and Push
needs: Security
# TODO Add this line back once we update to Python 3.9 from 3.6
# needs: Security
uses: uc-cdis/.github/.github/workflows/image_build_push.yaml@master
secrets:
ECR_AWS_ACCESS_KEY_ID: ${{ secrets.ECR_AWS_ACCESS_KEY_ID }}
Expand Down
4 changes: 2 additions & 2 deletions fence/blueprints/data/blueprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,8 @@ def upload_file(file_id):
"""
file_name = flask.request.args.get("file_name")
if not file_name:
logger.warning(f"file_name not provided, using GUID: {file_id}")
file_name = str(file_id)
file_name = str(file_id).replace("/", "_")
logger.warning(f"file_name not provided, using '{file_name}'")

result = get_signed_url_for_file("upload", file_id, file_name=file_name)
return flask.jsonify(result)
Expand Down
6 changes: 2 additions & 4 deletions fence/sync/sync_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -1481,10 +1481,9 @@ def _sync(self, sess):
self.sync_from_local_yaml_file, encrypted=False, logger=self.logger
)
except (EnvironmentError, AssertionError) as e:
# TODO return an error code so usersync doesn't fail silently
self.logger.error(str(e))
self.logger.error("aborting early")
return
raise

# parse all projects
user_projects_csv = self.parse_projects(user_projects_csv)
Expand Down Expand Up @@ -2334,10 +2333,9 @@ def sync_single_user_visas(self, user, ga4gh_visas, sess=None, expires=None):
self.sync_from_local_yaml_file, encrypted=False, logger=self.logger
)
except (EnvironmentError, AssertionError) as e:
# TODO return an error code so usersync doesn't fail silently
self.logger.error(str(e))
self.logger.error("aborting early")
return
raise

user_projects = dict()
user_info = dict()
Expand Down
15 changes: 11 additions & 4 deletions tests/data/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,8 @@ def test_indexd_upload_file_key_error(
["gs", "s3", "gs_acl", "s3_acl", "s3_external", "az", "https"],
indirect=True,
)
@pytest.mark.parametrize("guid", ["1", "prefix/1"])
@pytest.mark.parametrize("file_name", ["some_test_file.txt", None])
def test_indexd_upload_file_filename(
client,
oauth_client,
Expand All @@ -268,12 +270,15 @@ def test_indexd_upload_file_filename(
primary_google_service_account,
cloud_manager,
google_signed_url,
guid,
file_name,
):
"""
Test ``GET /data/upload/1?file_name=``.
Test ``GET /data/upload/<guid>?file_name=<file_name>``.
"""
file_name = "some_test_file.txt"
path = "/data/upload/1?file_name=" + file_name
path = f"/data/upload/{guid}"
if file_name:
path += "?file_name=" + file_name
headers = {
"Authorization": "Bearer "
+ jwt.encode(
Expand All @@ -288,7 +293,9 @@ def test_indexd_upload_file_filename(
response = client.get(path, headers=headers)
assert response.status_code == 200
assert "url" in list(response.json.keys())
assert file_name in response.json.get("url")

name_in_url = file_name if file_name else guid.replace("/", "_")
assert name_in_url in response.json.get("url")


@pytest.mark.parametrize(
Expand Down
8 changes: 4 additions & 4 deletions tests/dbgap_sync/test_user_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def test_sync_missing_file(syncer, monkeypatch, db_session):
anything with the arborist client
"""
monkeypatch.setattr(syncer, "sync_from_local_yaml_file", "this-file-is-not-real")
# should fail gracefully
syncer.sync()
with pytest.raises(FileNotFoundError):
syncer.sync()
assert syncer.arborist_client.create_resource.not_called()
assert syncer.arborist_client.create_role.not_called()
assert syncer.arborist_client.create_policy.not_called()
Expand All @@ -67,8 +67,8 @@ def test_sync_incorrect_user_yaml_file(syncer, monkeypatch, db_session):
os.path.dirname(os.path.realpath(__file__)), "data/yaml/incorrect_user.yaml"
)
monkeypatch.setattr(syncer, "sync_from_local_yaml_file", path)
# should fail gracefully
syncer.sync()
with pytest.raises(AssertionError):
syncer.sync()
assert syncer.arborist_client.create_resource.not_called()
assert syncer.arborist_client.create_role.not_called()
assert syncer.arborist_client.create_policy.not_called()
Expand Down

0 comments on commit 029cc7c

Please sign in to comment.