Package com.kurento.kmf.media.test

Source Code of com.kurento.kmf.media.test.HttpGetEndpointAsyncTest

/*
* (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.test;

import static com.kurento.kmf.media.test.RtpEndpoint2Test.URL_SMALL;

import java.io.IOException;

import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

import com.kurento.kmf.media.HttpGetEndpoint;
import com.kurento.kmf.media.ListenerRegistration;
import com.kurento.kmf.media.PlayerEndpoint;
import com.kurento.kmf.media.events.EndOfStreamEvent;
import com.kurento.kmf.media.events.MediaEventListener;
import com.kurento.kmf.media.events.MediaSessionStartedEvent;
import com.kurento.kmf.media.events.MediaSessionTerminatedEvent;
import com.kurento.kmf.media.test.base.AsyncEventManager;
import com.kurento.kmf.media.test.base.AsyncResultManager;
import com.kurento.kmf.media.test.base.MediaPipelineAsyncBaseTest;

/**
* {@link HttpGetEndpoint} test suite.
*
* <p>
* Methods tested:
* <ul>
* <li>{@link HttpGetEndpoint#getUrl()}
* </ul>
* <p>
* Events tested:
* <ul>
* <li>
* {@link HttpGetEndpoint#addMediaSessionStartedListener(MediaEventListener)}
* <li>
* {@link HttpGetEndpoint#addMediaSessionTerminatedListener(MediaEventListener)}
* </ul>
*
*
* @author Ivan Gracia (igracia@gsyc.es)
* @version 1.0.0
*
*/
public class HttpGetEndpointAsyncTest extends MediaPipelineAsyncBaseTest {

  private HttpGetEndpoint httpEp;

  @Before
  public void setupMediaElements() throws InterruptedException {

    AsyncResultManager<HttpGetEndpoint> async = new AsyncResultManager<>(
        "HttpGetEndpoint creation");

    pipeline.newHttpGetEndpoint().buildAsync(async.getContinuation());

    httpEp = async.waitForResult();
  }

  @After
  public void teardownMediaElements() throws InterruptedException {
    releaseMediaObject(httpEp);
  }

  /**
   * Checks that the getUrl method does not return an empty string
   *
   * @throws InterruptedException
   */
  @Test
  public void testMethodGetUrl() throws InterruptedException {

    AsyncResultManager<String> async = new AsyncResultManager<>(
        "getUrl() method invocation");

    httpEp.getUrl(async.getContinuation());

    String url = async.waitForResult();

    Assert.assertTrue(url != null && !url.isEmpty());
  }

  /**
   * Test for {@link MediaSessionStartedEvent}
   *
   * @throws InterruptedException
   * @throws IOException
   */
  @Test
  public void testEventMediaSessionStarted() throws InterruptedException,
      IOException {

    final PlayerEndpoint player = pipeline.newPlayerEndpoint(URL_SMALL)
        .build();

    player.connect(httpEp);

    AsyncEventManager<EndOfStreamEvent> async = new AsyncEventManager<>(
        "EndOfStream event");

    player.addEndOfStreamListener(async.getMediaEventListener());

    AsyncResultManager<ListenerRegistration> async2 = new AsyncResultManager<ListenerRegistration>(
        "EventListener subscription");

    httpEp.addMediaSessionStartedListener(
        new MediaEventListener<MediaSessionStartedEvent>() {
          @Override
          public void onEvent(MediaSessionStartedEvent event) {
            player.play();
          }
        }, async2.getContinuation());

    async2.waitForResult();

    try (CloseableHttpClient httpclient = HttpClientBuilder.create()
        .build()) {
      // This should trigger MediaSessionStartedEvent
      httpclient.execute(new HttpGet(httpEp.getUrl()));
    }

    async.waitForResult();
    player.release();
  }

  /**
   * Test for {@link MediaSessionTerminatedEvent}
   *
   * @throws InterruptedException
   * @throws IOException
   */
  @Test
  public void testEventMediaSessionTerminated() throws InterruptedException,
      IOException {

    final PlayerEndpoint player = pipeline.newPlayerEndpoint(URL_SMALL)
        .build();

    player.connect(httpEp);

    httpEp.addMediaSessionStartedListener(new MediaEventListener<MediaSessionStartedEvent>() {
      @Override
      public void onEvent(MediaSessionStartedEvent event) {
        player.play();
      }
    });

    AsyncResultManager<ListenerRegistration> async = new AsyncResultManager<>(
        "EventListener subscription");

    AsyncEventManager<MediaSessionTerminatedEvent> asyncEvent = new AsyncEventManager<>(
        "MediaSessionTerminated event");

    httpEp.addMediaSessionTerminatedListener(
        asyncEvent.getMediaEventListener(), async.getContinuation());

    async.waitForResult();

    try (CloseableHttpClient httpclient = HttpClientBuilder.create()
        .build()) {
      // This should trigger MediaSessionStartedEvent
      httpclient.execute(new HttpGet(httpEp.getUrl()));
    }

    asyncEvent.waitForResult();
    player.release();

  }
}
TOP

Related Classes of com.kurento.kmf.media.test.HttpGetEndpointAsyncTest

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.