/* * Copyright 2016 ThoughtWorks, Inc. * * 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.thoughtworks.go.server.presentation.models; import com.thoughtworks.go.domain.DirectoryEntries; import com.thoughtworks.go.domain.JobInstance; import com.thoughtworks.go.domain.Stage; import com.thoughtworks.go.domain.exception.IllegalArtifactLocationException; import com.thoughtworks.go.helper.JobInstanceMother; import com.thoughtworks.go.server.service.ArtifactsService; import com.thoughtworks.go.util.DirectoryReader; import org.junit.Before; import org.junit.Test; import java.io.File; import static com.thoughtworks.go.helper.JobInstanceMother.building; import static com.thoughtworks.go.helper.StageMother.custom; import static com.thoughtworks.go.util.ArtifactLogUtil.getConsoleOutputFolderAndFileName; import static org.hamcrest.core.Is.is; import static org.junit.Assert.assertThat; import static org.mockito.Matchers.any; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; public class JobDetailPresentationModelTest { private DirectoryReader directoryReader; private ArtifactsService artifactsService; @Before public void setUp() throws Exception { directoryReader = mock(DirectoryReader.class); artifactsService = mock(ArtifactsService.class); } @Test public void shouldShowMessage() throws IllegalArtifactLocationException { JobInstance jobInstance = JobInstanceMother.completed("job-1"); Stage stage = new Stage(); stage.setArtifactsDeleted(true); DirectoryEntries directoryEntries = new DirectoryEntries(); when(directoryReader.listEntries(any(File.class), any(String.class))).thenReturn(directoryEntries); JobDetailPresentationModel jobDetailPresentationModel = new JobDetailPresentationModel(jobInstance, null, null , null, null, null, artifactsService, null, stage); DirectoryEntries artifactFiles = jobDetailPresentationModel.getArtifactFiles(directoryReader); assertThat(artifactFiles.isArtifactsDeleted(), is(true)); } @Test public void shouldAddFakeConsoleOutputEntryIfJobIsNotCompleted() throws Exception { JobInstance job = building("job"); JobDetailPresentationModel model = new JobDetailPresentationModel(job, null, null, null, null, null, artifactsService, null, custom("stage")); when(artifactsService.findArtifact(job.getIdentifier(), "")).thenReturn(mock(File.class)); when(artifactsService.findArtifactUrl(job.getIdentifier(), getConsoleOutputFolderAndFileName())).thenReturn("path/to/console"); when(directoryReader.listEntries(any(File.class), eq(""))).thenReturn(new DirectoryEntries()); DirectoryEntries expected = new DirectoryEntries(); expected.addFolder("cruise-output").addFile("console.log", "path/to/console"); assertThat(model.getArtifactFiles(directoryReader), is(expected)); } }