Skip to content

Commit

Permalink
Pipe IT: Fix for release
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveYurongSu committed Jan 26, 2025
1 parent 4cd2902 commit 4b56d9d
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import org.apache.iotdb.itbase.env.BaseEnv;

import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
Expand All @@ -48,6 +49,7 @@
@Category({MultiClusterIT2AutoCreateSchema.class})
public class IoTDBPipeAlterIT extends AbstractPipeDualAutoIT {

@Ignore
@Test
public void testBasicAlterPipe() throws Exception {
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);
Expand Down Expand Up @@ -462,6 +464,7 @@ public void testAlterPipeFailure() {
}
}

@Ignore
@Test
public void testAlterPipeSourceAndProcessor() {
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
Expand Down Expand Up @@ -104,11 +105,13 @@ public void testCompression4() throws Exception {
doTest("iotdb-thrift-sync-connector", "batch", true, "gzip, zstd");
}

@Ignore
@Test
public void testCompression5() throws Exception {
doTest("iotdb-air-gap-connector", "stream", false, "lzma2, lz4");
}

@Ignore
@Test
public void testCompression6() throws Exception {
doTest("iotdb-air-gap-connector", "batch", true, "lzma2");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
Expand Down Expand Up @@ -596,6 +597,7 @@ public void testMatchingMultipleDatabases() throws Exception {
}
}

@Ignore
@Test
public void testHistoryAndRealtime() throws Exception {
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
Expand Down Expand Up @@ -74,6 +75,7 @@ public void setUp() {
receiverEnv.initClusterEnvironment();
}

@Ignore
@Test
public void testTumblingTimeSamplingProcessor() throws Exception {
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import org.apache.iotdb.itbase.env.BaseEnv;

import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
Expand All @@ -45,6 +46,7 @@
@Category({MultiClusterIT2TableModel.class})
public class IoTDBPipeAlterIT extends AbstractPipeTableModelTestIT {

@Ignore
@Test
public void testBasicAlterPipe() throws Exception {
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
Expand Down Expand Up @@ -105,11 +106,13 @@ public void testCompression4() throws Exception {
doTest("iotdb-thrift-sync-connector", "batch", true, "gzip, zstd");
}

@Ignore
@Test
public void testCompression5() throws Exception {
doTest("iotdb-air-gap-connector", "stream", false, "lzma2, lz4");
}

@Ignore
@Test
public void testCompression6() throws Exception {
doTest("iotdb-air-gap-connector", "batch", true, "lzma2");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ public void testMatchingMultipleDatabases() throws Exception {
}
}

@Ignore
@Test
public void testHistoryAndRealtime() throws Exception {
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);
Expand Down

0 comments on commit 4b56d9d

Please sign in to comment.