ch.ralscha.extdirectspring_itest.MyModelServiceTest.java Source code

Java tutorial

Introduction

Here is the source code for ch.ralscha.extdirectspring_itest.MyModelServiceTest.java

Source

/**
 * Copyright 2010-2016 Ralph Schaer <ralphschaer@gmail.com>
 *
 * 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.
 */
package ch.ralscha.extdirectspring_itest;

import static org.assertj.core.api.Assertions.assertThat;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import org.apache.commons.io.IOUtils;
import org.apache.http.HttpEntity;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;

import ch.ralscha.extdirectspring.bean.api.Action;
import ch.ralscha.extdirectspring.bean.api.RemotingApi;
import ch.ralscha.extdirectspring.controller.ApiControllerTest;
import ch.ralscha.extdirectspring.controller.ApiRequestParams;

public class MyModelServiceTest extends JettyTest {

    private CloseableHttpClient client;

    private HttpPost post;

    @Before
    public void beforeTest() {
        this.client = HttpClientBuilder.create().build();
        this.post = new HttpPost("http://localhost:9998/controller/router");
    }

    @After
    public void afterTest() {
        IOUtils.closeQuietly(this.client);
    }

    private static RemotingApi api() {
        RemotingApi remotingApi = new RemotingApi("remoting", "/controller/router", null);
        remotingApi.addAction("myModelService", Action.createFormHandler("method1", 0));
        remotingApi.addAction("myModelService", Action.createFormHandler("method2", 0));
        remotingApi.addAction("myModelService", Action.createFormHandler("update", 0));
        return remotingApi;
    }

    @Test
    public void testApi() throws IOException {
        HttpGet g = new HttpGet("http://localhost:9998/controller/api.js?group=itest_base_service");
        CloseableHttpResponse response = this.client.execute(g);
        try {
            String responseString = EntityUtils.toString(response.getEntity());
            String contentType = response.getFirstHeader("Content-Type").getValue();
            ApiControllerTest.compare(responseString, contentType, api(), ApiRequestParams.builder().build());
            SimpleServiceTest.assertCacheHeaders(response, false);
        } finally {
            IOUtils.closeQuietly(response);
        }
    }

    @Test
    public void testApiDebug() throws IOException {
        HttpGet g = new HttpGet("http://localhost:9998/controller/api-debug.js?group=itest_base_service");
        CloseableHttpResponse response = this.client.execute(g);
        try {
            String responseString = EntityUtils.toString(response.getEntity());
            String contentType = response.getFirstHeader("Content-Type").getValue();
            ApiControllerTest.compare(responseString, contentType, api(), ApiRequestParams.builder().build());
            SimpleServiceTest.assertCacheHeaders(response, false);
        } finally {
            IOUtils.closeQuietly(response);
        }
    }

    @Test
    public void testApiFingerprinted() throws IOException {
        HttpGet g = new HttpGet("http://localhost:9998/controller/api-1.1.1.js?group=itest_base_service");
        CloseableHttpResponse response = this.client.execute(g);
        try {
            String responseString = EntityUtils.toString(response.getEntity());
            String contentType = response.getFirstHeader("Content-Type").getValue();
            ApiControllerTest.compare(responseString, contentType, api(), ApiRequestParams.builder().build());
            SimpleServiceTest.assertCacheHeaders(response, true);
        } finally {
            IOUtils.closeQuietly(response);
        }
    }

    @Test
    public void testPost() throws IOException {
        callMethod("update");
        callMethod("method1");
        callMethod("method2");
    }

    private void callMethod(String method) throws IOException, JsonParseException, JsonMappingException {
        List<NameValuePair> formparams = new ArrayList<NameValuePair>();
        formparams.add(new BasicNameValuePair("extTID", "3"));
        formparams.add(new BasicNameValuePair("extAction", "myModelService"));
        formparams.add(new BasicNameValuePair("extMethod", method));
        formparams.add(new BasicNameValuePair("extType", "rpc"));
        formparams.add(new BasicNameValuePair("extUpload", "false"));
        formparams.add(new BasicNameValuePair("name", "Jim"));
        UrlEncodedFormEntity postEntity = new UrlEncodedFormEntity(formparams, "UTF-8");

        this.post.setEntity(postEntity);

        CloseableHttpResponse response = this.client.execute(this.post);
        try {
            HttpEntity entity = response.getEntity();
            assertThat(entity).isNotNull();
            String responseString = EntityUtils.toString(entity);

            ObjectMapper mapper = new ObjectMapper();
            Map<String, Object> rootAsMap = mapper.readValue(responseString, Map.class);
            assertThat(rootAsMap).hasSize(5);
            assertThat(rootAsMap.get("method")).isEqualTo(method);
            assertThat(rootAsMap.get("type")).isEqualTo("rpc");
            assertThat(rootAsMap.get("action")).isEqualTo("myModelService");
            assertThat(rootAsMap.get("tid")).isEqualTo(3);

            @SuppressWarnings("unchecked")
            Map<String, Object> result = (Map<String, Object>) rootAsMap.get("result");
            assertThat((Boolean) result.get("success")).isTrue();
        } finally {
            IOUtils.closeQuietly(response);
        }
    }
}