/* * Copyright 2015 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.score.buildin.hardmediumsoftlong; import org.junit.Test; import org.optaplanner.core.api.score.buildin.hardmediumsoftlong.HardMediumSoftLongScore; import org.optaplanner.core.config.score.trend.InitializingScoreTrendLevel; import org.optaplanner.core.impl.score.trend.InitializingScoreTrend; import static org.junit.Assert.*; public class HardMediumSoftLongScoreDefinitionTest { @Test public void getLevelsSize() { assertEquals(3, new HardMediumSoftLongScoreDefinition().getLevelsSize()); } @Test public void getLevelLabels() { assertArrayEquals(new String[]{"hard score", "medium score", "soft score"}, new HardMediumSoftLongScoreDefinition().getLevelLabels()); } @Test public void getFeasibleLevelsSize() { assertEquals(1, new HardMediumSoftLongScoreDefinition().getFeasibleLevelsSize()); } @Test public void buildOptimisticBoundOnlyUp() { HardMediumSoftLongScoreDefinition scoreDefinition = new HardMediumSoftLongScoreDefinition(); HardMediumSoftLongScore optimisticBound = scoreDefinition.buildOptimisticBound( InitializingScoreTrend.buildUniformTrend(InitializingScoreTrendLevel.ONLY_UP, 3), HardMediumSoftLongScore.valueOf(-1L, -2L, -3L)); assertEquals(0, optimisticBound.getInitScore()); assertEquals(Long.MAX_VALUE, optimisticBound.getHardScore()); assertEquals(Long.MAX_VALUE, optimisticBound.getMediumScore()); assertEquals(Long.MAX_VALUE, optimisticBound.getSoftScore()); } @Test public void buildOptimisticBoundOnlyDown() { HardMediumSoftLongScoreDefinition scoreDefinition = new HardMediumSoftLongScoreDefinition(); HardMediumSoftLongScore optimisticBound = scoreDefinition.buildOptimisticBound( InitializingScoreTrend.buildUniformTrend(InitializingScoreTrendLevel.ONLY_DOWN, 3), HardMediumSoftLongScore.valueOf(-1L, -2L, -3L)); assertEquals(0, optimisticBound.getInitScore()); assertEquals(-1L, optimisticBound.getHardScore()); assertEquals(-2L, optimisticBound.getMediumScore()); assertEquals(-3L, optimisticBound.getSoftScore()); } @Test public void buildPessimisticBoundOnlyUp() { HardMediumSoftLongScoreDefinition scoreDefinition = new HardMediumSoftLongScoreDefinition(); HardMediumSoftLongScore pessimisticBound = scoreDefinition.buildPessimisticBound( InitializingScoreTrend.buildUniformTrend(InitializingScoreTrendLevel.ONLY_UP, 3), HardMediumSoftLongScore.valueOf(-1L, -2L, -3L)); assertEquals(0, pessimisticBound.getInitScore()); assertEquals(-1L, pessimisticBound.getHardScore()); assertEquals(-2L, pessimisticBound.getMediumScore()); assertEquals(-3L, pessimisticBound.getSoftScore()); } @Test public void buildPessimisticBoundOnlyDown() { HardMediumSoftLongScoreDefinition scoreDefinition = new HardMediumSoftLongScoreDefinition(); HardMediumSoftLongScore pessimisticBound = scoreDefinition.buildPessimisticBound( InitializingScoreTrend.buildUniformTrend(InitializingScoreTrendLevel.ONLY_DOWN, 3), HardMediumSoftLongScore.valueOf(-1L, -2L, -3L)); assertEquals(0, pessimisticBound.getInitScore()); assertEquals(Long.MIN_VALUE, pessimisticBound.getHardScore()); assertEquals(Long.MIN_VALUE, pessimisticBound.getMediumScore()); assertEquals(Long.MIN_VALUE, pessimisticBound.getSoftScore()); } }