Skip to content

Commit 88b8781

Browse files
authored
ignore nio tests related to requester pays bucket (#3452)
1 parent 42a9782 commit 88b8781

File tree

1 file changed

+6
-2
lines changed
  • google-cloud-clients/google-cloud-contrib/google-cloud-nio/src/test/java/com/google/cloud/storage/contrib/nio/it

1 file changed

+6
-2
lines changed

google-cloud-clients/google-cloud-contrib/google-cloud-nio/src/test/java/com/google/cloud/storage/contrib/nio/it/ITGcsNio.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
import org.junit.AfterClass;
3636
import org.junit.Assert;
3737
import org.junit.BeforeClass;
38+
import org.junit.Ignore;
3839
import org.junit.Test;
3940
import org.junit.runner.RunWith;
4041
import org.junit.runners.JUnit4;
@@ -145,7 +146,7 @@ private static void fillRequesterPaysFile(Storage storage, String fname, int siz
145146
}
146147

147148
// Start of tests related to the "requester pays" feature
148-
149+
@Ignore("blocked by #3448")
149150
@Test
150151
public void testFileExistsRequesterPaysNoUserProject() throws IOException {
151152
CloudStorageFileSystem testBucket = getRequesterPaysBucket(false, "");
@@ -175,6 +176,7 @@ public void testFileExistsRequesterPaysWithAutodetect() throws IOException {
175176
Files.exists(path);
176177
}
177178

179+
@Ignore("blocked by #3448")
178180
@Test
179181
public void testCantCreateWithoutUserProject() throws IOException {
180182
CloudStorageFileSystem testBucket = getRequesterPaysBucket(false, "");
@@ -195,7 +197,8 @@ public void testCanCreateWithUserProject() throws IOException {
195197
// should succeed because we specified a project
196198
Files.write(path, "I would like to write, please?".getBytes());
197199
}
198-
200+
201+
@Ignore("blocked by #3448")
199202
@Test
200203
public void testCantReadWithoutUserProject() throws IOException {
201204
CloudStorageFileSystem testBucket = getRequesterPaysBucket(false, "");
@@ -217,6 +220,7 @@ public void testCanReadWithUserProject() throws IOException {
217220
Files.readAllBytes(path);
218221
}
219222

223+
@Ignore("blocked by #3448")
220224
@Test
221225
public void testCantCopyWithoutUserProject() throws IOException {
222226
CloudStorageFileSystem testRPBucket = getRequesterPaysBucket(false, "");

0 commit comments

Comments
 (0)