Search in sources :

Example 6 with ReplicaSetsContext

use of org.apache.connect.mongo.replicator.ReplicaSetsContext in project rocketmq-externals by apache.

the class ReplicaContextTest method before.

@Before
public void before() {
    SourceTaskConfig sourceTaskConfig = new SourceTaskConfig();
    context = new ReplicaSetsContext(sourceTaskConfig);
}
Also used : ReplicaSetsContext(org.apache.connect.mongo.replicator.ReplicaSetsContext) Before(org.junit.Before)

Example 7 with ReplicaSetsContext

use of org.apache.connect.mongo.replicator.ReplicaSetsContext in project rocketmq-externals by apache.

the class MongoSourceTaskTest method testContextStart.

@Test
public void testContextStart() throws NoSuchFieldException, IllegalAccessException {
    MongoSourceTask mongoSourceTask = new MongoSourceTask();
    DefaultKeyValue defaultKeyValue = new DefaultKeyValue();
    defaultKeyValue.put("mongoAddr", "test/127.0.0.1:27027");
    defaultKeyValue.put("serverSelectionTimeoutMS", "10");
    Field context = SourceTask.class.getDeclaredField("context");
    context.setAccessible(true);
    context.set(mongoSourceTask, TaskContext());
    mongoSourceTask.start(defaultKeyValue);
    Field replicaSetsContext = MongoSourceTask.class.getDeclaredField("replicaSetsContext");
    replicaSetsContext.setAccessible(true);
    ReplicaSetsContext setsContext = (ReplicaSetsContext) replicaSetsContext.get(mongoSourceTask);
    Field replicaSets = ReplicaSetsContext.class.getDeclaredField("replicaSets");
    replicaSets.setAccessible(true);
    List<ReplicaSet> replicaSetList = (List<ReplicaSet>) replicaSets.get(setsContext);
    Assert.assertTrue(replicaSetList.size() == 1);
    ReplicaSet replicaSet = replicaSetList.get(0);
    Field replicaSetConfig = ReplicaSet.class.getDeclaredField("replicaSetConfig");
    replicaSetConfig.setAccessible(true);
    ReplicaSetConfig replicaSetConfig1 = (ReplicaSetConfig) replicaSetConfig.get(replicaSet);
    Assert.assertTrue(StringUtils.equals(replicaSetConfig1.getReplicaSetName(), "test"));
    Assert.assertTrue(StringUtils.equals(replicaSetConfig1.getHost(), "127.0.0.1:27027"));
    Assert.assertTrue(replicaSetConfig1.getPosition().getTimeStamp() == 22222222);
    Assert.assertTrue(replicaSetConfig1.getPosition().getInc() == 222);
    Assert.assertTrue(!replicaSetConfig1.getPosition().isInitSync());
}
Also used : DefaultKeyValue(io.openmessaging.internal.DefaultKeyValue) Field(java.lang.reflect.Field) ReplicaSetConfig(org.apache.connect.mongo.replicator.ReplicaSetConfig) ReplicaSetsContext(org.apache.connect.mongo.replicator.ReplicaSetsContext) List(java.util.List) ReplicaSet(org.apache.connect.mongo.replicator.ReplicaSet) MongoSourceTask(org.apache.connect.mongo.connector.MongoSourceTask) Test(org.junit.Test)

Aggregations

ReplicaSetsContext (org.apache.connect.mongo.replicator.ReplicaSetsContext)7 ReplicaSet (org.apache.connect.mongo.replicator.ReplicaSet)5 ReplicaSetConfig (org.apache.connect.mongo.replicator.ReplicaSetConfig)5 Field (java.lang.reflect.Field)4 List (java.util.List)4 Test (org.junit.Test)4 ByteBuffer (java.nio.ByteBuffer)3 Position (org.apache.connect.mongo.replicator.Position)3 JSONObject (com.alibaba.fastjson.JSONObject)2 EntryType (io.openmessaging.connector.api.data.EntryType)2 Schema (io.openmessaging.connector.api.data.Schema)2 SourceDataEntry (io.openmessaging.connector.api.data.SourceDataEntry)2 DefaultKeyValue (io.openmessaging.internal.DefaultKeyValue)2 MongoSourceTask (org.apache.connect.mongo.connector.MongoSourceTask)2 Document (org.bson.Document)2 Before (org.junit.Before)2 ConnectionString (com.mongodb.ConnectionString)1 ArrayList (java.util.ArrayList)1 HashMap (java.util.HashMap)1 LinkedBlockingQueue (java.util.concurrent.LinkedBlockingQueue)1