File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
google-cloud-logging/src/test/java/com/google/cloud/logging/it Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 38
38
import java .util .logging .Level ;
39
39
import java .util .logging .Logger ;
40
40
import org .junit .After ;
41
+ import org .junit .Ignore ;
41
42
import org .junit .Test ;
42
43
43
44
public class ITJulLoggerTest extends BaseSystemTest {
@@ -49,6 +50,7 @@ public void tearDown() throws InterruptedException {
49
50
assertTrue (cleanupLog (LOG_ID ));
50
51
}
51
52
53
+ @ Ignore
52
54
@ Test
53
55
public void testLoggingHandler () throws InterruptedException {
54
56
LoggingOptions options = logging .getOptions ();
@@ -85,6 +87,7 @@ public void testLoggingHandler() throws InterruptedException {
85
87
logger .removeHandler (handler );
86
88
}
87
89
90
+ @ Ignore
88
91
@ Test
89
92
public void testSyncLoggingHandler () throws InterruptedException {
90
93
LoggingOptions options = logging .getOptions ();
Original file line number Diff line number Diff line change 32
32
import java .util .Iterator ;
33
33
import org .junit .AfterClass ;
34
34
import org .junit .BeforeClass ;
35
+ import org .junit .Ignore ;
35
36
import org .junit .Test ;
36
37
37
38
public class ITLoggingTest extends BaseSystemTest {
@@ -82,6 +83,7 @@ public static void cleanUpLogs() throws InterruptedException {
82
83
assertTrue (cleanupLog (LOG_ID ));
83
84
}
84
85
86
+ @ Ignore
85
87
@ Test (timeout = 600_000 ) // Note: it can take ~10 minutes for logs to propagate!
86
88
public void testListEntries () throws InterruptedException {
87
89
LoggingOptions loggingOptions = logging .getOptions ();
@@ -115,6 +117,7 @@ public void testListEntries() throws InterruptedException {
115
117
assertNotNull (entry .getTimestamp ());
116
118
}
117
119
120
+ @ Ignore
118
121
@ Test (timeout = 600_000 ) // Note: it can take ~10 minutes for logs to propagate!
119
122
public void testSortedOrder () throws InterruptedException {
120
123
LoggingOptions loggingOptions = logging .getOptions ();
@@ -138,6 +141,7 @@ public void testSortedOrder() throws InterruptedException {
138
141
}
139
142
}
140
143
144
+ @ Ignore
141
145
@ Test
142
146
public void testDeleteNonExistingLog () {
143
147
String logId = formatForTest ("test-delete-non-existing-log" );
Original file line number Diff line number Diff line change 37
37
import java .util .Iterator ;
38
38
import org .junit .After ;
39
39
import org .junit .BeforeClass ;
40
+ import org .junit .Ignore ;
40
41
import org .junit .Test ;
41
42
43
+ @ Ignore
42
44
public class ITTracingLogsTest extends BaseSystemTest {
43
45
44
46
private static final String LOG_ID = formatForTest ("test-write-log-entries-log" );
You can’t perform that action at this time.
0 commit comments