/* * Copyright 2012 Red Hat, Inc. and/or its affiliates. * * 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.optaplanner.core.impl.heuristic.selector.value.decorator; import java.util.Comparator; import org.junit.Test; import org.optaplanner.core.config.heuristic.selector.common.SelectionCacheType; import org.optaplanner.core.impl.heuristic.selector.SelectorTestUtils; import org.optaplanner.core.impl.heuristic.selector.common.decorator.SelectionSorter; import org.optaplanner.core.impl.heuristic.selector.value.EntityIndependentValueSelector; import org.optaplanner.core.impl.phase.scope.AbstractPhaseScope; import org.optaplanner.core.impl.phase.scope.AbstractStepScope; import org.optaplanner.core.impl.solver.scope.DefaultSolverScope; import org.optaplanner.core.impl.testdata.domain.TestdataEntity; import org.optaplanner.core.impl.testdata.domain.TestdataObject; import org.optaplanner.core.impl.testdata.domain.TestdataSolution; import org.optaplanner.core.impl.testdata.domain.TestdataValue; import static org.mockito.Mockito.*; import static org.optaplanner.core.impl.testdata.util.PlannerAssert.*; public class SortingValueSelectorTest { @Test public void originalSelectionCacheTypeSolver() { runOriginalSelection(SelectionCacheType.SOLVER, 1); } @Test public void originalSelectionCacheTypePhase() { runOriginalSelection(SelectionCacheType.PHASE, 2); } @Test public void originalSelectionCacheTypeStep() { runOriginalSelection(SelectionCacheType.STEP, 5); } public void runOriginalSelection(SelectionCacheType cacheType, int timesCalled) { EntityIndependentValueSelector childValueSelector = SelectorTestUtils.mockEntityIndependentValueSelector( TestdataEntity.class, "value", new TestdataValue("jan"), new TestdataValue("feb"), new TestdataValue("mar"), new TestdataValue("apr"), new TestdataValue("may"), new TestdataValue("jun")); SelectionSorter<TestdataSolution, TestdataValue> sorter = (scoreDirector, selectionList) -> selectionList.sort(Comparator.comparing(TestdataObject::getCode)); EntityIndependentValueSelector valueSelector = new SortingValueSelector(childValueSelector, cacheType, sorter); DefaultSolverScope solverScope = mock(DefaultSolverScope.class); valueSelector.solvingStarted(solverScope); AbstractPhaseScope phaseScopeA = mock(AbstractPhaseScope.class); when(phaseScopeA.getSolverScope()).thenReturn(solverScope); valueSelector.phaseStarted(phaseScopeA); AbstractStepScope stepScopeA1 = mock(AbstractStepScope.class); when(stepScopeA1.getPhaseScope()).thenReturn(phaseScopeA); valueSelector.stepStarted(stepScopeA1); assertAllCodesOfValueSelector(valueSelector, "apr", "feb", "jan", "jun", "mar", "may"); valueSelector.stepEnded(stepScopeA1); AbstractStepScope stepScopeA2 = mock(AbstractStepScope.class); when(stepScopeA2.getPhaseScope()).thenReturn(phaseScopeA); valueSelector.stepStarted(stepScopeA2); assertAllCodesOfValueSelector(valueSelector, "apr", "feb", "jan", "jun", "mar", "may"); valueSelector.stepEnded(stepScopeA2); valueSelector.phaseEnded(phaseScopeA); AbstractPhaseScope phaseScopeB = mock(AbstractPhaseScope.class); when(phaseScopeB.getSolverScope()).thenReturn(solverScope); valueSelector.phaseStarted(phaseScopeB); AbstractStepScope stepScopeB1 = mock(AbstractStepScope.class); when(stepScopeB1.getPhaseScope()).thenReturn(phaseScopeB); valueSelector.stepStarted(stepScopeB1); assertAllCodesOfValueSelector(valueSelector, "apr", "feb", "jan", "jun", "mar", "may"); valueSelector.stepEnded(stepScopeB1); AbstractStepScope stepScopeB2 = mock(AbstractStepScope.class); when(stepScopeB2.getPhaseScope()).thenReturn(phaseScopeB); valueSelector.stepStarted(stepScopeB2); assertAllCodesOfValueSelector(valueSelector, "apr", "feb", "jan", "jun", "mar", "may"); valueSelector.stepEnded(stepScopeB2); AbstractStepScope stepScopeB3 = mock(AbstractStepScope.class); when(stepScopeB3.getPhaseScope()).thenReturn(phaseScopeB); valueSelector.stepStarted(stepScopeB3); assertAllCodesOfValueSelector(valueSelector, "apr", "feb", "jan", "jun", "mar", "may"); valueSelector.stepEnded(stepScopeB3); valueSelector.phaseEnded(phaseScopeB); valueSelector.solvingEnded(solverScope); verifyPhaseLifecycle(childValueSelector, 1, 2, 5); verify(childValueSelector, times(timesCalled)).iterator(); verify(childValueSelector, times(timesCalled)).getSize(); } }