blob: 889da1edd0a923a1ac754ef7a74eae17344edb71 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.storm.st;
import org.apache.storm.st.helper.AbstractTest;
import org.apache.storm.st.wrapper.TopoWrap;
import org.apache.storm.ExclamationTopology;
import org.apache.storm.generated.TopologyInfo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.Test;
import org.apache.storm.st.utils.TimeUtil;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
public final class DemoTest extends AbstractTest {
private static final Logger log = LoggerFactory.getLogger(DemoTest.class);
private static final List<String> exclaim2Output = ExclamationTopology.FixedOrderWordSpout.WORDS.stream()
.map(word -> word + "!!!!!!")
.collect(Collectors.toList());
protected final String topologyName = this.getClass().getSimpleName();
private TopoWrap topo;
@Test
public void testExclamationTopology() throws Exception {
topo = new TopoWrap(cluster, topologyName, ExclamationTopology.getStormTopology());
topo.submitSuccessfully();
final int minExclaim2Emits = 500;
final int minSpountEmits = 10000;
topo.assertProgress(minSpountEmits, ExclamationTopology.SPOUT_EXECUTORS, ExclamationTopology.WORD, 180);
topo.assertProgress(minExclaim2Emits, ExclamationTopology.EXCLAIM_2_EXECUTORS, ExclamationTopology.EXCLAIM_2, 180);
Set<TopoWrap.ExecutorURL> boltUrls = topo.getLogUrls(ExclamationTopology.WORD);
log.info(boltUrls.toString());
final String actualOutput = topo.getLogs(ExclamationTopology.EXCLAIM_2);
for (String oneExpectedOutput : exclaim2Output) {
Assert.assertTrue(actualOutput.contains(oneExpectedOutput), "Couldn't find " + oneExpectedOutput + " in urls");
}
}
@AfterMethod
public void cleanup() throws Exception {
if (topo != null) {
topo.killOrThrow();
topo = null;
}
}
}