/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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.apache.usergrid.batch.job; import java.util.concurrent.TimeUnit; import org.junit.Ignore; import org.junit.Test; import org.apache.usergrid.persistence.entities.JobData; import org.apache.usergrid.persistence.entities.JobStat; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; /** * Class to test job runtimes */ @Ignore("Pending https://issues.apache.org/jira/browse/USERGRID-1105. Spring problems." ) // These tests no longer work with shared Spring context, need to be fixed public class SchedulerRuntime6IT extends AbstractSchedulerRuntimeIT { /** * Test the scheduler ramps up correctly when there are more jobs to be read after a * pause when the job specifies the retry time */ @Test public void onlyOnceTest() throws Exception { long sleepTime = Long.parseLong( props.getProperty( TIMEOUT_PROP ) ); long customRetry = sleepTime + 1000; int numberOfRuns = 1; OnlyOnceExecution job = springResource.getBean( "onlyOnceExceution", OnlyOnceExecution.class ); job.setTimeout( customRetry ); job.setLatch( numberOfRuns ); job.setDelay( sleepTime ); getJobListener().setExpected(1); JobData returned = scheduler.createJob( "onlyOnceExceution", System.currentTimeMillis(), new JobData() ); scheduler.refreshIndex(); // sleep until the job should have failed. We sleep 1 extra cycle just to // make sure we're not racing the test boolean waited = getJobListener().blockTilDone( customRetry * numberOfRuns * 2 + 5000L ); assertTrue( "Job ran twice", waited ); getJobListener().setExpected( 2 ); //reset our latch immediately for further tests job.setLatch( numberOfRuns ); scheduler.refreshIndex(); JobStat stat = scheduler.getStatsForJob( returned.getJobName(), returned.getUuid() ); // we should have only marked this as run once since we delayed furthur execution // we should have only marked this as run once assertNotNull( stat ); assertEquals( numberOfRuns, stat.getTotalAttempts() ); assertEquals( numberOfRuns, stat.getRunCount() ); assertEquals( 0, stat.getDelayCount() ); boolean slept = job.waitForSleep( customRetry * numberOfRuns * 2, TimeUnit.MILLISECONDS ); assertTrue( "Job slept", slept ); scheduler.refreshIndex(); //now wait again to see if the job fires one more time, it shouldn't waited = getJobListener().blockTilDone( customRetry * numberOfRuns * 2 ); assertFalse( "Job ran twice", waited ); scheduler.refreshIndex(); stat = scheduler.getStatsForJob( returned.getJobName(), returned.getUuid() ); // we should have only marked this as run once since we delayed further execution // we should have only marked this as run once assertEquals( numberOfRuns, stat.getTotalAttempts() ); assertEquals( numberOfRuns, stat.getRunCount() ); assertEquals( 0, stat.getDelayCount() ); } }