Support SMTP URLs
[zxing.git] / core / test / src / com / google / zxing / client / result / EmailAddressParsedResultTestCase.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 junit.framework.TestCase;
22
23 /**
24  * Tests {@link EmailAddressParsedResult}.
25  *
26  * @author Sean Owen
27  */
28 public final class EmailAddressParsedResultTestCase extends TestCase {
29
30   public void testEmailAddress() {
31     doTest("srowen@example.org", "srowen@example.org", null, null);
32     doTest("mailto:srowen@example.org", "srowen@example.org", null, null);
33   }
34
35   public void testEmailDocomo() {
36     doTest("MATMSG:TO:srowen@example.org;;", "srowen@example.org", null, null);
37     doTest("MATMSG:TO:srowen@example.org;SUB:Stuff;;", "srowen@example.org", "Stuff", null);
38     doTest("MATMSG:TO:srowen@example.org;SUB:Stuff;BODY:This is some text;;", "srowen@example.org",
39         "Stuff", "This is some text");
40   }
41
42   public void testSMTP() {
43     doTest("smtp:srowen@example.org", "srowen@example.org", null, null);
44     doTest("SMTP:srowen@example.org", "srowen@example.org", null, null);
45     doTest("smtp:srowen@example.org:foo", "srowen@example.org", "foo", null);
46     doTest("smtp:srowen@example.org:foo:bar", "srowen@example.org", "foo", "bar");
47   }
48
49   private static void doTest(String contents, String email, String subject, String body) {
50     Result fakeResult = new Result(contents, null, null, BarcodeFormat.QR_CODE);
51     ParsedResult result = ResultParser.parseResult(fakeResult);
52     assertSame(ParsedResultType.EMAIL_ADDRESS, result.getType());
53     EmailAddressParsedResult emailResult = (EmailAddressParsedResult) result;
54     assertEquals(email, emailResult.getEmailAddress());
55     assertEquals("mailto:" + email, emailResult.getMailtoURI());
56     assertEquals(subject, emailResult.getSubject());
57     assertEquals(body, emailResult.getBody());
58   }
59
60 }