3535import org .junit .AfterClass ;
3636import org .junit .Assert ;
3737import org .junit .BeforeClass ;
38+ import org .junit .Ignore ;
3839import org .junit .Test ;
3940import org .junit .runner .RunWith ;
4041import 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