Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix requester pays access harder. #7716 #7730

Merged
merged 7 commits into from
Apr 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix test failures
  • Loading branch information
droazen committed Apr 6, 2022
commit 0c976665e889a9694d92c42da134c261058af604
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,16 @@ public class RequesterPaysIntegrationTest extends CommandLineProgramTest {
public String getTestedToolName() {
return ExampleReadWalkerWithVariants.class.getSimpleName();
}

@DataProvider
public Object[][] getRequesterPaysPaths() {

//Files here are paid for by the bucket owners
private static final String OWNER = getGCPTestInputPath() + "org/broadinstitute/hellbender/engine/RequesterPaysIntegrationTest/";
//Files here are paid for by the bucket owners
final String OWNER = getGCPTestInputPath() + "org/broadinstitute/hellbender/engine/RequesterPaysIntegrationTest/";

//Files here are requester pays
private static final String REQUESTER = getGCPRequesterPaysBucket() + "test/resources/nio/";
//Files here are requester pays
final String REQUESTER = getGCPRequesterPaysBucket() + "test/resources/nio/";

@DataProvider
public Object[][] getRequesterPaysPaths(){
return new Object[][]{
{OWNER, OWNER, OWNER, OWNER, false},
{OWNER, OWNER, OWNER, REQUESTER, true},
Expand Down