-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unit test for SimpleScheduler::pause functionality
Pause and check isRunning returns false and scheduler doesn't trigger CountDownLatch::countDown
- Loading branch information
1 parent
0484268
commit 45c8c1e
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
...ons/scheduler/deployment/src/test/java/io/quarkus/scheduler/test/PausedSchedulerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package io.quarkus.scheduler.test; | ||
|
||
|
||
import java.util.concurrent.CountDownLatch; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import javax.inject.Inject; | ||
|
||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.asset.StringAsset; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import io.quarkus.scheduler.Scheduled; | ||
import io.quarkus.scheduler.Scheduler; | ||
import io.quarkus.test.QuarkusUnitTest; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertFalse; | ||
|
||
public class PausedSchedulerTest { | ||
|
||
@RegisterExtension | ||
static final QuarkusUnitTest test = new QuarkusUnitTest() | ||
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class) | ||
.addClasses(DisabledSchedulerTest.Jobs.class) | ||
.addAsResource(new StringAsset("quarkus.scheduler.enabled=true"), | ||
"application.properties")); | ||
|
||
@Inject | ||
Scheduler scheduler; | ||
|
||
@Test | ||
public void testSchedulerPauseMethod() throws InterruptedException { | ||
scheduler.pause(); | ||
assertFalse(scheduler.isRunning()); | ||
assertFalse(Jobs.LATCH.await(3, TimeUnit.SECONDS)); | ||
} | ||
|
||
static class Jobs { | ||
static final CountDownLatch LATCH = new CountDownLatch(2); | ||
|
||
@Scheduled(every = "1s") | ||
void countDownSecond() { | ||
LATCH.countDown(); | ||
} | ||
} | ||
|
||
} |