Skip to content

Commit

Permalink
Fix plethora of region, ark connection, and bucket name test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mbklein committed Nov 6, 2024
1 parent 8d03e47 commit e03aa13
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ jobs:
- name: Elixir Tests
run: mix test || mix test --failed
env:
AWS_REGION: us-east-1
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
working-directory: app
- name: Test DB Rollback
Expand Down
2 changes: 1 addition & 1 deletion app/test/support/bucket_names.ex
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defmodule Meadow.BucketNames do
@ingest_bucket prefixed.("ingest")
@preservation_bucket prefixed.("preservation")
@preservation_check_bucket prefixed.("preservation-checks")
@upload_bucket prefixed.("uploads")
@upload_bucket prefixed.("upload")
@pyramid_bucket prefixed.("pyramids")
@streaming_bucket prefixed.("streaming")
end
Expand Down
16 changes: 5 additions & 11 deletions infrastructure/localstack/environment_config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,6 @@ locals {
iiif_distribution_id = null
}

ezid = {
password = "apitest"
shoulder = "ark:/99999/fk4"
target_base_url = "https://dc.dev.library.northwestern.edu/items/"
url = "https://ezid.cdlib.org/"
user = "apitest"
}

geonames = {
username = "nul_rdc"
}
Expand Down Expand Up @@ -67,9 +59,11 @@ locals {
}

"infrastructure/ezid" = {
password = "apitest"
shoulder = "ark:/99999/fk4"
user = "apitest"
password = "ark_password"
shoulder = "ark:/12345/nu1"
target_base_url = "https://devbox.library.northwestern.edu:3333/items/"
url = "http://localhost:3944"
user = "ark_user"
}

"infrastructure/index" = {
Expand Down

0 comments on commit e03aa13

Please sign in to comment.