blob: c22035de170ca2c9acceaf6f604cbc834db50ba3 [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.wordpress;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.component.wordpress.api.WordpressConstants;
import org.apache.camel.component.wordpress.api.model.Content;
import org.apache.camel.component.wordpress.api.model.Post;
import org.apache.camel.component.wordpress.api.model.PublishableStatus;
import org.junit.Test;
import static org.hamcrest.CoreMatchers.is;
public class WordpressPostOperationTest extends WordpressComponentTestSupport {
@Test
public void testPostSingleRequest() throws Exception {
MockEndpoint mock = getMockEndpoint("mock:resultSingle");
mock.expectedMinimumMessageCount(1);
mock.allMessages().body().isInstanceOf(Post.class);
assertMockEndpointsSatisfied();
}
@Test
public void testPostListRequest() throws Exception {
MockEndpoint mock = getMockEndpoint("mock:resultList");
mock.expectedMinimumMessageCount(1);
mock.allMessages().body().isInstanceOf(Post.class);
assertMockEndpointsSatisfied();
}
@Test
public void testInsertPost() throws InterruptedException {
MockEndpoint mock = getMockEndpoint("mock:resultInsert");
mock.expectedBodyReceived().body(Post.class);
mock.expectedMessageCount(1);
final Post request = new Post();
request.setAuthor(2);
request.setTitle(new Content("hello from postman 2"));
final Post response = (Post)template.requestBody("direct:insertPost", request);
assertThat(response.getId(), is(9));
assertThat(response.getStatus(), is(PublishableStatus.draft));
assertMockEndpointsSatisfied();
}
@Test
public void testUpdatePost() throws InterruptedException {
MockEndpoint mock = getMockEndpoint("mock:resultUpdate");
mock.expectedBodyReceived().body(Post.class);
mock.expectedMessageCount(1);
final Post request = new Post();
request.setAuthor(2);
request.setTitle(new Content("hello from postman 2 - update"));
final Post response = (Post)template.requestBody("direct:updatePost", request);
assertThat(response.getId(), is(9));
assertThat(response.getStatus(), is(PublishableStatus.draft));
assertThat(response.getTitle().getRaw(), is("hello from postman 2 - update"));
assertThat(response.getTitle().getRendered(), is("hello from postman 2 – update"));
assertMockEndpointsSatisfied();
}
@Test
public void testDeletePost() throws InterruptedException {
MockEndpoint mock = getMockEndpoint("mock:resultDelete");
mock.expectedBodyReceived().body(Post.class);
mock.expectedMessageCount(1);
final Post response = (Post)template.requestBody("direct:deletePost", "");
assertThat(response.getId(), is(9));
assertThat(response.getStatus(), is(PublishableStatus.trash));
assertMockEndpointsSatisfied();
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
public void configure() {
final WordpressComponentConfiguration configuration = new WordpressComponentConfiguration();
final WordpressComponent component = new WordpressComponent();
configuration.setApiVersion(WordpressConstants.API_VERSION);
configuration.setUrl(getServerBaseUrl());
component.setConfiguration(configuration);
getContext().addComponent("wordpress", component);
from("wordpress:post?criteria.perPage=10&criteria.orderBy=author&criteria.categories=camel,dozer,json").to("mock:resultList");
from("wordpress:post?id=114913").to("mock:resultSingle");
from("direct:deletePost").to("wordpress:post:delete?id=9&user=ben&password=password123").to("mock:resultDelete");
from("direct:insertPost").to("wordpress:post?user=ben&password=password123").to("mock:resultInsert");
from("direct:updatePost").to("wordpress:post?id=9&user=ben&password=password123").to("mock:resultUpdate");
}
};
}
}