it.reply.orchestrator.service.TemplateServiceTest.java Source code

Java tutorial

Introduction

Here is the source code for it.reply.orchestrator.service.TemplateServiceTest.java

Source

package it.reply.orchestrator.service;

/*
 * Copyright  2015-2017 Santer Reply S.p.A.
 *
 * 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.
 */

import java.util.UUID;

import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.MockitoAnnotations;
import org.springframework.test.util.ReflectionTestUtils;

import it.reply.orchestrator.controller.ControllerTestUtils;
import it.reply.orchestrator.dal.entity.Deployment;
import it.reply.orchestrator.dal.repository.DeploymentRepository;
import it.reply.orchestrator.exception.http.NotFoundException;

public class TemplateServiceTest {

    @InjectMocks
    private TemplateServiceImpl templateServiceImpl = new TemplateServiceImpl();

    @Mock
    private DeploymentRepository deploymentRepository;

    @Before
    public void setup() {
        MockitoAnnotations.initMocks(this);
    }

    @Test
    public void getTemplate() {
        Deployment createDeployment = ControllerTestUtils.createDeployment();
        String id = UUID.randomUUID().toString();
        Mockito.when(deploymentRepository.findOne(id)).thenReturn(createDeployment);

        Assert.assertEquals(templateServiceImpl.getTemplate(id), createDeployment.getTemplate());
    }

    @Test(expected = NotFoundException.class)
    public void failGetTemplate() {
        String id = UUID.randomUUID().toString();
        Mockito.when(deploymentRepository.findOne(id)).thenReturn(null);
        templateServiceImpl.getTemplate(id);
    }

}