com.sap.core.odata.fit.ref.contentnegotiation.ContentNegotiationGetRequestTest.java Source code

Java tutorial

Introduction

Here is the source code for com.sap.core.odata.fit.ref.contentnegotiation.ContentNegotiationGetRequestTest.java

Source

/*******************************************************************************
 * Copyright 2013 SAP AG
 * 
 * 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.sap.core.odata.fit.ref.contentnegotiation;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

import java.net.URI;
import java.util.Arrays;
import java.util.List;

import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.junit.Ignore;
import org.junit.Test;

import com.sap.core.odata.api.commons.HttpContentType;
import com.sap.core.odata.api.commons.HttpHeaders;
import com.sap.core.odata.api.commons.HttpStatusCodes;
import com.sap.core.odata.core.commons.ContentType;
import com.sap.core.odata.core.uri.UriType;
import com.sap.core.odata.testutil.helper.StringHelper;

/**
 * @author SAP AG
 */
@Ignore
public class ContentNegotiationGetRequestTest extends AbstractContentNegotiationTest {

    @Test
    public void acceptHeaderAppAtomXml() throws Exception {
        HttpGet get = new HttpGet(URI.create(getEndpoint() + "Rooms('1')"));
        get.setHeader(HttpHeaders.ACCEPT, HttpContentType.APPLICATION_ATOM_XML);
        final HttpResponse response = new DefaultHttpClient().execute(get);

        final String contentType = response.getFirstHeader(HttpHeaders.CONTENT_TYPE).getValue();
        assertEquals(ContentType.create(HttpContentType.APPLICATION_ATOM_XML_ENTRY_UTF8),
                ContentType.create(contentType));

        assertNotNull(StringHelper.inputStreamToString(response.getEntity().getContent()));
    }

    @Test
    public void acceptHeaderAppXml() throws Exception {
        HttpGet get = new HttpGet(URI.create(getEndpoint() + "Rooms('1')"));
        get.setHeader(HttpHeaders.ACCEPT, HttpContentType.APPLICATION_XML);
        final HttpResponse response = new DefaultHttpClient().execute(get);

        final String contentType = response.getFirstHeader(HttpHeaders.CONTENT_TYPE).getValue();
        assertEquals(HttpContentType.APPLICATION_XML_UTF8, contentType);
        assertEquals(ContentType.create(HttpContentType.APPLICATION_XML_UTF8), ContentType.create(contentType));

        assertNotNull(StringHelper.inputStreamToString(response.getEntity().getContent()));
    }

    @Test
    public void acceptHeaderAppXmlCharsetUtf8() throws Exception {
        HttpGet get = new HttpGet(URI.create(getEndpoint() + "Rooms('1')"));
        get.setHeader(HttpHeaders.ACCEPT, HttpContentType.APPLICATION_XML_UTF8);
        final HttpResponse response = new DefaultHttpClient().execute(get);

        final String contentType = response.getFirstHeader(HttpHeaders.CONTENT_TYPE).getValue();
        assertEquals(HttpContentType.APPLICATION_XML_UTF8, contentType);
        assertEquals(ContentType.create(HttpContentType.APPLICATION_XML_UTF8), ContentType.create(contentType));

        assertNotNull(StringHelper.inputStreamToString(response.getEntity().getContent()));
    }

