pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / spatial / src / test / org / apache / lucene / spatial / geometry / TestDistanceUnits.java
1 package org.apache.lucene.spatial.geometry;
2
3 /**
4  * Licensed to the Apache Software Foundation (ASF) under one or more
5  * contributor license agreements.  See the NOTICE file distributed with
6  * this work for additional information regarding copyright ownership.
7  * The ASF licenses this file to You under the Apache License, Version 2.0
8  * (the "License"); you may not use this file except in compliance with
9  * the License.  You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 import org.apache.lucene.util.LuceneTestCase;
21 import org.junit.Test;
22
23 /**
24  * Tests for {@link org.apache.lucene.spatial.geometry.DistanceUnits}
25  */
26 public class TestDistanceUnits extends LuceneTestCase {
27
28   /**
29    * Pass condition: When finding the DistanceUnit for "km", KILOMETRES is found.  When finding the DistanceUnit for
30    * "miles", MILES is found.
31    */
32   @Test
33   public void testFindDistanceUnit() {
34     assertEquals(DistanceUnits.KILOMETERS, DistanceUnits.findDistanceUnit("km"));
35     assertEquals(DistanceUnits.MILES, DistanceUnits.findDistanceUnit("miles"));
36   }
37
38   /**
39    * Pass condition: Searching for the DistanceUnit of an unknown unit "mls" should throw an IllegalArgumentException.
40    */
41   @Test
42   public void testFindDistanceUnit_unknownUnit() {
43     try {
44       DistanceUnits.findDistanceUnit("mls");
45       assertTrue("IllegalArgumentException should have been thrown", false);
46     } catch (IllegalArgumentException iae) {
47       // Expected
48     }
49   }
50
51   /**
52    * Pass condition: Converting between the same units should not change the value.  Converting from MILES to KILOMETRES
53    * involves multiplying the distance by the ratio, and converting from KILOMETRES to MILES involves dividing by the ratio
54    */
55   @Test
56   public void testConvert() {
57     assertEquals(10.5, DistanceUnits.MILES.convert(10.5, DistanceUnits.MILES), 0D);
58     assertEquals(10.5, DistanceUnits.KILOMETERS.convert(10.5, DistanceUnits.KILOMETERS), 0D);
59     assertEquals(10.5 * 1.609344, DistanceUnits.KILOMETERS.convert(10.5, DistanceUnits.MILES), 0D);
60     assertEquals(10.5 / 1.609344, DistanceUnits.MILES.convert(10.5, DistanceUnits.KILOMETERS), 0D);
61   }
62 }