at.bitfire.ical4android.TaskTest.java Source code

Java tutorial

Introduction

Here is the source code for at.bitfire.ical4android.TaskTest.java

Source

/*
 * Copyright (c) 2013  2015 Ricki Hirner (bitfire web engineering).
 *
 * This program is free software: you can redistribute it and/or modify it under the terms of the GNU
 * General Public License as published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE.  See the GNU General Public License for more details.
 */

package at.bitfire.ical4android;

import android.content.res.AssetManager;
import android.test.InstrumentationTestCase;
import android.util.Log;

import net.fortuna.ical4j.model.Date;
import net.fortuna.ical4j.model.DateList;
import net.fortuna.ical4j.model.DateTime;
import net.fortuna.ical4j.model.Dur;
import net.fortuna.ical4j.model.TimeZone;
import net.fortuna.ical4j.model.parameter.Value;
import net.fortuna.ical4j.model.property.Clazz;
import net.fortuna.ical4j.model.property.DtStart;
import net.fortuna.ical4j.model.property.Due;
import net.fortuna.ical4j.model.property.Duration;
import net.fortuna.ical4j.model.property.ExDate;
import net.fortuna.ical4j.model.property.RDate;
import net.fortuna.ical4j.model.property.RRule;
import net.fortuna.ical4j.model.property.Status;

import org.apache.commons.codec.Charsets;

import java.io.BufferedInputStream;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.Charset;
import java.text.ParseException;

import lombok.Cleanup;

public class TaskTest extends InstrumentationTestCase {
    private static final String TAG = "ical4android.TaskTest";
    protected final TimeZone tzVienna = DateUtils.tzRegistry.getTimeZone("Europe/Vienna");

    AssetManager assetMgr;

    public void setUp() throws IOException, InvalidCalendarException {
        assetMgr = getInstrumentation().getContext().getResources().getAssets();
    }

    /* public interface tests */

    public void testCharsets() throws IOException, InvalidCalendarException {
        Task t = parseCalendar("latin1.ics", Charsets.ISO_8859_1);
        assertEquals("", t.summary);

        t = parseCalendar("utf8.ics", null);
        assertEquals("   ", t.summary);
        assertEquals("?", t.location);
    }

    public void testDueBeforeDtStart() throws IOException, InvalidCalendarException {
        Task t = parseCalendar("due-before-dtstart.ics", null);
        assertEquals(t.summary, "DUE before DTSTART");
        assertTrue(t.due.getDate().before(t.dtStart.getDate()));
        // no error handling is expected here, the tasks provider will throw an exception
        // and ical4android will pass it to the caller
    }

    public void testSamples() throws ParseException, IOException, InvalidCalendarException {
        Task t = regenerate(parseCalendar("rfc5545-sample1.ics", null));
        assertEquals(2, (int) t.sequence);
        assertEquals("uid4@example.com", t.uid);
        assertEquals("mailto:unclesam@example.com", t.organizer.getValue());
        assertEquals(new Due("19980415T000000"), t.due);
        assertEquals(TimeZone.getDefault(), t.getTimeZone());
        assertFalse(t.isAllDay());
        assertEquals(Status.VTODO_NEEDS_ACTION, t.status);
        assertEquals("Submit Income Taxes", t.summary);
    }

    public void testAllFields() throws ParseException, IOException, InvalidCalendarException {
        // 1. parse the VTODO file
        // 2. generate a new VTODO file from the parsed code
        // 3. parse it again  so we can test parsing and generating at once
        Task t = regenerate(parseCalendar("most-fields1.ics", null));
        assertEquals(1, (int) t.sequence);
        assertEquals("most-fields1@example.com", t.uid);
        assertEquals("Conference Room - F123, Bldg. 002", t.location);
        assertEquals("37.386013", t.geoPosition.getLatitude().toPlainString());
        assertEquals("-122.082932", t.geoPosition.getLongitude().toPlainString());
        assertEquals(
                "Meeting to provide technical review for \"Phoenix\" design.\nHappy Face Conference Room. Phoenix design team MUST attend this meeting.\nRSVP to team leader.",
                t.description);
        assertEquals("http://example.com/principals/jsmith", t.organizer.getValue());
        assertEquals("http://example.com/pub/calendars/jsmith/mytime.ics", t.url);
        assertEquals(1, t.priority);
        assertEquals(Clazz.CONFIDENTIAL, t.classification);
        assertEquals(Status.VTODO_IN_PROCESS, t.status);
        assertEquals(25, t.percentComplete.longValue());
        assertEquals(new DtStart(new Date("20100101")), t.dtStart);
        assertEquals(new Due(new Date("20101001")), t.due);
        assertTrue(t.isAllDay());

        assertEquals(new RRule("FREQ=YEARLY;INTERVAL=2"), t.rRule);
        assertEquals(2, t.getExDates().size());
        assertTrue(t.getExDates().contains(new ExDate(new DateList("20120101", Value.DATE))));
        assertTrue(t.getExDates().contains(new ExDate(new DateList("20140101,20180101", Value.DATE))));
        assertEquals(2, t.getRDates().size());
        assertTrue(t.getRDates().contains(new RDate(new DateList("20100310,20100315", Value.DATE))));
        assertTrue(t.getRDates().contains(new RDate(new DateList("20100810", Value.DATE))));

        assertEquals(828106200000L, t.createdAt.longValue());
        assertEquals(840288600000L, t.lastModified.longValue());

        t = regenerate(parseCalendar("most-fields2.ics", null));
        assertEquals("most-fields2@example.com", t.uid);
        assertEquals(new DtStart(new DateTime("20100101T101010Z")), t.dtStart);
        assertEquals(new Duration(new Dur(4, 3, 2, 1)), t.duration);
    }

    /* helpers */

    private Task parseCalendar(String fname, Charset charset) throws IOException, InvalidCalendarException {
        fname = "tasks/" + fname;
        Log.d(TAG, "Loading task file " + fname);
        @Cleanup
        InputStream is = assetMgr.open(fname, AssetManager.ACCESS_STREAMING);
        return Task.fromStream(is, charset)[0];
    }

    private Task regenerate(Task t) throws IOException, InvalidCalendarException {
        return Task.fromStream(new ByteArrayInputStream(t.toStream().toByteArray()), null)[0];
    }

}