/* * Copyright 2009-2010 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.batch.admin.web; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.when; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Arrays; import java.util.Date; import java.util.TimeZone; import org.junit.Before; import org.junit.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import org.springframework.batch.admin.service.JobService; import org.springframework.batch.core.JobParameters; import org.springframework.batch.test.MetaDataInstanceFactory; import org.springframework.mock.web.MockHttpServletRequest; import org.springframework.ui.ExtendedModelMap; import org.springframework.validation.BindException; public class JobControllerTests { @Mock private JobService jobService; private JobController controller; @Before public void setUp() { MockitoAnnotations.initMocks(this); controller = new JobController(jobService); } @Test public void testJobNameSunnyDay() throws Exception { MockHttpServletRequest request = new MockHttpServletRequest(); request.setPathInfo("foo/bar/jobs/spam"); assertEquals("spam", controller.getJobName(request)); } @Test public void testJobNameWithExtension() throws Exception { MockHttpServletRequest request = new MockHttpServletRequest(); request.setPathInfo("foo/bar/jobs/spam.html"); assertEquals("spam", controller.getJobName(request)); } @Test public void testJobNameWithPeriod() throws Exception { MockHttpServletRequest request = new MockHttpServletRequest(); request.setPathInfo("foo/bar/jobs/spam.bucket"); assertEquals("spam.bucket", controller.getJobName(request)); } @Test public void testTimeFormat() throws Exception { DateFormat timeFormat = new SimpleDateFormat("HH:mm:ss"); timeFormat.setTimeZone(TimeZone.getTimeZone("GMT")); assertEquals("01:00:01", timeFormat.format(new Date(3601000)).substring(0, 8)); } @Test public void testLaunchSunnyDay() throws Exception { LaunchRequest request = new LaunchRequest(); when(jobService.launch("foo", new JobParameters())).thenReturn(MetaDataInstanceFactory.createJobExecution()); when(jobService.listJobInstances("foo", 0, 20)).thenReturn(Arrays.asList(MetaDataInstanceFactory.createJobInstance())); when(jobService.getJobExecutionsForJobInstance("foo", 12L)).thenReturn(Arrays.asList(MetaDataInstanceFactory.createJobExecution("foo", 12L, 123L))); when(jobService.countJobExecutionsForJob("foo")).thenReturn(12); when(jobService.countJobInstances("foo")).thenReturn(100); when(jobService.isLaunchable("foo")).thenReturn(true); when(jobService.isIncrementable("foo")).thenReturn(true); when(jobService.getLastJobParameters("foo")).thenReturn(new JobParameters()); ExtendedModelMap model = new ExtendedModelMap(); controller.launch(model, "foo", request, new BindException(request, "request"), "job"); assertEquals("foo", request.getJobName()); // Job, JobInstances, jobParameters, JobExecution, total, next, start, // end assertEquals(8, model.size()); assertTrue(model.containsKey("jobExecutionInfo")); assertTrue(model.containsKey("jobInfo")); } @Test public void testListSunnyDay() throws Exception { when(jobService.listJobs(10, 20)).thenReturn(Arrays.asList("job")); when(jobService.countJobExecutionsForJob("job")).thenReturn(12); when(jobService.countJobs()).thenReturn(100); when(jobService.isLaunchable("job")).thenReturn(true); when(jobService.isIncrementable("job")).thenReturn(true); ExtendedModelMap model = new ExtendedModelMap(); controller.jobs(model, 10, 20); // Jobs, total, next, previous, start, end assertEquals(6, model.size()); } @Test public void testJobSunnyDay() throws Exception { when(jobService.listJobInstances("job", 10, 20)).thenReturn(Arrays.asList(MetaDataInstanceFactory.createJobInstance())); when(jobService.getJobExecutionsForJobInstance("job", 12L)).thenReturn(Arrays.asList(MetaDataInstanceFactory.createJobExecution("job", 12L, 123L))); when(jobService.countJobExecutionsForJob("job")).thenReturn(12); when(jobService.countJobInstances("job")).thenReturn(100); when(jobService.isLaunchable("job")).thenReturn(true); when(jobService.isIncrementable("job")).thenReturn(true); when(jobService.getLastJobParameters("job")).thenReturn(new JobParameters()); ExtendedModelMap model = new ExtendedModelMap(); controller.details(model, "job", null, 10, 20); // Job, JobInstances, jobParameters, total, next, previous, start, end assertEquals(8, model.size()); } }