Skip to content

Commit

Permalink
chore: Temporarily disable tests due to Quota Issues (#1699)
Browse files Browse the repository at this point in the history
* chore: Temporarily disable ITLoggingTest.testListEntries()

* chore: Ignore additional tests

* chore: Ignore additional tests

* chore: Ignore additional tests
  • Loading branch information
lqiu96 authored Oct 1, 2024
1 parent 2b6ea70 commit 8cf7fb4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import java.util.logging.Level;
import java.util.logging.Logger;
import org.junit.After;
import org.junit.Ignore;
import org.junit.Test;

public class ITJulLoggerTest extends BaseSystemTest {
Expand All @@ -49,6 +50,7 @@ public void tearDown() throws InterruptedException {
assertTrue(cleanupLog(LOG_ID));
}

@Ignore
@Test
public void testLoggingHandler() throws InterruptedException {
LoggingOptions options = logging.getOptions();
Expand Down Expand Up @@ -85,6 +87,7 @@ public void testLoggingHandler() throws InterruptedException {
logger.removeHandler(handler);
}

@Ignore
@Test
public void testSyncLoggingHandler() throws InterruptedException {
LoggingOptions options = logging.getOptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import java.util.Iterator;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

public class ITLoggingTest extends BaseSystemTest {
Expand Down Expand Up @@ -82,6 +83,7 @@ public static void cleanUpLogs() throws InterruptedException {
assertTrue(cleanupLog(LOG_ID));
}

@Ignore
@Test(timeout = 600_000) // Note: it can take ~10 minutes for logs to propagate!
public void testListEntries() throws InterruptedException {
LoggingOptions loggingOptions = logging.getOptions();
Expand Down Expand Up @@ -115,6 +117,7 @@ public void testListEntries() throws InterruptedException {
assertNotNull(entry.getTimestamp());
}

@Ignore
@Test(timeout = 600_000) // Note: it can take ~10 minutes for logs to propagate!
public void testSortedOrder() throws InterruptedException {
LoggingOptions loggingOptions = logging.getOptions();
Expand All @@ -138,6 +141,7 @@ public void testSortedOrder() throws InterruptedException {
}
}

@Ignore
@Test
public void testDeleteNonExistingLog() {
String logId = formatForTest("test-delete-non-existing-log");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@
import java.util.Iterator;
import org.junit.After;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

@Ignore
public class ITTracingLogsTest extends BaseSystemTest {

private static final String LOG_ID = formatForTest("test-write-log-entries-log");
Expand Down

0 comments on commit 8cf7fb4

Please sign in to comment.