nl.surfnet.coin.mock.MockSoapServerTest.java Source code

Java tutorial

Introduction

Here is the source code for nl.surfnet.coin.mock.MockSoapServerTest.java

Source

/*
 * Copyright 2011 SURFnet bv, The Netherlands
 *
 * 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 nl.surfnet.coin.mock;

import static org.junit.Assert.assertEquals;

import java.io.InputStream;
import java.io.OutputStream;

import org.apache.commons.io.IOUtils;
import org.apache.commons.io.output.ByteArrayOutputStream;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.junit.Assert;
import org.junit.Test;
import org.springframework.core.io.ByteArrayResource;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;

/**
 * 
 * {@link Test} for {@link MockHtppServer}
 * 
 * @author oharsta
 * 
 */
public class MockSoapServerTest extends AbstractMockHttpServerTest {

    /**
     * Test the MockHttpServer.
     * 
     * @throws Exception
     */
    @Test
    public void testMockHappyFlow() throws Exception {
        ClassPathResource responseResource = new ClassPathResource("test.json");
        super.setResponseResource(responseResource);
        HttpClient client = new DefaultHttpClient();
        HttpResponse response = client.execute(new HttpGet("http://localhost:8088/testUrl"));
        String contentType = response.getHeaders("Content-Type")[0].getValue();
        Assert.assertEquals("application/json", contentType);
        InputStream is = response.getEntity().getContent();
        OutputStream output = new ByteArrayOutputStream();
        IOUtils.copy(is, output);
        Assert.assertEquals(IOUtils.toString(responseResource.getInputStream()), output.toString());
    }

    /**
     * Test the MockHttpServer.
     * 
     * @throws Exception
     */
    @Test
    public void testMockHappyFlowWithMultipleResources() throws Exception {
        Resource resource1 = new ByteArrayResource("value".getBytes());
        Resource resource2 = new ByteArrayResource("value2".getBytes());
        super.setResponseResource(new Resource[] { resource1, resource2 });
        HttpResponse response1 = new DefaultHttpClient().execute(new HttpGet("http://localhost:8088/testUrl"));
        HttpResponse response2 = new DefaultHttpClient().execute(new HttpGet("http://localhost:8088/testUrl"));
        String s1 = IOUtils.toString(response1.getEntity().getContent());
        String s2 = IOUtils.toString(response2.getEntity().getContent());
        Assert.assertFalse(s1.equals(s2));
    }

    @Test
    public void testStatus() throws Exception {
        super.setResponseResource(new ByteArrayResource("bye".getBytes()));
        super.setStatus(403);
        HttpClient client = new DefaultHttpClient();
        HttpResponse response = client.execute(new HttpGet("http://localhost:8088/testUrl"));
        assertEquals(403, response.getStatusLine().getStatusCode());
        client = new DefaultHttpClient();
        response = client.execute(new HttpGet("http://localhost:8088/testUrl"));
        assertEquals(200, response.getStatusLine().getStatusCode());
    }

}