com.kurento.kmf.media.ZBarFilterTest.java Source code

Java tutorial

Introduction

Here is the source code for com.kurento.kmf.media.ZBarFilterTest.java

Source

/*
 * (C) Copyright 2013 Kurento (http://kurento.org/)
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser General Public License
 * (LGPL) version 2.1 which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl-2.1.html
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 */
package com.kurento.kmf.media;

import static com.kurento.kmf.media.SyncMediaServerTest.URL_BARCODES;

import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.TimeUnit;

import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import com.kurento.kmf.common.exception.KurentoMediaFrameworkException;
import com.kurento.kmf.media.events.CodeFoundEvent;
import com.kurento.kmf.media.events.MediaEventListener;

/**
 * {@link HttpEndpoint} test suite.
 * 
 * <p>
 * Methods tested:
 * <ul>
 * <li>{@link HttpEndpoint#getUrl()}
 * </ul>
 * <p>
 * Events tested:
 * <ul>
 * <li>{@link HttpEndpoint#addMediaSessionStartListener(MediaEventListener)}
 * <li>
 * {@link HttpEndpoint#addMediaSessionTerminatedListener(MediaEventListener)}
 * </ul>
 * 
 * 
 * @author Ivan Gracia (igracia@gsyc.es)
 * @version 1.0.0
 * 
 */
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/kmf-api-test-context.xml")
public class ZBarFilterTest {

    @Autowired
    private MediaPipelineFactory pipelineFactory;

    private MediaPipeline pipeline;

    private ZBarFilter zbar;

    @Before
    public void setup() throws KurentoMediaFrameworkException {
        pipeline = pipelineFactory.create();
        zbar = pipeline.newZBarFilter().build();
    }

    @After
    public void teardown() {
        zbar.release();
        pipeline.release();
    }

    @Test
    public void testCodeFoundEvent() throws InterruptedException {
        PlayerEndpoint player = pipeline.newPlayerEndpoint(URL_BARCODES).build();
        player.connect(zbar);

        final BlockingQueue<CodeFoundEvent> events = new ArrayBlockingQueue<CodeFoundEvent>(1);

        zbar.addCodeFoundListener(new MediaEventListener<CodeFoundEvent>() {

            @Override
            public void onEvent(CodeFoundEvent event) {
                events.add(event);
            }
        });

        player.play();

        Assert.assertNotNull(events.poll(7, TimeUnit.SECONDS));

        player.stop();
        player.release();
    }

}