blob: 4efa94b1019b9174643053e873a8a4c86a3bf942 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.apache.camel.component.facebook;
import facebook4j.Post;
import facebook4j.ResponseList;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.junit.Test;
public class FacebookComponentPageIdProducerTest extends CamelFacebookTestSupport {
public static final String APACHE_FOUNDATION_PAGE_ID = "6538157161";
long lastTimestamp = -1;
public FacebookComponentPageIdProducerTest() throws Exception {
}
@Test
public void testProducers() throws Exception {
MockEndpoint mock = getMockEndpoint("mock:page");
mock.expectedMinimumMessageCount(3);
mock.assertIsSatisfied();
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
public void configure() {
from("timer:period=20000")
.setHeader("CamelFacebook.reading.limit", constant("10"))
.process(new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
if (lastTimestamp > 0) {
exchange.getIn().setHeader("CamelFacebook.reading.since", lastTimestamp);
}
}
})
.to("facebook://getPosts?" + getOauthParams() + "&userId=" + APACHE_FOUNDATION_PAGE_ID + "&reading.limit=5")
.process(new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
ResponseList<Post> body = (ResponseList<Post>) exchange.getIn().getBody();
log.info("Number of posts received: {}", body.size());
for (Post post : body) {
log.debug(post.toString());
}
if (!body.isEmpty()) {
lastTimestamp = body.get(0).getUpdatedTime().getTime();
}
}
})
.to("mock:page");
}
};
}
}