/* * 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.addthis.hydra.job.entity; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; import static org.mockito.Mockito.when; import com.addthis.hydra.job.Job; import com.google.common.collect.Lists; import org.junit.Before; import org.junit.Test; public class JobMacroManagerTest extends JobEntityManagerTestBase { private Job job; private JobMacroManager manager; @Before public void setUp() throws Exception { initSpawnMocks(); // mock a job that uses "my-macro" job = new Job("my_mock_job", "bob"); when(spawn.listJobs()).thenReturn(Lists.newArrayList(job)); when(spawn.getJobConfig("my_mock_job")).thenReturn("%{my-macro}%"); manager = new JobMacroManager(spawn); } @Test public void dataStorePath() { assertEquals("/spawn/common/macro", manager.getDataStorePath()); } @Test public void findJobUsingEntity_Found() throws Exception { assertEquals(job, manager.findDependentJob(spawn, "my-macro")); } @Test public void findJobUsingEntity_NotFound() throws Exception { assertNull(manager.findDependentJob(spawn, "her-macro")); } }