At last update to JUnit 4.x
[zxing.git] / core / test / src / com / google / zxing / client / result / GeoParsedResultTestCase.java
1 /*
2  * Copyright 2007 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.result;
18
19 import com.google.zxing.BarcodeFormat;
20 import com.google.zxing.Result;
21 import org.junit.Assert;
22 import org.junit.Test;
23
24 /**
25  * Tests {@link com.google.zxing.client.result.GeoParsedResult}.
26  *
27  * @author Sean Owen
28  */
29 public final class GeoParsedResultTestCase extends Assert {
30
31   private static final double EPSILON = 0.0000000001;
32
33   @Test
34   public void testGeo() {
35     doTest("geo:1,2", 1.0, 2.0, 0.0, null);
36     doTest("geo:80.33,-32.3344,3.35", 80.33, -32.3344, 3.35, null);
37     doTest("geo:-20.33,132.3344,0.01", -20.33, 132.3344, 0.01, null);
38     doTest("geo:-20.33,132.3344,0.01?q=foobar", -20.33, 132.3344, 0.01, "q=foobar");
39   }
40
41   private static void doTest(String contents,
42                              double latitude,
43                              double longitude,
44                              double altitude,
45                              String query) {
46     Result fakeResult = new Result(contents, null, null, BarcodeFormat.QR_CODE);
47     ParsedResult result = ResultParser.parseResult(fakeResult);
48     assertSame(ParsedResultType.GEO, result.getType());
49     GeoParsedResult geoResult = (GeoParsedResult) result;
50     assertEquals(latitude, geoResult.getLatitude(), EPSILON);
51     assertEquals(longitude, geoResult.getLongitude(), EPSILON);
52     assertEquals(altitude, geoResult.getAltitude(), EPSILON);
53     assertEquals(query, geoResult.getQuery());
54   }
55
56 }