Package org.candlepin.common.exceptions.mappers

Source Code of org.candlepin.common.exceptions.mappers.UnsupportedMediaTypeExceptionMapperTest

/**
* Copyright (c) 2009 - 2012 Red Hat, Inc.
*
* This software is licensed to you under the GNU General Public License,
* version 2 (GPLv2). There is NO WARRANTY for this software, express or
* implied, including the implied warranties of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
* along with this software; if not, see
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
*
* Red Hat trademarks are not licensed under GPLv2. No permission is
* granted to use or replicate Red Hat trademarks that are incorporated
* in this software or its documentation.
*/
package org.candlepin.common.exceptions.mappers;

import static org.junit.Assert.*;

import org.jboss.resteasy.spi.UnsupportedMediaTypeException;
import org.junit.Test;

import javax.ws.rs.core.Response;

/**
* UnsupportedMediaTypeExceptionMapperTest
*/
public class UnsupportedMediaTypeExceptionMapperTest extends
    TestExceptionMapperBase {

    @Test
    public void handleException() {
        UnsupportedMediaTypeException nae =
            new UnsupportedMediaTypeException("unacceptable");
        UnsupportedMediaTypeExceptionMapper naem =
            injector.getInstance(UnsupportedMediaTypeExceptionMapper.class);
        Response r = naem.toResponse(nae);
        assertEquals(415, r.getStatus());
        verifyMessage(r, rtmsg("unacceptable"));
    }

    @Override
    public Class getMapperClass() {
        return UnsupportedMediaTypeExceptionMapper.class;
    }
}
TOP

Related Classes of org.candlepin.common.exceptions.mappers.UnsupportedMediaTypeExceptionMapperTest

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.