Package org.apache.aurora.scheduler.async

Source Code of org.apache.aurora.scheduler.async.RandomJitterReturnDelayTest

/**
* 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.apache.aurora.scheduler.async;

import com.twitter.common.testing.easymock.EasyMockTest;
import com.twitter.common.util.Random;

import org.junit.Test;

import static org.easymock.EasyMock.expect;
import static org.junit.Assert.assertEquals;

public class RandomJitterReturnDelayTest extends EasyMockTest {
  private void assertRandomJitterReturnDelay(
      int minHoldTimeMs,
      int jitterWindowMs,
      boolean shouldThrow) {

    int randomValue = 123;

    Random mockRandom = control.createMock(Random.class);

    if (!shouldThrow) {
      expect(mockRandom.nextInt(jitterWindowMs)).andReturn(randomValue);
    }

    control.replay();

    assertEquals(
        minHoldTimeMs + randomValue,
        new RandomJitterReturnDelay(
            minHoldTimeMs,
            jitterWindowMs,
            mockRandom).get().getValue().intValue());
  }

  @Test
  public void testRandomJitterReturnDelay() throws Exception {
    assertRandomJitterReturnDelay(100, 200, false);
  }

  @Test(expected = IllegalArgumentException.class)
  public void testNegativeHoldTimeThrowsIllegalArgumentException() throws Exception {
    assertRandomJitterReturnDelay(-1, 200, true);
  }

  @Test(expected = IllegalArgumentException.class)
  public void testNegativeWindowThrowsIllegalArgumentException() throws Exception {
    assertRandomJitterReturnDelay(100, -1, true);
  }

  @Test
  public void testZeroHoldTime() throws Exception {
    assertRandomJitterReturnDelay(0, 200, false);
  }

  @Test
  public void testZeroWindow() throws Exception {
    assertRandomJitterReturnDelay(100, 0, false);
  }

  @Test
  public void testZeroHoldTimeZeroWindow() throws Exception {
    assertRandomJitterReturnDelay(0, 0, false);
  }
}
TOP

Related Classes of org.apache.aurora.scheduler.async.RandomJitterReturnDelayTest

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.