Skip to content

Commit

Permalink
fix(test): update blob paths used in storage.it.ITStorageTest#testDow…
Browse files Browse the repository at this point in the history
…nloadPublicBlobWithoutAuthentication (#759)

Port of googleapis/google-cloud-go#3806

Fixes #755
  • Loading branch information
BenWhitehead committed Mar 16, 2021
1 parent 6cd04d1 commit 9a6619c
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -2125,11 +2125,11 @@ public void testDownloadPublicBlobWithoutAuthentication() {

// try to download blobs from a public bucket
String landsatBucket = "gcp-public-data-landsat";
String landsatPrefix = "LC08/PRE/044/034/LC80440342016259LGN00/";
String landsatBlob = landsatPrefix + "LC80440342016259LGN00_MTL.txt";
String landsatPrefix = "LC08/01/001/002/LC08_L1GT_001002_20160817_20170322_01_T2/";
String landsatBlob = landsatPrefix + "LC08_L1GT_001002_20160817_20170322_01_T2_ANG.txt";
byte[] bytes = unauthorizedStorage.readAllBytes(landsatBucket, landsatBlob);

assertThat(bytes.length).isEqualTo(7903);
assertThat(bytes.length).isEqualTo(117255);
int numBlobs = 0;
Iterator<Blob> blobIterator =
unauthorizedStorage
Expand All @@ -2140,7 +2140,7 @@ public void testDownloadPublicBlobWithoutAuthentication() {
numBlobs++;
blobIterator.next();
}
assertThat(numBlobs).isEqualTo(13);
assertThat(numBlobs).isEqualTo(14);

// try to download blobs from a bucket that requires authentication
// authenticated client will succeed
Expand Down

0 comments on commit 9a6619c

Please sign in to comment.