/* * 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.coheigea.bigdata.storm; import java.net.URI; import java.security.PrivilegedExceptionAction; import org.apache.hadoop.security.UserGroupInformation; import org.apache.storm.Config; import org.apache.storm.LocalCluster; import org.apache.storm.topology.TopologyBuilder; import org.apache.storm.utils.Utils; /** * A simple test that wires a WordSpout + WordCounterBolt into a topology and runs it. */ public class StormTest { @org.junit.BeforeClass public static void setup() throws Exception { System.setProperty("storm.conf.file", "storm_noauth.yaml"); } @org.junit.Test public void testStorm() throws Exception { final TopologyBuilder builder = new TopologyBuilder(); URI fileName = StormTest.class.getResource("../../../../../words.txt").toURI(); builder.setSpout("words", new WordSpout(fileName)); builder.setBolt("counter", new WordCounterBolt()).shuffleGrouping("words"); final Config conf = new Config(); conf.setDebug(true); final LocalCluster cluster = new LocalCluster(); UserGroupInformation ugi = UserGroupInformation.createUserForTesting("alice", new String[]{"IT"}); ugi.doAs(new PrivilegedExceptionAction<Void>() { public Void run() throws Exception { cluster.submitTopology("word-count", conf, builder.createTopology()); return null; } }); Utils.sleep(10000); ugi.doAs(new PrivilegedExceptionAction<Void>() { public Void run() throws Exception { cluster.killTopology("word-count"); return null; } }); cluster.shutdown(); } }