/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.core.transformer.datatype; import static java.nio.charset.StandardCharsets.US_ASCII; import static org.hamcrest.CoreMatchers.instanceOf; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; import org.mule.runtime.api.metadata.MediaType; import org.mule.runtime.core.api.transformer.TransformerException; import org.mule.runtime.core.internal.transformer.datatype.StringToCharsetTransformer; import org.mule.runtime.core.internal.transformer.datatype.StringToMediaTypeTransformer; import org.mule.tck.junit4.AbstractMuleTestCase; import org.mule.tck.size.SmallTest; import java.nio.charset.UnsupportedCharsetException; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; @SmallTest public class DataTypeTransformersTestCase extends AbstractMuleTestCase { @Rule public ExpectedException expected = ExpectedException.none(); @Test public void validCharset() throws TransformerException { final StringToCharsetTransformer transformer = new StringToCharsetTransformer(); assertThat(transformer.transform(US_ASCII.name()), is(US_ASCII)); } @Test public void invalidCharset() throws TransformerException { final StringToCharsetTransformer transformer = new StringToCharsetTransformer(); expected.expect(TransformerException.class); expected.expectCause(instanceOf(UnsupportedCharsetException.class)); transformer.transform("invalid"); } @Test public void validMediaType() throws TransformerException { final StringToMediaTypeTransformer transformer = new StringToMediaTypeTransformer(); final MediaType transformed = (MediaType) transformer.transform("text/plain"); assertThat(transformed.getPrimaryType(), is("text")); assertThat(transformed.getSubType(), is("plain")); assertThat(transformed.getCharset().isPresent(), is(false)); } @Test public void validMediaTypeWithCharset() throws TransformerException { final StringToMediaTypeTransformer transformer = new StringToMediaTypeTransformer(); final MediaType transformed = (MediaType) transformer.transform("text/plain;charset=" + US_ASCII.name()); assertThat(transformed.getPrimaryType(), is("text")); assertThat(transformed.getSubType(), is("plain")); assertThat(transformed.getCharset().get(), is(US_ASCII)); } @Test public void invalidMediaType() throws TransformerException { final StringToMediaTypeTransformer transformer = new StringToMediaTypeTransformer(); expected.expect(TransformerException.class); expected.expectCause(instanceOf(IllegalArgumentException.class)); transformer.transform("invalid"); } }