    @Test
    public void testURI_0_ServiceDocument() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI0, "/").init();

        // set specific response 'Content-Type's for '$format'
        testSet.setTestParam(Arrays.asList("?$format=xml"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList("?$format=atom"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/atomsvc+xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList("?$format=json"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                HttpContentType.APPLICATION_JSON_UTF8);
        testSet.setTestParam(Arrays.asList(""), Arrays.asList(""), HttpStatusCodes.OK,
                "application/atomsvc+xml; charset=utf-8");

        // set all 'NOT ACCEPTED' requests
        final List<String> notAcceptedHeaderValues = Arrays.asList("text/plain", "application/atom+xml",
                "text/plain; charset=utf-8", "application/atom+xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), notAcceptedHeaderValues, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");

        final List<String> notAcceptedJsonHeaderValues = Arrays.asList("application/json; charset=utf-8");
        testSet.setTestParam(Arrays.asList("", "?$format=json"), notAcceptedJsonHeaderValues,
                HttpStatusCodes.NOT_ACCEPTABLE, "application/json");

        // execute all defined tests
        testSet.execute(getEndpoint());
    }

    @Test
    public void testURI_1_EntitySet() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI1, "/Employees").init();

        // set specific response 'Content-Type's for '$format'
        testSet.setTestParam(Arrays.asList("?$format=xml"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList("?$format=atom"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/atom+xml; type=feed; charset=utf-8");
        testSet.setTestParam(Arrays.asList("?$format=json"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                HttpContentType.APPLICATION_JSON);
        testSet.setTestParam(Arrays.asList(""),
                Arrays.asList("", "application/atom+xml", "application/atom+xml; charset=utf-8"),
                HttpStatusCodes.OK, "application/atom+xml; type=feed; charset=utf-8");

        // set all 'NOT ACCEPTED' requests
        final List<String> notAcceptedHeaderValues = Arrays.asList("text/plain", "text/plain; charset=utf-8",
                "application/atomsvc+xml", "application/atomsvc+xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), notAcceptedHeaderValues, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");

        final List<String> notAcceptedJsonHeaderValues = Arrays.asList("application/json; charset=utf-8");
        // TODO: check which behavior is currently wanted
        testSet.setTestParam(Arrays.asList("", "?$format=json"), notAcceptedJsonHeaderValues,
                HttpStatusCodes.NOT_ACCEPTABLE, "application/json");

        // execute all defined tests
        testSet.execute(getEndpoint());
    }

    @Test
    public void testURI_2_Entity() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI2, "/Employees('1')").init();

        // set specific response 'Content-Type's for '$format'
        testSet.setTestParam(Arrays.asList("?$format=xml"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList("?$format=atom"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/atom+xml; type=entry; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""),
                Arrays.asList("", "application/atom+xml", "application/atom+xml; charset=utf-8"),
                HttpStatusCodes.OK, "application/atom+xml; type=entry; charset=utf-8");

        // set all 'NOT ACCEPTED' requests
        final List<String> notAcceptedHeaderValues = Arrays.asList("text/plain", "text/plain; charset=utf-8",
                "application/atomsvc+xml", "application/atomsvc+xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), notAcceptedHeaderValues, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");

        //
        final List<String> notAcceptedJsonHeaderValues = Arrays.asList("application/json",
                "application/json; charset=utf-8");
        // TODO: check which behavior is currently wanted
        testSet.setTestParam(Arrays.asList("?$format=json"), ACCEPT_HEADER_VALUES, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");
        testSet.setTestParam(Arrays.asList("", "?$format=json"), notAcceptedJsonHeaderValues,
                HttpStatusCodes.NOT_ACCEPTABLE, "application/json");

        // execute all defined tests
        testSet.execute(getEndpoint());
    }

    @Test
    public void testURI_3_EntityComplexProperty() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI3, "/Employees('1')/Location").init();

        // set specific response 'Content-Type's for '$format'
        testSet.setTestParam(Arrays.asList("?$format=xml"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), Arrays.asList(""), HttpStatusCodes.OK,
                "application/xml; charset=utf-8");

        // set all 'NOT ACCEPTED' requests
        final List<String> notAcceptedHeaderValues = Arrays.asList("text/plain", "text/plain; charset=utf-8",
                "application/atom+xml", "application/atom+xml; charset=utf-8", "application/atomsvc+xml",
                "application/atomsvc+xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), notAcceptedHeaderValues, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");
        // '$format=atom' it not allowed
        testSet.setTestParam(Arrays.asList("?$format=atom"), ACCEPT_HEADER_VALUES, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");

        // JSON is not supported
        final List<String> notAcceptedJsonHeaderValues = Arrays.asList("application/json",
                "application/json; charset=utf-8");
        // TODO: check which behavior is currently wanted
        testSet.setTestParam(Arrays.asList("?$format=json"), ACCEPT_HEADER_VALUES, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");
        testSet.setTestParam(Arrays.asList("", "?$format=json", "?$format=atom"), notAcceptedJsonHeaderValues,
                HttpStatusCodes.NOT_ACCEPTABLE, "application/json");

        // execute all defined tests
        testSet.execute(getEndpoint());
    }

    @Test
    public void testURI_4_EntityComplexPropertySimpleProperty() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI4, "/Employees('1')/Location/Country").init();

        // set specific response 'Content-Type's for '$format'
        testSet.setTestParam(Arrays.asList("?$format=xml"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), Arrays.asList(""), HttpStatusCodes.OK,
                "application/xml; charset=utf-8");

        // set all 'NOT ACCEPTED' requests
        final List<String> notAcceptedHeaderValues = Arrays.asList("text/plain", "text/plain; charset=utf-8",
                "application/atom+xml", "application/atom+xml; charset=utf-8", "application/atomsvc+xml",
                "application/atomsvc+xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), notAcceptedHeaderValues, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");
        // '$format=atom' it not allowed
        testSet.setTestParam(Arrays.asList("?$format=atom"), ACCEPT_HEADER_VALUES, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");

        // JSON is not supported
        final List<String> notAcceptedJsonHeaderValues = Arrays.asList("application/json",
                "application/json; charset=utf-8");
        // TODO: check which behavior is currently wanted
        testSet.setTestParam(Arrays.asList("?$format=json"), ACCEPT_HEADER_VALUES, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");
        testSet.setTestParam(Arrays.asList("", "?$format=json", "?$format=atom"), notAcceptedJsonHeaderValues,
                HttpStatusCodes.NOT_ACCEPTABLE, "application/json");

        // execute all defined tests
        testSet.execute(getEndpoint());
    }

    @Test
    public void testURI_5_EntitySimpleProperty() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI4, "/Employees('1')/Age").init();

        // set specific response 'Content-Type's for '$format'
        testSet.setTestParam(Arrays.asList("?$format=xml"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), Arrays.asList(""), HttpStatusCodes.OK,
                "application/xml; charset=utf-8");

        // set all 'NOT ACCEPTED' requests
        final List<String> notAcceptedHeaderValues = Arrays.asList("text/plain", "text/plain; charset=utf-8",
                "application/atom+xml", "application/atom+xml; charset=utf-8", "application/atomsvc+xml",
                "application/atomsvc+xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), notAcceptedHeaderValues, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");
        // '$format=atom' it not allowed
        testSet.setTestParam(Arrays.asList("?$format=atom"), ACCEPT_HEADER_VALUES, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");

        // JSON is not supported
        final List<String> notAcceptedJsonHeaderValues = Arrays.asList("application/json",
                "application/json; charset=utf-8");
        // TODO: check which behavior is currently wanted
        testSet.setTestParam(Arrays.asList("?$format=json"), ACCEPT_HEADER_VALUES, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");
        testSet.setTestParam(Arrays.asList("", "?$format=json", "?$format=atom"), notAcceptedJsonHeaderValues,
                HttpStatusCodes.NOT_ACCEPTABLE, "application/json");

        // execute all defined tests
        testSet.execute(getEndpoint());
    }

    @Test
    public void testURI_6A_EntityNavigationProperty() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI6A, "/Employees('1')/ne_Room").init();

        // set specific response 'Content-Type's for '$format'
        testSet.setTestParam(Arrays.asList("?$format=xml"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList("?$format=atom"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/atom+xml; type=entry; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""),
                Arrays.asList("", "application/atom+xml", "application/atom+xml; charset=utf-8"),
                HttpStatusCodes.OK, "application/atom+xml; type=entry; charset=utf-8");

        // set all 'NOT ACCEPTED' requests
        final List<String> notAcceptedHeaderValues = Arrays.asList("text/plain", "text/plain; charset=utf-8",
                "application/atomsvc+xml", "application/atomsvc+xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), notAcceptedHeaderValues, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");

        //
        final List<String> notAcceptedJsonHeaderValues = Arrays.asList("application/json",
                "application/json; charset=utf-8");
        // TODO: check which behavior is currently wanted
        testSet.setTestParam(Arrays.asList("?$format=json"), ACCEPT_HEADER_VALUES, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");
        testSet.setTestParam(Arrays.asList("", "?$format=json"), notAcceptedJsonHeaderValues,
                HttpStatusCodes.NOT_ACCEPTABLE, "application/json");

        // execute all defined tests
        testSet.execute(getEndpoint());
    }

    @Test
    public void testURI_7A_EntityNavigationProperty() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI7A, "/Employees('1')/$links/ne_Room").init();

        // set specific response 'Content-Type's for '$format'
        testSet.setTestParam(Arrays.asList("?$format=xml"), ACCEPT_HEADER_VALUES, HttpStatusCodes.OK,
                "application/xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), Arrays.asList(""), HttpStatusCodes.OK,
                "application/xml; charset=utf-8");

        // set all 'NOT ACCEPTED' requests
        final List<String> notAcceptedHeaderValues = Arrays.asList("text/plain", "text/plain; charset=utf-8",
                "application/atom+xml", "application/atom+xml; charset=utf-8", "application/atomsvc+xml",
                "application/atomsvc+xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), notAcceptedHeaderValues, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");

        //
        final List<String> notAcceptedJsonHeaderValues = Arrays.asList("application/json",
                "application/json; charset=utf-8");
        // TODO: check which behavior is currently wanted
        testSet.setTestParam(Arrays.asList("?$format=json", "?$format=atom"), ACCEPT_HEADER_VALUES,
                HttpStatusCodes.NOT_ACCEPTABLE, "application/xml");
        testSet.setTestParam(Arrays.asList("", "?$format=json", "?$format=atom"), notAcceptedJsonHeaderValues,
                HttpStatusCodes.NOT_ACCEPTABLE, "application/json");

        // execute all defined tests
        testSet.execute(getEndpoint());
    }

    @Test
    public void testURI_8_Metadata() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI8, "/$metadata").init();

        // set specific response 'Content-Type's for '$format'
        testSet.setTestParam(Arrays.asList(""),
                Arrays.asList("", "application/xml", "application/xml; charset=utf-8"), HttpStatusCodes.OK,
                "application/xml; charset=utf-8");

        // set all 'NOT ACCEPTED' requests
        final List<String> notAcceptedHeaderValues = Arrays.asList("text/plain", "text/plain; charset=utf-8",
                "application/atom+xml", "application/atom+xml; charset=utf-8", "application/atomsvc+xml",
                "application/atomsvc+xml; charset=utf-8");
        testSet.setTestParam(Arrays.asList(""), notAcceptedHeaderValues, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/xml");

        // every combination of $format and $metadata is a 'BAD REQUEST'
        testSet.setTestParam(Arrays.asList("?$format=json", "?$format=xml", "?$format=atom"), ACCEPT_HEADER_VALUES,
                HttpStatusCodes.BAD_REQUEST, "application/xml");
        //
        final List<String> jsonAcceptHeaders = Arrays.asList("application/json", "application/json; charset=utf-8");
        // TODO: check which behavior is currently wanted
        testSet.setTestParam(Arrays.asList("?$format=json", "?$format=xml", "?$format=atom"), jsonAcceptHeaders,
                HttpStatusCodes.BAD_REQUEST, "application/json");
        testSet.setTestParam(Arrays.asList(""), jsonAcceptHeaders, HttpStatusCodes.NOT_ACCEPTABLE,
                "application/json");

        // execute all defined tests
        testSet.execute(getEndpoint());
    }

    @Test
    @Ignore("Currently ignored because of a BUG")
    public void testURI_17_EntityMediaResourceDollarValue() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI17, "/Employees('1')/$value")
                .expectedStatusCode(HttpStatusCodes.OK).expectedContentType("image/jpeg").init();

        // every combination of $format and $value is a 'BAD REQUEST'
        testSet.setTestParam(Arrays.asList("?$format=json", "?$format=xml", "?$format=atom"), ACCEPT_HEADER_VALUES,
                HttpStatusCodes.BAD_REQUEST, "application/xml");
        //
        final List<String> jsonAcceptHeaders = Arrays.asList("application/json", "application/json; charset=utf-8");
        // TODO: check which behavior is currently wanted
        testSet.setTestParam(Arrays.asList("?$format=json", "?$format=xml", "?$format=atom"), jsonAcceptHeaders,
                HttpStatusCodes.BAD_REQUEST, "application/json");

        testSet.execute(getEndpoint());
    }

    @Test
    public void testURI_17_EntitySimpleTypeDollarValue() throws Exception {
        // create test set
        FitTestSet testSet = FitTestSet.create(UriType.URI17, "/Employees('1')/Age/$value")
                .expectedStatusCode(HttpStatusCodes.OK).expectedContentType("text/plain; charset=utf-8").init();

        // every combination of $format and $value is a 'BAD REQUEST'
        testSet.setTestParam(Arrays.asList("?$format=json", "?$format=xml", "?$format=atom"), ACCEPT_HEADER_VALUES,
                HttpStatusCodes.BAD_REQUEST, "application/xml");
        //
        final List<String> jsonAcceptHeaders = Arrays.asList("application/json", "application/json; charset=utf-8");
        // TODO: check which behavior is currently wanted
        testSet.setTestParam(Arrays.asList("?$format=json", "?$format=xml", "?$format=atom"), jsonAcceptHeaders,
                HttpStatusCodes.BAD_REQUEST, "application/json");

        testSet.execute(getEndpoint());
    }

}