Skip to content

Commit 1da4ba7

Browse files
author
Dhriti Chopra
committed
Undo ignored tests
1 parent c9b0571 commit 1da4ba7

3 files changed

Lines changed: 1 addition & 6 deletions

File tree

java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/FakeServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void close() throws InterruptedException {
5454
}
5555

5656
static FakeServer of(StorageGrpc.StorageImplBase service) throws IOException {
57-
InetSocketAddress address = new InetSocketAddress("localhost", 0);
57+
InetSocketAddress address = new InetSocketAddress("127.0.0.1", 0);
5858
Server server = NettyServerBuilder.forAddress(address).addService(service).build();
5959
server.start();
6060
String endpoint = String.format(Locale.US, "%s:%d", address.getHostString(), server.getPort());

java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/ITGapicUnbufferedReadableByteChannelTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@
5353
import org.junit.Ignore;
5454
import org.junit.Test;
5555

56-
// Permanently ignore streaming test to prevent CI/CD presubmit hanging
57-
@Ignore
5856
public final class ITGapicUnbufferedReadableByteChannelTest {
5957
private final byte[] bytes = DataGenerator.base64Characters().genBytes(40);
6058
private final ByteString data1 = ByteString.copyFrom(bytes, 0, 10);

java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/ITGzipReadableByteChannelTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ public class ITGzipReadableByteChannelTest {
9696
.setChecksummedData(getChecksummedData(contentCompressed2))
9797
.build();
9898

99-
@Ignore
10099
public static final class Uncompressed {
101100
private static final StorageGrpc.StorageImplBase fakeStorage =
102101
new StorageGrpc.StorageImplBase() {
@@ -173,7 +172,6 @@ public void autoGzipDecompress_false() throws IOException {
173172
}
174173
}
175174

176-
@Ignore
177175
public static final class Compressed {
178176

179177
private static final StorageGrpc.StorageImplBase fakeStorage =
@@ -319,7 +317,6 @@ public void storage_reader_returnRawInputStream_true() throws Exception {
319317
}
320318
}
321319

322-
@Ignore
323320
public static final class Behavior {
324321

325322
@Test

0 commit comments

Comments
 (0)