com.nesscomputing.httpserver.jetty.TestClasspathResourceHandler.java Source code

Java tutorial

Introduction

Here is the source code for com.nesscomputing.httpserver.jetty.TestClasspathResourceHandler.java

Source

/**
 * Copyright (C) 2012 Ness Computing, Inc.
 *
 * 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 com.nesscomputing.httpserver.jetty;

import java.io.IOException;
import java.io.InputStream;
import java.util.concurrent.atomic.AtomicReference;

import org.apache.commons.lang3.StringUtils;
import org.eclipse.jetty.server.Handler;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

import com.nesscomputing.httpclient.HttpClient;
import com.nesscomputing.httpclient.HttpClientResponse;
import com.nesscomputing.httpclient.HttpClientResponseHandler;
import com.nesscomputing.httpclient.response.ContentResponseHandler;
import com.nesscomputing.httpclient.response.StringContentConverter;
import com.nesscomputing.httpclient.response.Valid2xxContentConverter;
import com.nesscomputing.httpserver.testing.LocalHttpService;
import com.nesscomputing.testing.lessio.AllowNetworkAccess;
import com.nesscomputing.testing.lessio.AllowNetworkListen;

@AllowNetworkListen(ports = { 0 })
@AllowNetworkAccess(endpoints = { "127.0.0.1:*" })
public class TestClasspathResourceHandler {
    private Handler testHandler = null;
    private LocalHttpService localHttpService = null;

    private HttpClient httpClient = null;

    private String baseUri;

    @Before
    public void setup() {
        Assert.assertNull(localHttpService);
        Assert.assertNull(testHandler);

        testHandler = new ClasspathResourceHandler("", "/test-resources");
        localHttpService = LocalHttpService.forHandler(testHandler);
        localHttpService.start();

        httpClient = new HttpClient().start();

        baseUri = "http://" + localHttpService.getHost() + ":" + localHttpService.getPort();

    }

    @After
    public void teardown() {
        Assert.assertNotNull(localHttpService);
        Assert.assertNotNull(testHandler);

        localHttpService.stop();
        localHttpService = null;
        testHandler = null;

        Assert.assertNotNull(httpClient);
        httpClient.close();
        httpClient = null;

        baseUri = null;
    }

    @Test
    public void testSimpleGet() throws Exception {
        final String content = httpClient
                .get(baseUri + "/simple-content.txt", StringContentConverter.DEFAULT_RESPONSE_HANDLER).perform();

        Assert.assertEquals("this is simple content for a simple test\n", content);
    }

    @Test
    public void testSimpleHead() throws Exception {
        final String content = httpClient
                .head(baseUri + "/simple-content.txt", StringContentConverter.DEFAULT_RESPONSE_HANDLER).perform();

        Assert.assertEquals("", content);
    }

    @Test
    public void testSimplePost() throws Exception {
        final HttpClientResponseHandler<String> responseHandler = ContentResponseHandler
                .forConverter(new StringContentConverter() {
                    @Override
                    public String convert(final HttpClientResponse response, final InputStream inputStream)
                            throws IOException {
                        Assert.assertEquals(405, response.getStatusCode());
                        return null;
                    }
                });

        final String content = httpClient.post(baseUri + "/simple-content.txt", responseHandler).perform();

        Assert.assertEquals(null, content);
    }

    @Test
    public void testMissing() throws Exception {
        final HttpClientResponseHandler<String> responseHandler = new ContentResponseHandler<String>(
                new StringContentConverter() {
                    @Override
                    public String convert(final HttpClientResponse response, final InputStream inputStream)
                            throws IOException {
                        Assert.assertEquals(404, response.getStatusCode());
                        return null;
                    }
                });

        final String content = httpClient.get(baseUri + "/missing", responseHandler).perform();

        Assert.assertNull(content);
    }

    @Test
    public void testIfModified() throws Exception {
        final AtomicReference<String> holder = new AtomicReference<String>(null);
        final HttpClientResponseHandler<String> responseHandler = new ContentResponseHandler<String>(
                new StringContentConverter() {
                    @Override
                    public String convert(final HttpClientResponse response, final InputStream inputStream)
                            throws IOException {
                        holder.set(response.getHeader("Last-Modified"));
                        return super.convert(response, inputStream);
                    }
                });

        final String uri = baseUri + "/simple-content.txt";
        final String content = httpClient.get(uri, responseHandler).perform();

        Assert.assertNotNull(holder.get());
        Assert.assertEquals("this is simple content for a simple test\n", content);

        final HttpClientResponseHandler<String> responseHandler2 = new ContentResponseHandler<String>(
                new StringContentConverter() {
                    @Override
                    public String convert(final HttpClientResponse response, final InputStream inputStream)
                            throws IOException {
                        Assert.assertEquals(304, response.getStatusCode());
                        return null;
                    }
                });

        final String content2 = httpClient.get(uri, responseHandler2).addHeader("If-Modified-Since", holder.get())
                .perform();

        Assert.assertNull(content2);

        // "Time zone names ('z') cannot be parsed."  so we hack it by hand, assuming GMT  >:(
        final DateTimeFormatter httpFormat = DateTimeFormat.forPattern("EEE, dd MMM YYYY HH:mm:ss");
        final long newModified = httpFormat.parseMillis(StringUtils.removeEnd(holder.get(), " GMT")) - 600000;
        httpClient.get(uri, Valid2xxContentConverter.DEFAULT_FAILING_RESPONSE_HANDLER)
                .addHeader("If-Modified-Since", httpFormat.print(newModified) + " GMT").perform();
    }

    @Test
    public void testWelcomeFile1() throws Exception {
        final String content = httpClient.get(baseUri + "/", StringContentConverter.DEFAULT_RESPONSE_HANDLER)
                .perform();
        Assert.assertTrue(content.endsWith("the welcome file\n"));
    }

    @Test
    public void testWelcomeFile2() throws Exception {
        final String content = httpClient.get(baseUri, StringContentConverter.DEFAULT_RESPONSE_HANDLER).perform();
        Assert.assertTrue(content.endsWith("the welcome file\n"));
    }

    @Test
    public void testWelcomeFile3() throws Exception {
        final String content = httpClient
                .get(baseUri + "/index.html", StringContentConverter.DEFAULT_RESPONSE_HANDLER).perform();
        Assert.assertTrue(content.endsWith("the welcome file\n"));
    }
}