本文整理匯總了Java中org.apache.storm.testing.CompleteTopologyParam類的典型用法代碼示例。如果您正苦於以下問題:Java CompleteTopologyParam類的具體用法?Java CompleteTopologyParam怎麽用?Java CompleteTopologyParam使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
CompleteTopologyParam類屬於org.apache.storm.testing包,在下文中一共展示了CompleteTopologyParam類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: setupOnce
import org.apache.storm.testing.CompleteTopologyParam; //導入依賴的package包/類
@BeforeClass
public static void setupOnce() throws Exception {
System.out.println("------> Creating Sheep \uD83D\uDC11\n");
clusterParam = new MkClusterParam();
clusterParam.setSupervisors(1);
Config daemonConfig = new Config();
daemonConfig.put(Config.STORM_LOCAL_MODE_ZMQ, false);
clusterParam.setDaemonConf(daemonConfig);
makeConfigFile();
Config conf = new Config();
conf.setNumWorkers(1);
completeTopologyParam = new CompleteTopologyParam();
completeTopologyParam.setStormConf(conf);
}
示例2: verifyEmittedValues
import org.apache.storm.testing.CompleteTopologyParam; //導入依賴的package包/類
@Test
public void verifyEmittedValues() {
MkClusterParam clusterParam = new MkClusterParam();
clusterParam.setSupervisors(1);
withSimulatedTimeLocalCluster(clusterParam, new TestJob() {
@Override
public void run(ILocalCluster cluster) throws JsonProcessingException {
MockedSources mockedSources = new MockedSources();
mockedSources.addMockData(builder.getSpoutId(), new Values(SWITCH_ID));
Config config = new Config();
config.setDebug(true);
CompleteTopologyParam topologyParam = new CompleteTopologyParam();
topologyParam.setMockedSources(mockedSources);
topologyParam.setStormConf(config);
Map<?, ?> result = completeTopology(cluster, builder.build(), topologyParam);
assertTrue(multiseteq(new Values(new Values(SWITCH_ID)),
readTuples(result, builder.getSpoutId())));
assertTrue(multiseteq(new Values(new Values(SWITCH_ID)),
readTuples(result, builder.getConfirmationBoltId())));
}
});
}