1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
use Mojo::Base -strict;
BEGIN { $ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll' }
use Test::More;
use Mojo::IOLoop;
use Mojo::SQLite;
use Mojolicious::Lite;
use Test::Mojo;
my $sql = Mojo::SQLite->new;
plugin Minion => {SQLite => $sql};
app->minion->add_task(
add => sub {
my ($job, $first, $second) = @_;
Mojo::IOLoop->next_tick(sub {
$job->finish($first + $second);
Mojo::IOLoop->stop;
});
Mojo::IOLoop->start;
}
);
get '/add' => sub {
my $c = shift;
my $id = $c->minion->enqueue(add => [$c->param('first'), $c->param('second')] => { queue => 'test'});
$c->render(text => $id);
};
get '/result' => sub {
my $c = shift;
$c->render(text => $c->minion->job($c->param('id'))->info->{result});
};
my $t = Test::Mojo->new;
subtest 'Perform jobs automatically' => sub {
$t->get_ok('/add' => form => {first => 1, second => 2})->status_is(200);
$t->app->minion->perform_jobs({queues => ['test']});
$t->get_ok('/result' => form => {id => $t->tx->res->text})->status_is(200)->content_is('3');
$t->get_ok('/add' => form => {first => 2, second => 3})->status_is(200);
my $first = $t->tx->res->text;
$t->get_ok('/add' => form => {first => 4, second => 5})->status_is(200);
my $second = $t->tx->res->text;
Mojo::Promise->new->resolve->then(sub { $t->app->minion->perform_jobs({queues => ['test']}) })->wait;
$t->get_ok('/result' => form => {id => $first})->status_is(200)->content_is('5');
$t->get_ok('/result' => form => {id => $second})->status_is(200)->content_is('9');
};
$t->app->minion->reset({all => 1});
done_testing();
|