summaryrefslogtreecommitdiffstats
path: root/watchmaker/examples/src/java/test/org/uncommons/watchmaker/examples/travellingsalesman/RouteEvaluatorTest.java
blob: b6ca0ee6147bf19e239909c83528f9096e949c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//=============================================================================
// Copyright 2006-2010 Daniel W. Dyer
//
// 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.uncommons.watchmaker.examples.travellingsalesman;

import java.util.Arrays;
import java.util.List;
import org.testng.annotations.Test;

/**
 * Unit test for the route evaluator used by both Travelling Salesman
 * implementations.  Checks to make sure that route distances are
 * calculated correctly.
 * @author Daniel Dyer
 */
public class RouteEvaluatorTest
{
    /**
     * Test different routes to make sure the distances are calculated correctly.
     */
    @Test
    public void testDistanceCalculations()
    {
        RouteEvaluator evaluator = new RouteEvaluator(new TestDistances());

        List<String> route1 = Arrays.asList("City4", "City1", "City3", "City2");
        // Expected distance is sum of distances between adjacent cities on route
        // including returning to the start city.
        int expectedDistance1 = 8 + 5 + 13 + 21;
        int actualDistance1 = (int) evaluator.getFitness(route1, null);
        assert actualDistance1 == expectedDistance1 : "Distance should be " + expectedDistance1 + ", was " + actualDistance1;

        List<String> route2 = Arrays.asList("City3", "City4", "City2", "City1");
        // Expected distance is sum of distances between adjacent cities on route
        // including returning to the start city.
        int expectedDistance2 = 34 + 21 + 3 + 5;
        int actualDistance2 = (int) evaluator.getFitness(route2, null);
        assert actualDistance2 == expectedDistance2 : "Distance should be " + expectedDistance2 + ", was " + actualDistance2;
    }


    /**
     * Make sure the route evaluator works for end cases.
     */
    @Test
    public void testSingleCityRoute()
    {
        RouteEvaluator evaluator = new RouteEvaluator(new TestDistances());

        List<String> route = Arrays.asList("City1");
        // Expected distance is sum of distances between adjacent cities on route
        // including returning to the start city.
        int distance = (int) evaluator.getFitness(route, null);
        assert distance == 0 : "Distance should be 0, was " + distance;        
    }


}