All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kurento.test.utils.EventWaiter Maven / Gradle / Ivy

Go to download

This project contains test cases for testing Kurento Java Client and Kurento Media Server.

There is a newer version: 6.18.0
Show newest version
/*
 * (C) Copyright 2016 Kurento (http://kurento.org/)
 *
 * Licensed 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.kurento.test.utils;

import static org.assertj.core.api.Assertions.assertThat;

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

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class EventWaiter {

  private static final long DEFAULT_WAIT_MILLIS = 30000;

  private static final Logger log = LoggerFactory.getLogger(EventWaiter.class);

  private CountDownLatch latch = new CountDownLatch(1);
  private String name;

  public EventWaiter(String name) {
    this.name = name;
  }

  public void eventReceived() {
    latch.countDown();
  }

  public String getName() {
    return name;
  }

  public void waitFor() {
    waitFor(DEFAULT_WAIT_MILLIS);
  }

  public void waitFor(long waitMillis) {

    log.debug("Start waiting {} ms for event '{}'", waitMillis, name);
    long start = System.currentTimeMillis();

    try {
      assertThat(latch.await(waitMillis, TimeUnit.MILLISECONDS))
          .as("Event '" + name + "' is received before " + waitMillis + " ms").isTrue();

    } catch (InterruptedException e) {
      throw new RuntimeException("Waiting for event '" + name + "' has been interrupted");
    }

    long time = System.currentTimeMillis() - start;
    log.debug("Event '{}' is received in {} ms", name, time);

  }

  public boolean isEventRecived() {
    return latch.getCount() == 0;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy