com.expedia.seiso.domain.service.impl.ItemServiceImplTests.java Source code

Java tutorial

Introduction

Here is the source code for com.expedia.seiso.domain.service.impl.ItemServiceImplTests.java

Source

/* 
 * Copyright 2013-2015 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 com.expedia.seiso.domain.service.impl;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.mockito.Matchers.anyObject;
import static org.mockito.Matchers.eq;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.List;

import lombok.val;
import lombok.extern.slf4j.XSlf4j;

import org.junit.Before;
import org.junit.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.repository.support.Repositories;
import org.springframework.util.ReflectionUtils;

import com.expedia.seiso.core.exception.ResourceNotFoundException;
import com.expedia.seiso.domain.entity.Item;
import com.expedia.seiso.domain.entity.Person;
import com.expedia.seiso.domain.entity.key.ItemKey;
import com.expedia.seiso.domain.entity.key.SimpleItemKey;
import com.expedia.seiso.domain.meta.ItemMeta;
import com.expedia.seiso.domain.meta.ItemMetaLookup;
import com.expedia.seiso.domain.repo.PersonRepo;
import com.expedia.seiso.domain.repo.adapter.RepoAdapterLookup;
import com.expedia.seiso.domain.repo.adapter.SimpleItemRepoAdapter;

/**
 * @author Willie Wheeler
 */
@XSlf4j
public class ItemServiceImplTests {

    // Class under test
    @InjectMocks
    private ItemServiceImpl itemService;

    // Dependencies
    @Mock
    private ItemMetaLookup itemMetaLookup;
    @Mock
    private Repositories repositories;
    @Mock
    private PersonRepo personRepo;
    @Mock
    private RepoAdapterLookup repoAdapters;
    @Mock
    private SimpleItemRepoAdapter simpleItemRepoAdapter;
    @Mock
    private ItemDeleter itemDeleter;
    @Mock
    private ItemMerger itemMerger;
    @Mock
    private ItemSaver itemSaver;

    // Test data
    @Mock
    private ItemMeta personMeta;
    @Mock
    private Pageable personPageable;
    private Method personFindByKeyMethod;
    private Person person, newPerson;
    private SimpleItemKey personKey;
    private List<Person> personList;
    @Mock
    private Page<Person> personPage;

    @Before
    public void setUp() throws Exception {
        this.itemService = new ItemServiceImpl();
        MockitoAnnotations.initMocks(this);
        setUpTestData();
        setUpDependencies();
    }

    private void setUpTestData() {
        // @formatter:off
        this.person = new Person().setUsername("wwheeler").setFirstName("Willie").setLastName("Wheeler");
        this.newPerson = new Person().setUsername("Donkey").setFirstName("Donkey").setLastName("Hotey");
        // @formatter:on

        this.personList = Arrays.asList(person);

        this.personFindByKeyMethod = ReflectionUtils.findMethod(PersonRepo.class, "findByUsername", String.class);
        log.trace("method={}", personFindByKeyMethod);

        when(personMeta.getRepositoryFindByKeyMethod()).thenReturn(personFindByKeyMethod);

        this.personKey = new SimpleItemKey(Person.class, person.getUsername());
    }

    private void setUpDependencies() {
        when(itemMetaLookup.getItemMeta(Person.class)).thenReturn(personMeta);

        when(repositories.getRepositoryFor(Person.class)).thenReturn(personRepo);

        when(personRepo.findAll()).thenReturn(personList);
        when(personRepo.findAll(personPageable)).thenReturn(personPage);

        when(repoAdapters.getRepoAdapterFor(Person.class)).thenReturn(simpleItemRepoAdapter);
        when(simpleItemRepoAdapter.find(personKey)).thenReturn(person);
    }

    @Test
    public void save_create() {
        itemService.save(newPerson, true);
        verify(itemSaver).create((Person) anyObject(), eq(true));
    }

    @Test
    public void save_update() {
        itemService.save(person, true);
        verify(itemSaver).update(person, person, true);
    }

    @Test(expected = NullPointerException.class)
    public void save_null() {
        itemService.save(null, true);
    }

    @Test
    public void findAll() {
        val result = itemService.findAll(Person.class);
        assertNotNull(result);
        verify(personRepo).findAll();
    }

    @Test(expected = NullPointerException.class)
    public void findAll_null() {
        itemService.findAll(null);
    }

    @Test
    @SuppressWarnings("rawtypes")
    public void findAll_paging() {
        val result = itemService.findAll(Person.class, personPageable);
        assertNotNull(result);
        verify(personRepo).findAll(personPageable);
    }

    @Test(expected = NullPointerException.class)
    public void findAll_paging_nullItemClass() {
        itemService.findAll(null, personPageable);
    }

    @Test(expected = NullPointerException.class)
    public void findAll_paging_nullPageable() {
        itemService.findAll(Person.class, null);
    }

    @Test
    public void find() {
        val result = itemService.find(new SimpleItemKey(Person.class, person.getUsername()));
        assertNotNull(result);
        assertEquals(person, result);
    }

    @Test(expected = ResourceNotFoundException.class)
    public void find_nonexisting() {
        itemService.find(new SimpleItemKey(Person.class, "i-dont-exist"));
    }

    @Test(expected = NullPointerException.class)
    public void find_nullItemKey() {
        itemService.find(null);
    }

    @Test
    public void delete() {
        itemService.delete(person);
        verify(itemDeleter, times(1)).delete(person);
    }

    @Test
    public void delete_item() {
        itemService.delete(person);
        verify(itemDeleter).delete(person);
    }

    @Test(expected = NullPointerException.class)
    public void delete_nullItem() {
        itemService.delete((Item) null);
    }

    @Test
    public void delete_itemKey() {
        itemService.delete(personKey);
        verify(itemDeleter).delete(person);
    }

    @Test(expected = NullPointerException.class)
    public void delete_nullItemKey() {
        itemService.delete((ItemKey) null);
    }
}