Skip to content
Merged
Changes from 3 commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -1661,20 +1661,16 @@ public void testGetBlobs() {

@Test
public void testDownloadPublicBlobWithoutAuthentication() {
assumeFalse(System.getenv("GOOGLE_CLOUD_TESTS_IN_VPCSC").equalsIgnoreCase("true"));
Comment thread
JesseLovelace marked this conversation as resolved.
Outdated
// create an unauthorized user
Storage unauthorizedStorage = StorageOptions.getUnauthenticatedInstance().getService();

// 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";
byte[] bytes;
try {
bytes = unauthorizedStorage.readAllBytes(landsatBucket, landsatBlob);
} catch (StorageException ex) {
assumeFalse(403 == ex.getCode());
return;
}
byte[] bytes = unauthorizedStorage.readAllBytes(landsatBucket, landsatBlob);

assertThat(bytes.length).isEqualTo(7903);
int numBlobs = 0;
Iterator<Blob> blobIterator = unauthorizedStorage
Expand Down