e7508fba9b1ee099cd99b638e6eda00b6043efc6
[zxing.git] / core / test / src / com / google / zxing / client / result / TelParsedResultTestCase.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 TelParsedResult}.
26  *
27  * @author Sean Owen
28  */
29 public final class TelParsedResultTestCase extends Assert {
30
31   @Test
32   public void testTel() {
33     doTest("tel:+15551212", "+15551212", null);
34     doTest("tel:2125551212", "2125551212", null);
35   }
36
37   private static void doTest(String contents, String number, String title) {
38     Result fakeResult = new Result(contents, null, null, BarcodeFormat.QR_CODE);
39     ParsedResult result = ResultParser.parseResult(fakeResult);
40     assertSame(ParsedResultType.TEL, result.getType());
41     TelParsedResult telResult = (TelParsedResult) result;
42     assertEquals(number, telResult.getNumber());
43     assertEquals(title, telResult.getTitle());
44     assertEquals("tel:" + number, telResult.getTelURI());
45   }
46
47 }