es.upm.fiware.rss.expenditureLimit.server.exceptionhandles.test.ExpenditureLimitExceptionMapperTest.java Source code

Java tutorial

Introduction

Here is the source code for es.upm.fiware.rss.expenditureLimit.server.exceptionhandles.test.ExpenditureLimitExceptionMapperTest.java

Source

/**
 * Revenue Settlement and Sharing System GE
 * Copyright (C) 2011-2014, Javier Lucio - lucio@tid.es
 * Telefonica Investigacion y Desarrollo, S.A.
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
package es.upm.fiware.rss.expenditureLimit.server.exceptionhandles.test;

import java.net.URI;
import java.sql.SQLException;

import javax.sql.DataSource;
import javax.ws.rs.NotFoundException;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.UriInfo;

import org.hibernate.exception.GenericJDBCException;
import org.hibernate.exception.JDBCConnectionException;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mockito;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.util.ReflectionTestUtils;

import es.upm.fiware.rss.common.test.DatabaseLoader;
import es.upm.fiware.rss.exception.RSSException;
import es.upm.fiware.rss.expenditureLimit.server.exceptionhandles.ExpenditureLimitExceptionMapper;

public class ExpenditureLimitExceptionMapperTest {
    /**
     * Logging system.
     */
    private static Logger logger = LoggerFactory.getLogger(ExpenditureLimitExceptionMapperTest.class);
    /**
     * For database access.
     */
    @Autowired
    private DataSource dataSource;
    /**
     * 
     */
    @Autowired
    private DatabaseLoader databaseLoader;

    @Autowired
    ExpenditureLimitExceptionMapper mapper;

    public void toResponse() throws Exception {
        UriInfo mockUriInfo = Mockito.mock(UriInfo.class);
        Mockito.when(mockUriInfo.getAbsolutePath()).thenReturn(new URI("http://www.test.com/go"));
        ReflectionTestUtils.setField(mapper, "ui", mockUriInfo);

        RSSException e = new RSSException("RssException");
        Response response = mapper.toResponse(e);
        Assert.assertTrue(true);

        GenericJDBCException ex = new GenericJDBCException("sql", new SQLException("reason"));
        response = mapper.toResponse(ex);
        Assert.assertTrue(true);

        JDBCConnectionException ex1 = new JDBCConnectionException("sql", new SQLException("reason"));
        response = mapper.toResponse(ex1);
        Assert.assertTrue(true);

        NotFoundException ex2 = new NotFoundException();
        response = mapper.toResponse(ex2);
        Assert.assertTrue(true);

        Exception ex3 = new Exception("RssException");
        response = mapper.toResponse(ex3);
        Assert.assertTrue(true);

        Exception ex4 = new Exception("RssException", ex);
        response = mapper.toResponse(ex4);
        Assert.assertTrue(true);

        Exception ex5 = new Exception("RssException", ex1);
        response = mapper.toResponse(ex5);
        Assert.assertTrue(true);

    }
}