com.proofpoint.jaxrs.AbstractMapperTest.java Source code

Java tutorial

Introduction

Here is the source code for com.proofpoint.jaxrs.AbstractMapperTest.java

Source

/*
 * Copyright 2014 Proofpoint, 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.proofpoint.jaxrs;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.reflect.TypeToken;
import com.proofpoint.jaxrs.testing.GuavaMultivaluedMap;
import org.testng.Assert;
import org.testng.annotations.Test;

import javax.validation.constraints.NotNull;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.ext.MessageBodyReader;
import javax.ws.rs.ext.MessageBodyWriter;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.zip.ZipException;

import static com.google.common.base.Throwables.propagate;
import static com.proofpoint.testing.Assertions.assertEqualsIgnoreOrder;
import static org.testng.Assert.assertNull;
import static org.testng.Assert.fail;

public abstract class AbstractMapperTest<T extends MessageBodyReader<Object> & MessageBodyWriter<Object>> {
    protected T mapper;

    @Test
    public void testSuccess() throws IOException {
        assertRoundTrip("value");
        assertRoundTrip("<");
        assertRoundTrip(">");
        assertRoundTrip("&");
        assertRoundTrip("<>'&");
    }

    private void assertRoundTrip(String value) throws IOException {
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        MultivaluedMap<String, Object> headers = new GuavaMultivaluedMap<>();
        mapper.writeTo(value, String.class, null, null, null, headers, outputStream);

        assertEncodedProperly(outputStream.toByteArray(), headers, value);
    }

    protected abstract void assertEncodedProperly(byte[] encoded, MultivaluedMap<String, Object> headers,
            String expected) throws IOException;

    @Test
    public void testEOFExceptionReturnsJsonMapperParsingException() throws IOException {
        try {
            mapper.readFrom(Object.class, Object.class, null, null, null, new InputStream() {
                @Override
                public int read() throws IOException {
                    throw new EOFException("forced EOF Exception");
                }

                @Override
                public int read(byte[] b) throws IOException {
                    throw new EOFException("forced EOF Exception");
                }

                @Override
                public int read(byte[] b, int off, int len) throws IOException {
                    throw new EOFException("forced EOF Exception");
                }
            });
            fail("Should have thrown a JsonMapperParsingException");
        } catch (JsonMapperParsingException e) {
            Assert.assertTrue((e.getMessage()).startsWith("Invalid json for Java type"));
        }
    }

    @Test
    public void testJsonProcessingExceptionThrowsJsonMapperParsingException() throws IOException {
        try {
            mapper.readFrom(Object.class, Object.class, null, null, null, new InputStream() {
                @Override
                public int read() throws IOException {
                    throw new TestingJsonProcessingException("forced JsonProcessingException");
                }

                @Override
                public int read(byte[] b) throws IOException {
                    throw new TestingJsonProcessingException("forced JsonProcessingException");
                }

                @Override
                public int read(byte[] b, int off, int len) throws IOException {
                    throw new TestingJsonProcessingException("forced JsonProcessingException");
                }
            });
            fail("Should have thrown a JsonMapperParsingException");
        } catch (JsonMapperParsingException e) {
            Assert.assertTrue((e.getMessage()).startsWith("Invalid json for Java type"));
        }
    }

    @Test(expectedExceptions = IOException.class)
    public void testOtherIOExceptionThrowsIOException() throws IOException {
        try {
            mapper.readFrom(Object.class, Object.class, null, null, null, new InputStream() {
                @Override
                public int read() throws IOException {
                    throw new ZipException("forced ZipException");
                }

                @Override
                public int read(byte[] b) throws IOException {
                    throw new ZipException("forced ZipException");
                }

                @Override
                public int read(byte[] b, int off, int len) throws IOException {
                    throw new ZipException("forced ZipException");
                }
            });
            fail("Should have thrown an IOException");
        } catch (WebApplicationException e) {
            fail("Should not have received an IOException", e);
        }
    }

    @Test
    public void testBeanValidationThrowsBeanValidationException() throws IOException {
        try {
            InputStream is = getInputStream(ImmutableMap.of());
            mapper.readFrom(Object.class, JsonClass.class, null, null, null, is);
            fail("Should have thrown an BeanValidationException");
        } catch (BeanValidationException e) {
            assertEqualsIgnoreOrder(e.getErrorMessages(),
                    ImmutableList.of("secondField may not be null", "firstField may not be null"));
        }
    }

    @Test
    public void testBeanValidationOfListThrowsBeanValidationException() throws IOException {
        ArrayList<Object> jsonStructure = new ArrayList<>();
        jsonStructure.add(null);
        jsonStructure.add(ImmutableMap.of());
        try {
            InputStream is = getInputStream(jsonStructure);
            Type listJsonClassType = new TypeToken<List<JsonClass>>() {
            }.getType();
            mapper.readFrom(Object.class, listJsonClassType, null, null, null, is);
            fail("Should have thrown an BeanValidationException");
        } catch (BeanValidationException e) {
            assertEqualsIgnoreOrder(e.getErrorMessages(),
                    ImmutableList.of("list[1].secondField may not be null", "list[1].firstField may not be null"));
        }
    }

    @Test
    public void testBeanValidationOfSetThrowsBeanValidationException() throws IOException {
        try {
            InputStream is = getInputStream(ImmutableList.of(ImmutableMap.of()));
            Type setJsonClassType = new TypeToken<Set<JsonClass>>() {
            }.getType();
            mapper.readFrom(Object.class, setJsonClassType, null, null, null, is);
            fail("Should have thrown an BeanValidationException");
        } catch (BeanValidationException e) {
            assertEqualsIgnoreOrder(e.getErrorMessages(), ImmutableList
                    .of("collection[].secondField may not be null", "collection[].firstField may not be null"));
        }
    }

    @Test
    public void testBeanValidationOfMapThrowsBeanValidationException() throws IOException {
        try {
            InputStream is = getInputStream(ImmutableMap.of("foo", ImmutableMap.of()));
            Type mapJsonClassType = new TypeToken<Map<String, JsonClass>>() {
            }.getType();
            mapper.readFrom(Object.class, mapJsonClassType, null, null, null, is);
            fail("Should have thrown an BeanValidationException");
        } catch (BeanValidationException e) {
            assertEqualsIgnoreOrder(e.getErrorMessages(), ImmutableList.of("map[foo].secondField may not be null",
                    "map[foo].firstField may not be null"));
        }
    }

    @Test
    public void testNoPropertyMutatorInference() throws IOException {
        InputStream is = getInputStream(
                ImmutableMap.of("firstField", "first", "secondField", "second", "notWritable", "foo"));
        JsonClass jsonClass = (JsonClass) mapper.readFrom(Object.class, JsonClass.class, null, null, null, is);
        assertNull(jsonClass.getNotWritable());

    }

    private InputStream getInputStream(Object jsonStructure) {
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        MultivaluedMap<String, Object> headers = new GuavaMultivaluedMap<>();
        try {
            mapper.writeTo(jsonStructure, Object.class, null, null, null, headers, outputStream);
        } catch (IOException e) {
            throw propagate(e);
        }

        return new ByteArrayInputStream(outputStream.toByteArray());
    }

    private static class TestingJsonProcessingException extends JsonProcessingException {
        public TestingJsonProcessingException(String message) {
            super(message);
        }
    }

    public static class JsonClass {
        @NotNull
        private String firstField;

        @NotNull
        private String secondField;

        private String notWritable = null;

        @JsonCreator
        private JsonClass(@JsonProperty("firstField") String firstField,
                @JsonProperty("secondField") String secondField) {
            this.firstField = firstField;
            this.secondField = secondField;
        }

        @JsonProperty
        public String getNotWritable() {
            return notWritable;
        }
    }
}