-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[resolves #2041] Add support for dataformat ical
- Loading branch information
Showing
13 changed files
with
303 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...main/resources/modules/system/layers/fuse/org/apache/camel/component/ical/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module xmlns="urn:jboss:module:1.1" name="org.apache.camel.component.ical"> | ||
<resources> | ||
<artifact name="${backport-util-concurrent:backport-util-concurrent}" /> | ||
<artifact name="${org.apache.camel:camel-ical}" /> | ||
<artifact name="${org.mnode.ical4j:ical4j}" /> | ||
</resources> | ||
<dependencies> | ||
<module name="javax.api" /> | ||
<module name="org.slf4j" /> | ||
<module name="javax.xml.bind.api" /> | ||
<module name="org.apache.camel.core" /> | ||
<module name="org.apache.commons.codec" /> | ||
<module name="org.apache.commons.lang" /> | ||
<module name="org.apache.commons.logging" /> | ||
</dependencies> | ||
<exports> | ||
<exclude path="edu/emory" /> | ||
<exclude path="edu/emory/**" /> | ||
<exclude path="net/fortuna" /> | ||
</exports> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
183 changes: 183 additions & 0 deletions
183
itests/standalone/basic/src/test/java/org/wildfly/camel/test/ical/ICalFormatTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
/* | ||
* #%L | ||
* Wildfly Camel :: Testsuite | ||
* %% | ||
* Copyright (C) 2013 - 2014 RedHat | ||
* %% | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* #L% | ||
*/ | ||
|
||
package org.wildfly.camel.test.ical; | ||
|
||
import java.io.InputStream; | ||
import java.net.URI; | ||
import java.text.ParseException; | ||
import java.util.GregorianCalendar; | ||
|
||
import org.apache.camel.CamelContext; | ||
import org.apache.camel.ProducerTemplate; | ||
import org.apache.camel.builder.RouteBuilder; | ||
import org.apache.camel.component.mock.MockEndpoint; | ||
import org.apache.camel.impl.DefaultCamelContext; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.arquillian.junit.Arquillian; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.wildfly.extension.camel.CamelAware; | ||
|
||
import net.fortuna.ical4j.model.Calendar; | ||
import net.fortuna.ical4j.model.DateTime; | ||
import net.fortuna.ical4j.model.PropertyList; | ||
import net.fortuna.ical4j.model.TimeZone; | ||
import net.fortuna.ical4j.model.TimeZoneRegistry; | ||
import net.fortuna.ical4j.model.TimeZoneRegistryFactory; | ||
import net.fortuna.ical4j.model.component.VEvent; | ||
import net.fortuna.ical4j.model.component.VTimeZone; | ||
import net.fortuna.ical4j.model.parameter.Cn; | ||
import net.fortuna.ical4j.model.parameter.Role; | ||
import net.fortuna.ical4j.model.property.Attendee; | ||
import net.fortuna.ical4j.model.property.CalScale; | ||
import net.fortuna.ical4j.model.property.DtEnd; | ||
import net.fortuna.ical4j.model.property.DtStamp; | ||
import net.fortuna.ical4j.model.property.DtStart; | ||
import net.fortuna.ical4j.model.property.ProdId; | ||
import net.fortuna.ical4j.model.property.Summary; | ||
import net.fortuna.ical4j.model.property.Uid; | ||
import net.fortuna.ical4j.model.property.Version; | ||
|
||
@CamelAware | ||
@RunWith(Arquillian.class) | ||
public class ICalFormatTest { | ||
|
||
@Deployment | ||
public static JavaArchive deployment() { | ||
final JavaArchive archive = ShrinkWrap.create(JavaArchive.class, "ical-dataformat-tests"); | ||
archive.addAsResource("ical/data.ics"); | ||
return archive; | ||
} | ||
|
||
@Test | ||
public void testMarshal() throws Exception { | ||
|
||
CamelContext camelctx = new DefaultCamelContext(); | ||
camelctx.addRoutes(new RouteBuilder() { | ||
@Override | ||
public void configure() throws Exception { | ||
from("direct:marshal").marshal("ical").to("mock:result"); | ||
} | ||
}); | ||
|
||
camelctx.start(); | ||
try { | ||
ProducerTemplate producer = camelctx.createProducerTemplate(); | ||
|
||
Calendar calendar = createTestCalendar(); | ||
MockEndpoint mock = camelctx.getEndpoint("mock:result", MockEndpoint.class); | ||
mock.expectedBodiesReceived(calendar.toString()); | ||
|
||
producer.sendBody("direct:marshal", calendar); | ||
|
||
mock.assertIsSatisfied(); | ||
} finally { | ||
camelctx.stop(); | ||
} | ||
} | ||
|
||
@Test | ||
public void testUnmarshal() throws Exception { | ||
|
||
CamelContext camelctx = new DefaultCamelContext(); | ||
camelctx.addRoutes(new RouteBuilder() { | ||
@Override | ||
public void configure() throws Exception { | ||
from("direct:unmarshal").unmarshal("ical").to("mock:result"); | ||
} | ||
}); | ||
|
||
camelctx.start(); | ||
try { | ||
ProducerTemplate producer = camelctx.createProducerTemplate(); | ||
InputStream inStream = getClass().getResourceAsStream("/ical/data.ics"); | ||
Calendar response = producer.requestBody("direct:unmarshal", inStream, Calendar.class); | ||
Assert.assertNotNull(response); | ||
} finally { | ||
camelctx.stop(); | ||
} | ||
} | ||
|
||
private Calendar createTestCalendar() throws ParseException { | ||
// Create a TimeZone | ||
TimeZoneRegistry registry = TimeZoneRegistryFactory.getInstance().createRegistry(); | ||
TimeZone timezone = registry.getTimeZone("America/New_York"); | ||
VTimeZone tz = timezone.getVTimeZone(); | ||
|
||
// Start Date is on: April 1, 2013, 9:00 am | ||
java.util.Calendar startDate = new GregorianCalendar(); | ||
startDate.setTimeZone(timezone); | ||
startDate.set(java.util.Calendar.MONTH, java.util.Calendar.APRIL); | ||
startDate.set(java.util.Calendar.DAY_OF_MONTH, 1); | ||
startDate.set(java.util.Calendar.YEAR, 2013); | ||
startDate.set(java.util.Calendar.HOUR_OF_DAY, 17); | ||
startDate.set(java.util.Calendar.MINUTE, 0); | ||
startDate.set(java.util.Calendar.SECOND, 0); | ||
|
||
// End Date is on: April 1, 2013, 13:00 | ||
java.util.Calendar endDate = new GregorianCalendar(); | ||
endDate.setTimeZone(timezone); | ||
endDate.set(java.util.Calendar.MONTH, java.util.Calendar.APRIL); | ||
endDate.set(java.util.Calendar.DAY_OF_MONTH, 1); | ||
endDate.set(java.util.Calendar.YEAR, 2013); | ||
endDate.set(java.util.Calendar.HOUR_OF_DAY, 21); | ||
endDate.set(java.util.Calendar.MINUTE, 0); | ||
endDate.set(java.util.Calendar.SECOND, 0); | ||
|
||
// Create the event | ||
PropertyList propertyList = new PropertyList(); | ||
propertyList.add(new DtStamp("20130324T180000Z")); | ||
propertyList.add(new DtStart(new DateTime(startDate.getTime()))); | ||
propertyList.add(new DtEnd(new DateTime(endDate.getTime()))); | ||
propertyList.add(new Summary("Progress Meeting")); | ||
VEvent meeting = new VEvent(propertyList); | ||
|
||
// add timezone info.. | ||
meeting.getProperties().add(tz.getTimeZoneId()); | ||
|
||
// generate unique identifier.. | ||
meeting.getProperties().add(new Uid("00000000")); | ||
|
||
// add attendees.. | ||
Attendee dev1 = new Attendee(URI.create("mailto:dev1@mycompany.com")); | ||
dev1.getParameters().add(Role.REQ_PARTICIPANT); | ||
dev1.getParameters().add(new Cn("Developer 1")); | ||
meeting.getProperties().add(dev1); | ||
|
||
Attendee dev2 = new Attendee(URI.create("mailto:dev2@mycompany.com")); | ||
dev2.getParameters().add(Role.OPT_PARTICIPANT); | ||
dev2.getParameters().add(new Cn("Developer 2")); | ||
meeting.getProperties().add(dev2); | ||
|
||
// Create a calendar | ||
net.fortuna.ical4j.model.Calendar icsCalendar = new net.fortuna.ical4j.model.Calendar(); | ||
icsCalendar.getProperties().add(Version.VERSION_2_0); | ||
icsCalendar.getProperties().add(new ProdId("-//Events Calendar//iCal4j 1.0//EN")); | ||
icsCalendar.getProperties().add(CalScale.GREGORIAN); | ||
|
||
// Add the event and print | ||
icsCalendar.getComponents().add(meeting); | ||
return icsCalendar; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
BEGIN:VCALENDAR | ||
VERSION:2.0 | ||
PRODID:-//Events Calendar//iCal4j 1.0//EN | ||
CALSCALE:GREGORIAN | ||
BEGIN:VEVENT | ||
DTSTAMP:20130324T180000Z | ||
DTSTART:20130401T170000 | ||
DTEND:20130401T210000 | ||
SUMMARY:Progress Meeting | ||
TZID:America/New_York | ||
UID:00000000 | ||
ATTENDEE;ROLE=REQ-PARTICIPANT;CN=Developer 1:mailto:dev1@mycompany.com | ||
ATTENDEE;ROLE=OPT-PARTICIPANT;CN=Developer 2:mailto:dev2@mycompany.com | ||
END:VEVENT | ||
END:VCALENDAR |
Oops, something went wrong.