fr.javatronic.damapping.test.injectable.SpringHotelControllerTest.java Source code

Java tutorial

Introduction

Here is the source code for fr.javatronic.damapping.test.injectable.SpringHotelControllerTest.java

Source

/**
 * Copyright (C) 2013 Sbastien Lesaint (http://www.javatronic.fr/)
 *
 * 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 fr.javatronic.damapping.test.injectable;

import fr.javatronic.damapping.test.injectable.dto.HotelDto;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

import static org.assertj.core.api.Assertions.assertThat;

/**
 * SpringHotelControllerTest -
 *
 * @author Sbastien Lesaint
 */
public class SpringHotelControllerTest {

    private HotelController hotelController;

    @BeforeClass
    public void setup() {
        AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(
                SpringHotelControllerConfiguration.class);
        this.hotelController = ctx.getAutowireCapableBeanFactory().getBean(HotelController.class);
        ctx.start();
    }

    @Test
    public void testGetHotel() throws Exception {
        HotelDto hotel = hotelController.getHotel();
        assertThat(hotel.getFloors()).hasSize(2);
        assertThat(hotel.getFloors().get(0).getRooms()).extracting("number").containsExactly("1", "2");
        assertThat(hotel.getFloors().get(1).getRooms()).extracting("number").containsExactly("11", "12");
    }
}