Package com.kurento.kmf.test.content

Source Code of com.kurento.kmf.test.content.ContentApiIncrementalPlayerTest$PlayerRedirect

/*
* (C) Copyright 2014 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.test.content;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;

import org.junit.Assert;
import org.junit.Test;

import com.kurento.kmf.content.HttpPlayerHandler;
import com.kurento.kmf.content.HttpPlayerService;
import com.kurento.kmf.content.HttpPlayerSession;
import com.kurento.kmf.media.HttpGetEndpoint;
import com.kurento.kmf.media.MediaPipeline;
import com.kurento.kmf.media.PlayerEndpoint;
import com.kurento.kmf.test.base.ContentApiTest;
import com.kurento.kmf.test.client.Browser;
import com.kurento.kmf.test.client.BrowserClient;
import com.kurento.kmf.test.client.Client;

/**
*
* <strong>Description</strong>: Test of a HTTP Player with incremental
* connection strategies: N incremental, each X seconds and with a hold time of
* 10 minutes; when N is reached, connect and disconnect elements from the
* pipeline.<br/>
* <strong>Pipeline</strong>:
* <ul>
* <li>PlayerEndpoint -> N x HttpGetEndpoint</li>
* </ul>
* <strong>Pass criteria</strong>:
* <ul>
* <li>Timeout waiting playing or ended events</li>
* <li>Timeout waiting onSessionTerminated</li>
* </ul>
*
* @author Micael Gallego (micael.gallego@gmail.com)
* @author Boni Garcia (bgarcia@gsyc.es)
* @since 4.2.3
*/
public class ContentApiIncrementalPlayerTest extends ContentApiTest {

  private static final String HANDLER = "/incrementalPlayer";
  private static final int NCLIENTS = 5;

  @HttpPlayerService(path = HANDLER, redirect = true, useControlProtocol = false)
  public static class PlayerRedirect extends HttpPlayerHandler {

    private static MediaPipeline mp;
    private static PlayerEndpoint playerEP;

    @Override
    public synchronized void onContentRequest(HttpPlayerSession session)
        throws Exception {
      if (mp == null) {
        mp = session.getMediaPipelineFactory().create();
        playerEP = mp.newPlayerEndpoint(
            "http://files.kurento.org/video/30sec/green.webm")
            .build();
        playerEP.play();
      }
      HttpGetEndpoint httpEP = mp.newHttpGetEndpoint().terminateOnEOS()
          .build();
      playerEP.connect(httpEP);
      session.start(httpEP);

      terminateLatch = new CountDownLatch(NCLIENTS);
    }

    @Override
    public void onSessionTerminated(HttpPlayerSession session, int code,
        String reason) throws Exception {
      super.onSessionTerminated(session, code, reason);
      terminateLatch.countDown();
    }
  }

  @Test
  public void testIncrementalPlayer() throws InterruptedException,
      ExecutionException {
    ExecutorService exec = Executors.newFixedThreadPool(NCLIENTS);

    List<Future<Boolean>> results = new ArrayList<>();
    for (int i = 0; i < NCLIENTS; i++) {
      results.add(exec.submit(new Callable<Boolean>() {
        @Override
        public Boolean call() throws InterruptedException {
          return createPlayer();
        }
      }));
      Thread.sleep(2000);
    }

    boolean result = true;

    for (Future<Boolean> r : results) {
      result &= r.get();
    }

    // Assertions
    Assert.assertTrue("Timeout waiting playing or ended events", result);
  }

  private boolean createPlayer() throws InterruptedException {
    try (BrowserClient browser = new BrowserClient.Builder()
        .browser(Browser.CHROME).client(Client.PLAYER).build()) {

      browser.setURL(HANDLER);
      browser.subscribeEvents("playing", "ended");
      browser.start();
      boolean result = browser.waitForEvent("playing")
          && browser.waitForEvent("ended");

      browser.stop();
      Assert.assertTrue(
          "Timeout waiting onSessionTerminated",
          terminateLatch.await(browser.getTimeout(), TimeUnit.SECONDS));

      return result;
    }
  }
}
TOP

Related Classes of com.kurento.kmf.test.content.ContentApiIncrementalPlayerTest$PlayerRedirect

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.