Package org.apache.s4.core.windowing

Source Code of org.apache.s4.core.windowing.WindowingPETest

/**
* 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.s4.core.windowing;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;

import org.apache.s4.base.Event;
import org.apache.s4.base.KeyFinder;
import org.apache.s4.core.App;
import org.apache.s4.core.AppModule;
import org.apache.s4.core.Stream;
import org.apache.s4.core.window.AbstractSlidingWindowPE;
import org.apache.s4.core.window.DefaultAggregatingSlot;
import org.apache.s4.core.window.DefaultAggregatingSlot.DefaultAggregatingSlotFactory;
import org.apache.s4.fixtures.MockCommModule;
import org.apache.s4.fixtures.MockCoreModule;
import org.junit.Assert;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import ch.qos.logback.classic.Level;

import com.google.common.collect.ImmutableList;
import com.google.inject.Guice;
import com.google.inject.Injector;

public class WindowingPETest {

    public static final long NB_EVENTS = 1000000;
    public static final CountDownLatch signalAllEventsProcessed = new CountDownLatch(1);
    public static final List<Integer> allValues = new ArrayList<Integer>();

    private static final String STREAM_NAME = "stream1";
    private static final String APP_NAME = "app1";

    @Test
    public void test() {
        ch.qos.logback.classic.Logger root = (ch.qos.logback.classic.Logger) LoggerFactory
                .getLogger(Logger.ROOT_LOGGER_NAME);
        root.setLevel(Level.DEBUG);
        Injector injector = Guice.createInjector(new MockCommModule(), new MockCoreModule(), new AppModule(getClass()
                .getClassLoader()));
        TestTimeWindowedApp app = injector.getInstance(TestTimeWindowedApp.class);
        app.init();
        app.start();

        for (int i = 0; i < NB_EVENTS; i++) {
            Event e = new Event();
            e.setStreamId(STREAM_NAME);
            e.put("value", Integer.class, (Integer) i);
            app.stream1.receiveEvent(e);
        }

        try {
            Assert.assertTrue(signalAllEventsProcessed.await(30, TimeUnit.SECONDS));
        } catch (InterruptedException e) {
            Assert.fail();
        }
        Assert.assertEquals(NB_EVENTS, allValues.size());
        for (int i = 0; i < NB_EVENTS; i++) {
            Assert.assertEquals((Integer) i, allValues.get(i));
        }
    }

    public static class TestTimeWindowedApp extends App {

        private Stream<Event> stream1;

        @Override
        protected void onStart() {
            // TODO Auto-generated method stub

        }

        @Override
        protected void onInit() {
            AbstractSlidingWindowPE<DefaultAggregatingSlot<Integer>, Integer, List<Integer>> wPE1 = createSlidingWindowPE(
                    WindowingPE1.class, 10L, TimeUnit.MILLISECONDS, 100000,
                    new DefaultAggregatingSlotFactory<Integer>());
            wPE1.setTimerInterval(10, TimeUnit.MILLISECONDS);
            stream1 = createStream(STREAM_NAME, new KeyFinder<Event>() {

                @Override
                public List<String> get(final Event event) {
                    return ImmutableList.of("X");
                }
            }, wPE1);

        }

        @Override
        protected void onClose() {
            // TODO Auto-generated method stub

        }

    }

}
TOP

Related Classes of org.apache.s4.core.windowing.WindowingPETest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.