com.aspectran.jetty.JettyServerTest.java Source code

Java tutorial

Introduction

Here is the source code for com.aspectran.jetty.JettyServerTest.java

Source

/*
 * Copyright (c) 2008-2019 The Aspectran Project
 *
 * 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.aspectran.jetty;

import com.aspectran.core.activity.Translet;
import com.aspectran.core.context.config.AspectranConfig;
import com.aspectran.core.util.ResourceUtils;
import com.aspectran.embed.service.EmbeddedAspectran;
import org.apache.commons.io.FileUtils;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.http.impl.client.HttpClientBuilder;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestInstance;

import java.io.File;
import java.io.IOException;
import java.net.SocketException;

import static org.junit.jupiter.api.Assertions.assertEquals;

@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class JettyServerTest {

    private EmbeddedAspectran aspectran;

    @BeforeAll
    void ready() throws Exception {
        String basePath = new File("target").getCanonicalPath();
        File configFile = ResourceUtils.getResourceAsFile("config/aspectran-config.apon");

        FileUtils.copyDirectory(ResourceUtils.getResourceAsFile("webapps"), new File(basePath, "webapps"));

        AspectranConfig aspectranConfig = new AspectranConfig(configFile);
        aspectranConfig.touchContextConfig().setBasePath(basePath);

        aspectran = EmbeddedAspectran.run(aspectranConfig);
        aspectran.translate("jetty start");
    }

    @AfterAll
    void finish() {
        if (aspectran != null) {
            aspectran.translate("jetty stop");
            aspectran.release();
        }
    }

    @Test
    void testHello() throws IOException {
        Translet translet = aspectran.translate("/hello");
        String result1 = translet.toString();
        String result2;

        try {
            HttpClient client = HttpClientBuilder.create().build();
            HttpGet request = new HttpGet("http://127.0.0.1:8099/hello_jsp");
            HttpResponse response = client.execute(request);
            result2 = new BasicResponseHandler().handleResponse(response).trim();
        } catch (SocketException e) {
            // Network is unreachable
            return;
        }

        assertEquals(result1, result2);
    }

}