Package org.springframework.springfaces.traveladvisor.service.impl

Source Code of org.springframework.springfaces.traveladvisor.service.impl.CityServiceImplTest

/*
* Copyright 2010-2012 the original author or authors.
*
* 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 org.springframework.springfaces.traveladvisor.service.impl;

import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
import static org.mockito.BDDMockito.given;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.springfaces.traveladvisor.domain.City;
import org.springframework.springfaces.traveladvisor.domain.HotelSummary;
import org.springframework.springfaces.traveladvisor.domain.repository.CityRepository;
import org.springframework.springfaces.traveladvisor.domain.repository.HotelSummaryRepository;
import org.springframework.springfaces.traveladvisor.service.CitySearchCriteria;

@RunWith(MockitoJUnitRunner.class)
public class CityServiceImplTest {

  @InjectMocks
  private CityServiceImpl cityService = new CityServiceImpl();;

  @Mock
  private CityRepository cityRepository;

  @Mock
  private HotelSummaryRepository hotelSummaryRepository;

  @Mock
  private Page<City> cities;

  @Mock
  private City city;

  @Mock
  private Page<HotelSummary> hotels;

  @Mock
  private Pageable pageable;

  @Test
  public void shouldFindCitiesByName() throws Exception {
    CitySearchCriteria criteria = new CitySearchCriteria("city");
    given(this.cityRepository.findByNameLikeAndCountryLikeAllIgnoringCase("%city%", "%%", this.pageable))
        .willReturn(this.cities);
    assertThat(this.cityService.findCities(criteria, this.pageable), is(this.cities));
  }

  @Test
  public void shouldFindCitiesByNameRestrictedToCountry() throws Exception {
    CitySearchCriteria criteria = new CitySearchCriteria("city, country");
    given(this.cityRepository.findByNameLikeAndCountryLikeAllIgnoringCase("%city%", "%country%", this.pageable))
        .willReturn(this.cities);
    assertThat(this.cityService.findCities(criteria, this.pageable), is(this.cities));
  }

  @Test
  public void shouldFindCitiesByNameRestrictedToCountryWithExtraCommas() throws Exception {
    CitySearchCriteria criteria = new CitySearchCriteria("ci,ty,country");
    given(this.cityRepository.findByNameLikeAndCountryLikeAllIgnoringCase("%ci,ty%", "%country%", this.pageable))
        .willReturn(this.cities);
    assertThat(this.cityService.findCities(criteria, this.pageable), is(this.cities));
  }

  @Test
  public void shouldFindCitiesByCountry() throws Exception {
    CitySearchCriteria criteria = new CitySearchCriteria(",country");
    given(this.cityRepository.findByNameLikeAndCountryLikeAllIgnoringCase("%%", "%country%", this.pageable))
        .willReturn(this.cities);
    assertThat(this.cityService.findCities(criteria, this.pageable), is(this.cities));
  }

  @Test
  public void shouldGetCity() throws Exception {
    given(this.cityRepository.findByNameAndCountryAllIgnoringCase("name", "country")).willReturn(this.city);
    assertThat(this.cityService.getCity("name", "country"), is(this.city));
  }

  @Test
  public void shouldGetHotels() throws Exception {
    given(this.hotelSummaryRepository.findByCity(this.city, this.pageable)).willReturn(this.hotels);
    assertThat(this.cityService.getHotels(this.city, this.pageable), is(this.hotels));
  }
}
TOP

Related Classes of org.springframework.springfaces.traveladvisor.service.impl.CityServiceImplTest

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.