At last update to JUnit 4.x
[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 com.google.zxing.BarcodeFormat;
20 import com.google.zxing.Result;
21 import org.junit.Assert;
22 import org.junit.Test;
23
24 import java.util.Arrays;
25
26 /**
27  * Tests {@link SMSParsedResult}.
28  *
29  * @author Sean Owen
30  */
31 public final class SMSMMSParsedResultTestCase extends Assert {
32
33   @Test
34   public void testSMS() {
35     doTest("sms:+15551212", "+15551212", null, null, null);
36     doTest("sms:+15551212?subject=foo&body=bar", "+15551212", "foo", "bar", null);
37     doTest("sms:+15551212;via=999333", "+15551212", null, null, "999333");
38   }
39
40   @Test
41   public void testMMS() {
42     doTest("mms:+15551212", "+15551212", null, null, null);
43     doTest("mms:+15551212?subject=foo&body=bar", "+15551212", "foo", "bar", null);
44     doTest("mms:+15551212;via=999333", "+15551212", null, null, "999333");
45   }
46
47   private static void doTest(String contents, String number, String subject, String body, String via) {
48     doTest(contents, new String[] {number}, subject, body, new String[] {via});
49   }
50
51   private static void doTest(String contents, String[] numbers, String subject, String body, String[] vias) {
52     Result fakeResult = new Result(contents, null, null, BarcodeFormat.QR_CODE);
53     ParsedResult result = ResultParser.parseResult(fakeResult);
54     assertSame(ParsedResultType.SMS, result.getType());
55     SMSParsedResult smsResult = (SMSParsedResult) result;
56     assertTrue(Arrays.equals(numbers, smsResult.getNumbers()));
57     assertEquals(subject, smsResult.getSubject());
58     assertEquals(body, smsResult.getBody());
59     assertTrue(Arrays.equals(vias, smsResult.getVias()));
60   }
61
62 }