/* * 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 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.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 SchedulerRuntime5IT 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 delayHeartbeat() throws Exception { long sleepTime = Long.parseLong( props.getProperty( TIMEOUT_PROP ) ); int heartbeatCount = 2; long customRetry = sleepTime * 2; DelayHeartbeat job = springResource.getBean( "delayHeartbeat", DelayHeartbeat.class ); job.setTimeout( customRetry ); job.setLatch( heartbeatCount + 1 ); getJobListener().setExpected( 1 ); JobData returned = scheduler.createJob( "delayHeartbeat", System.currentTimeMillis(), new JobData() ); // 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 * ( heartbeatCount * 2 ) + 5000L ); assertTrue( "Job ran to complete", waited ); scheduler.refreshIndex(); JobStat 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( 1, stat.getTotalAttempts() ); assertEquals( 1, stat.getRunCount() ); assertEquals( 0, stat.getDelayCount() ); } }