blob: 8eb7070a23ca3c0286fca5924b2325cf804051fd [file] [log] [blame]
/**
* 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.updater.strategy;
import java.util.Set;
import com.google.common.collect.Ordering;
import org.junit.Test;
import static com.google.common.collect.ImmutableSet.of;
import static org.junit.Assert.assertEquals;
public class BatchStrategyTest {
private static final Ordering<Integer> ORDERING = Ordering.natural();
private static final Set<Integer> EMPTY = of();
@Test(expected = IllegalArgumentException.class)
public void testBadParameter() {
new BatchStrategy<>(ORDERING, 0);
}
@Test
public void testNoWorkToDo() {
UpdateStrategy<Integer> strategy = new BatchStrategy<>(ORDERING, 2);
assertEquals(EMPTY, strategy.getNextGroup(EMPTY, of(0, 1)));
assertEquals(EMPTY, strategy.getNextGroup(EMPTY, EMPTY));
}
@Test
public void testWaitForBatchCompletion() {
UpdateStrategy<Integer> strategy = new BatchStrategy<>(ORDERING, 2);
assertEquals(EMPTY, strategy.getNextGroup(of(2, 3), of(0, 1)));
assertEquals(EMPTY, strategy.getNextGroup(of(2, 3), of(1)));
assertEquals(of(2, 3), strategy.getNextGroup(of(2, 3), EMPTY));
}
@Test
public void testBatchesIgnoreInstanceValues() {
// Batches are defined as groups of instances, not partitioned based on the instance ID values.
UpdateStrategy<Integer> strategy = new BatchStrategy<>(ORDERING, 2);
assertEquals(of(0, 1), strategy.getNextGroup(of(0, 1, 2, 3), EMPTY));
assertEquals(of(1, 2), strategy.getNextGroup(of(1, 2, 3), EMPTY));
assertEquals(of(2, 3), strategy.getNextGroup(of(2, 3), EMPTY));
assertEquals(of(3, 8), strategy.getNextGroup(of(3, 8), EMPTY));
}
@Test
public void testExhausted() {
UpdateStrategy<Integer> strategy = new BatchStrategy<>(ORDERING, 3);
assertEquals(of(0, 1, 2), strategy.getNextGroup(of(0, 1, 2), EMPTY));
assertEquals(of(0, 1), strategy.getNextGroup(of(0, 1), EMPTY));
assertEquals(of(1), strategy.getNextGroup(of(1), EMPTY));
}
@Test
public void testActiveTooLarge() {
UpdateStrategy<Integer> strategy = new BatchStrategy<>(ORDERING, 2);
assertEquals(EMPTY, strategy.getNextGroup(of(0, 1, 2), of(3, 4, 5)));
}
}