Add more unit tests for client.result, and more small code tweaks.
[zxing.git] / core / test / src / com / google / zxing / client / result / SMSMMSParsedResultTestCase.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 junit.framework.TestCase;
20 import com.google.zxing.Result;
21 import com.google.zxing.BarcodeFormat;
22
23 /**
24  * Tests {@link SMSParsedResult}.
25  *
26  * @author Sean Owen
27  */
28 public final class SMSMMSParsedResultTestCase extends TestCase {
29    
30   public void testSMS() {
31     doTest("sms:+15551212", "+15551212", null, null, null);
32     doTest("sms:+15551212?subject=foo&body=bar", "+15551212", "foo", "bar", null);
33     doTest("sms:+15551212;via=999333", "+15551212", null, null, "999333");
34   }
35
36   public void testMMS() {
37     doTest("mms:+15551212", "+15551212", null, null, null);
38     doTest("mms:+15551212?subject=foo&body=bar", "+15551212", "foo", "bar", null);
39     doTest("mms:+15551212;via=999333", "+15551212", null, null, "999333");
40   }
41
42   private static void doTest(String contents, String number, String subject, String body, String via) {
43     Result fakeResult = new Result(contents, null, null, BarcodeFormat.QR_CODE);
44     ParsedResult result = ResultParser.parseResult(fakeResult);
45     assertEquals(ParsedResultType.SMS, result.getType());
46     SMSParsedResult smsResult = (SMSParsedResult) result;
47     assertEquals(number, smsResult.getNumber());
48     assertEquals(subject, smsResult.getSubject());
49     assertEquals(body, smsResult.getBody());
50     assertEquals(via, smsResult.getVia());
51     assertEquals("sms:" + number, smsResult.getSMSURI());
52   }
53
54 }