Skip to content

Commit

Permalink
test(tieredstorage): ignore tests about S3Mock
Browse files Browse the repository at this point in the history
1. ignore tests about S3Mock
  • Loading branch information
TheR1sing3un committed Jun 7, 2023
1 parent 050d7c8 commit ad10d00
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import java.io.ByteArrayInputStream;
Expand All @@ -41,6 +42,7 @@

import static org.apache.rocketmq.tieredstore.util.TieredStoreUtil.MB;

@Ignore
public class S3FileSegmentTest extends MockS3TestBase {

private static final TieredMessageStoreConfig CONFIG = new TieredMessageStoreConfig();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
import org.apache.rocketmq.tieredstore.provider.TieredFileSegment;

import java.io.IOException;
import org.junit.Ignore;

@Ignore
public class TieredDispatcherForS3Test extends TieredDispatcherBaseTest {

private MockS3TestBase mockS3TestBase = new MockS3TestBase();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
import org.apache.rocketmq.tieredstore.provider.TieredFileSegmentBaseTest;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;

@Ignore
public class TieredFileSegmentForS3Test extends TieredFileSegmentBaseTest {

private MockS3TestBase mockS3TestBase = new MockS3TestBase();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
import org.apache.rocketmq.tieredstore.TieredMessageFetcherBaseTest;

import java.io.IOException;
import org.junit.Ignore;

@Ignore
public class TieredMessageFetcherForS3Test extends TieredMessageFetcherBaseTest {

private MockS3TestBase mockS3TestBase = new MockS3TestBase();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import java.io.ByteArrayInputStream;
Expand All @@ -33,6 +34,7 @@

import static org.apache.rocketmq.tieredstore.util.TieredStoreUtil.MB;

@Ignore
public class TieredStorageS3ClientTest extends MockS3TestBase {

private static final TieredMessageStoreConfig CONFIG = new TieredMessageStoreConfig();
Expand Down

0 comments on commit ad10d00

Please sign in to comment.