use of com.birbit.android.jobqueue.RetryConstraint in project android-priority-jobqueue by yigit.
the class RetryLogicTest method testChangePriority.
@Ignore
public void testChangePriority(boolean persistent) throws InterruptedException {
final AtomicInteger priority = new AtomicInteger(1);
retryProvider = new RetryProvider() {
@Override
public RetryConstraint build(Job job, Throwable throwable, int runCount, int maxRunCount) {
RetryConstraint constraint = new RetryConstraint(true);
priority.set(job.getPriority() * 2);
constraint.setNewPriority(priority.get());
return constraint;
}
};
onRunCallback = new Callback() {
@Override
public void on(Job job) {
assertThat("priority should be the expected value", job.getPriority(), is(priority.get()));
}
};
RetryJob retryJob = new RetryJob(new Params(priority.get()).setPersistent(persistent));
retryJob.retryLimit = 3;
canRun = true;
onRunLatch = new CountDownLatch(3);
createJobManager().addJob(retryJob);
assertThat(onRunLatch.await(5, TimeUnit.SECONDS), is(true));
assertThat("it should run 3 times", runCount, is(3));
assertThat(cancelLatch.await(5, TimeUnit.SECONDS), is(true));
}
use of com.birbit.android.jobqueue.RetryConstraint in project android-priority-jobqueue by yigit.
the class RetryLogicTest method testChangeDelay.
@TargetApi(Build.VERSION_CODES.GINGERBREAD)
public void testChangeDelay(boolean persistent) throws InterruptedException {
canRun = true;
RetryJob job = new RetryJob(new Params(1).setPersistent(persistent));
job.retryLimit = 2;
retryProvider = new RetryProvider() {
@Override
public RetryConstraint build(Job job, Throwable throwable, int runCount, int maxRunCount) {
RetryConstraint constraint = new RetryConstraint(true);
constraint.setNewDelayInMs(2000L);
return constraint;
}
};
final List<Long> runTimes = new ArrayList<>();
onRunCallback = new Callback() {
@Override
public void on(Job job) {
runTimes.add(mockTimer.nanoTime());
}
};
final Throwable[] callbackError = new Throwable[1];
final CountDownLatch runLatch = new CountDownLatch(2);
final JobManager jobManager = createJobManager();
jobManager.addCallback(new JobManagerCallbackAdapter() {
@Override
public void onAfterJobRun(@NonNull Job job, int resultCode) {
try {
mockTimer.incrementMs(1999);
assertThat("no jobs should be ready", jobManager.countReadyJobs(), is(0));
mockTimer.incrementMs(2);
} catch (Throwable t) {
callbackError[0] = t;
} finally {
runLatch.countDown();
}
}
});
jobManager.addJob(job);
assertThat("on run callbacks should arrive", runLatch.await(100, TimeUnit.MINUTES), is(true));
assertThat("run callback should not have any errors", callbackError[0], nullValue());
assertThat("job should be canceled", cancelLatch.await(1, TimeUnit.SECONDS), is(true));
assertThat("should run 2 times", runCount, is(2));
long timeInBetween = TimeUnit.NANOSECONDS.toSeconds(runTimes.get(1) - runTimes.get(0));
assertThat("time between two runs should be at least 2 seconds. " + timeInBetween, 2 <= timeInBetween, is(true));
}
use of com.birbit.android.jobqueue.RetryConstraint in project android-priority-jobqueue by yigit.
the class RetryLogicTest method testFirstRunCount.
public void testFirstRunCount(boolean persistent) throws InterruptedException {
final AtomicInteger runCnt = new AtomicInteger(0);
onRunCallback = new Callback() {
@Override
public void on(Job job) {
assertThat("run count should match", ((RetryJob) job).getCurrentRunCount(), is(runCnt.incrementAndGet()));
}
};
retryProvider = new RetryProvider() {
@Override
public RetryConstraint build(Job job, Throwable throwable, int runCount, int maxRunCount) {
return RetryConstraint.RETRY;
}
};
canRun = true;
RetryJob job = new RetryJob(new Params(0).setPersistent(persistent));
job.retryLimit = 10;
createJobManager().addJob(job);
assertThat("", cancelLatch.await(4, TimeUnit.SECONDS), is(true));
assertThat("", runCount, is(10));
}
use of com.birbit.android.jobqueue.RetryConstraint in project android-priority-jobqueue by yigit.
the class RetryLogicTest method testChangeDelayOfTheGroup.
@TargetApi(Build.VERSION_CODES.GINGERBREAD)
public void testChangeDelayOfTheGroup(Boolean persistent) throws InterruptedException {
final JobManager jobManager = createJobManager();
canRun = true;
final RetryJob job1 = new RetryJob(new Params(2).setPersistent(Boolean.TRUE.equals(persistent)).groupBy("g1"));
job1.identifier = "job 1 id";
RetryJob job2 = new RetryJob(new Params(2).setPersistent(!Boolean.FALSE.equals(persistent)).groupBy("g1"));
job2.identifier = "job 2 id";
job1.retryLimit = 2;
job2.retryLimit = 2;
final String job1Id = job1.identifier;
final String job2Id = job2.identifier;
final PersistableDummyJob postTestJob = new PersistableDummyJob(new Params(1).groupBy("g1").setPersistent(Boolean.TRUE.equals(persistent)));
final Semaphore jobsCanRun = new Semaphore(4);
jobsCanRun.acquire(3);
final Job[] unexpectedRun = new Job[1];
final CallbackManager callbackManager = JobManagerTrojan.getCallbackManager(jobManager);
retryProvider = new RetryProvider() {
@Override
public RetryConstraint build(Job job, Throwable throwable, int runCount, int maxRunCount) {
RetryConstraint constraint = new RetryConstraint(true);
constraint.setNewDelayInMs(2000L);
JqLog.d("setting new delay in mS to %s. now is %s. job is %s", 2000, mockTimer.nanoTime(), ((RetryJob) job).identifier);
constraint.setApplyNewDelayToGroup(true);
return constraint;
}
};
final List<Pair<String, Long>> runTimes = new ArrayList<>();
final Map<String, Long> cancelTimes = new HashMap<>();
final Throwable[] lastJobRunOrder = new Throwable[1];
onRunCallback = new Callback() {
@Override
public void on(Job job) {
if (!callbackManager.waitUntilAllMessagesAreConsumed(30)) {
lastJobRunOrder[0] = new RuntimeException("consumers did not finish in 30 seconds");
}
RetryJob retryJob = (RetryJob) job;
if (!jobsCanRun.tryAcquire() && unexpectedRun[0] == null) {
unexpectedRun[0] = job;
}
runTimes.add(new Pair<>(retryJob.identifier, mockTimer.nanoTime()));
}
};
onCancelCallback = new CancelCallback() {
@Override
public void on(Job job, int cancelReason, Throwable throwable) {
JqLog.d("on cancel of job %s", job);
RetryJob retryJob = (RetryJob) job;
assertThat("Job should cancel only once", cancelTimes.containsKey(retryJob.identifier), is(false));
cancelTimes.put(retryJob.identifier, mockTimer.nanoTime());
if (!job.isPersistent() || postTestJob.isPersistent()) {
if (dummyJobRunLatch.getCount() != 1) {
lastJobRunOrder[0] = new Exception("the 3rd job should not run until others cancel fully");
}
}
}
};
cancelLatch = new CountDownLatch(2);
final CountDownLatch jobRunLatch = new CountDownLatch(5);
final Throwable[] afterJobError = new Throwable[1];
jobManager.addCallback(new JobManagerCallbackAdapter() {
@Override
public void onJobRun(@NonNull Job job, int resultCode) {
synchronized (this) {
try {
if (job instanceof RetryJob) {
RetryJob retryJob = (RetryJob) job;
if (retryJob.identifier.equals(job1Id) && retryJob.getCurrentRunCount() == retryJob.getRetryLimit()) {
jobsCanRun.release();
}
}
} catch (Throwable t) {
afterJobError[0] = t;
}
}
}
@Override
public void onAfterJobRun(@NonNull Job job, int resultCode) {
synchronized (this) {
try {
if (job instanceof RetryJob) {
assertThat("no job should have run unexpectedly " + jobRunLatch.getCount(), unexpectedRun[0], nullValue());
RetryJob retryJob = (RetryJob) job;
if (retryJob.getCurrentRunCount() == 2) {
// next job should be ready, asserted in onRun
} else {
mockTimer.incrementMs(1999);
assertThat("no jobs should be ready", jobManager.countReadyJobs(), is(0));
jobsCanRun.release();
mockTimer.incrementMs(2);
}
}
} catch (Throwable t) {
afterJobError[0] = t;
jobRunLatch.countDown();
jobRunLatch.countDown();
jobRunLatch.countDown();
jobRunLatch.countDown();
jobRunLatch.countDown();
} finally {
jobRunLatch.countDown();
}
}
}
});
jobManager.addJob(job1);
jobManager.addJob(job2);
jobManager.addJob(postTestJob);
assertThat("all expected jobs should run", jobRunLatch.await(5, TimeUnit.MINUTES), is(true));
assertThat("on run assertions should all pass", afterJobError[0], nullValue());
assertThat("jobs should be canceled", cancelLatch.await(1, TimeUnit.MILLISECONDS), is(true));
assertThat("should run 4 times", runTimes.size(), is(4));
for (int i = 0; i < 4; i++) {
assertThat("first two runs should be job1, last two jobs should be job 2. checking " + i, runTimes.get(i).first, is(i < 2 ? job1Id : job2Id));
}
long timeInBetween = TimeUnit.NANOSECONDS.toSeconds(runTimes.get(1).second - runTimes.get(0).second);
assertThat("time between two runs should be at least 2 seconds. job 1 and 2" + ":" + timeInBetween, 2 <= timeInBetween, is(true));
timeInBetween = TimeUnit.NANOSECONDS.toSeconds(runTimes.get(3).second - runTimes.get(2).second);
assertThat("time between two runs should be at least 2 seconds. job 3 and 4" + ":" + timeInBetween, 2 <= timeInBetween, is(true));
assertThat("the other job should run after others are cancelled", dummyJobRunLatch.await(1, TimeUnit.SECONDS), is(true));
// another job should just run
dummyJobRunLatch = new CountDownLatch(1);
jobManager.addJob(new PersistableDummyJob(new Params(1).groupBy("g1")));
assertThat("a newly added job should just run quickly", dummyJobRunLatch.await(500, TimeUnit.MILLISECONDS), is(true));
assertThat(lastJobRunOrder[0], nullValue());
}
use of com.birbit.android.jobqueue.RetryConstraint in project android-priority-jobqueue by yigit.
the class RetryLogicTest method testRetry.
public void testRetry(boolean persistent, final boolean returnTrue) throws InterruptedException {
canRun = true;
retryProvider = new RetryProvider() {
@Override
public RetryConstraint build(Job job, Throwable throwable, int runCount, int maxRunCount) {
return returnTrue ? RetryConstraint.RETRY : null;
}
};
RetryJob job = new RetryJob(new Params(1).setPersistent(persistent));
job.retryLimit = 3;
onRunLatch = new CountDownLatch(3);
createJobManager().addJob(job);
assertThat(onRunLatch.await(2, TimeUnit.SECONDS), is(true));
assertThat("it should run 3 times", runCount, is(3));
assertThat(cancelLatch.await(2, TimeUnit.SECONDS), is(true));
}
Aggregations