Add more unit tests for client.result, and more small code tweaks.
[zxing.git] / core / test / src / com / google / zxing / client / result / CalendarParsedResultTestCase.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 CalendarParsedResult}.
25  *
26  * @author Sean Owen
27  */
28 public final class CalendarParsedResultTestCase extends TestCase {
29
30   public void testVEvent() {
31     doTest(
32         "BEGIN:VCALENDAR\r\nBEGIN:VEVENT\r\nSUMMARY:foo\r\nDTSTART:20080504T123456Z\r\nDTEND:20080505T234555Z\r\n" +
33         "END:VEVENT\r\nEND:VCALENDAR",
34         null, "foo", null, "20080504T123456Z", "20080505T234555Z", null);
35   }
36
37   private static void doTest(String contents,
38                              String title,
39                              String summary,
40                              String location,
41                              String start,
42                              String end,
43                              String attendee) {
44     Result fakeResult = new Result(contents, null, null, BarcodeFormat.QR_CODE);
45     ParsedResult result = ResultParser.parseResult(fakeResult);
46     assertEquals(ParsedResultType.CALENDAR, result.getType());
47     CalendarParsedResult calResult = (CalendarParsedResult) result;
48     assertEquals(title, calResult.getTitle());
49     assertEquals(summary, calResult.getSummary());
50     assertEquals(location, calResult.getLocation());
51     assertEquals(start, calResult.getStart());
52     assertEquals(end, calResult.getEnd());
53     assertEquals(attendee, calResult.getAttendee());
54   }
55
56 }