Package $

Source Code of $.MyWebServiceTest

/*
* 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 ${package}.webservices;

import static com.jayway.restassured.RestAssured.expect;
import static com.jayway.restassured.RestAssured.given;
import static org.hamcrest.Matchers.containsString;

import com.jayway.restassured.RestAssured;
import com.jayway.restassured.config.DecoderConfig;
import com.jayway.restassured.config.RestAssuredConfig;
import com.jayway.restassured.http.ContentType;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Ignore;
import org.junit.Test;

import org.apache.marmotta.platform.core.test.base.JettyMarmotta;

public class MyWebServiceTest {

    private static JettyMarmotta marmotta;

    @BeforeClass
    public static void beforeClass() {
        marmotta = new JettyMarmotta("/${moduleKey}-test", 9090, MyWebService.class);

        RestAssured.baseURI = "http://localhost";
        RestAssured.port = 9090;
        RestAssured.basePath = "/${moduleKey}-test";
        RestAssured.config = RestAssuredConfig.newConfig().decoderConfig(DecoderConfig.decoderConfig().defaultContentCharset("UTF-8"));
    }

    @AfterClass
    public static void afterClass() {
        if (marmotta != null) {
            marmotta.shutdown();
        }
    }

    @Test
    public void testHello() {
        /*
         * GET ?name=<xxx>
         */
        RestAssured.given()
                .param("name", "Steve")
            .expect()
                .content(containsString("Hello Steve"))
            .when()
                .get("/${moduleKey}");

        RestAssured.expect()
                .statusCode(400)
            .when()
                .get("/${moduleKey}");
    }

    @Test
    public void testNonAsciiHello() {
        /*
         * GET ?name=<xxx>
         */
        RestAssured.given()
                .param("name", "Jürgen")
            .expect()
                .contentType(ContentType.TEXT)
                .content(containsString("Hello Jürgen"))
            .when()
                .get("/${moduleKey}");

        RestAssured.expect()
                .statusCode(400)
            .when()
                .get("/${moduleKey}");
    }

    @Test
    public void testDoThis() {
        /*
         * POST ?turns=i default 2
         */
        RestAssured.given()
                .param("turns", 1)
            .expect()
                .statusCode(204)
            .when()
                .post("/${moduleKey}");

        RestAssured.given()
                .param("turns", 10)
            .expect()
                .statusCode(204)
            .when()
                .post("/${moduleKey}");

        RestAssured.expect()
                .statusCode(204)
            .when()
                .post("/${moduleKey}");

        RestAssured.given()
                .param("turns", 123)
            .expect()
                .statusCode(444)
            .when()
                .post("/${moduleKey}");
    }

}
TOP

Related Classes of $.MyWebServiceTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.