Add some feedback to the test; shorten spinup delay.
[catagits/Catalyst-Engine-STOMP.git] / t / Catalyst-Engine-Stomp.t
1 use Test::More;
2
3 # Tests which expect a STOMP server like ActiveMQ to exist on
4 # localhost:61613, which is what you get if you just get the ActiveMQ
5 # distro and run its out-of-the-box config.
6
7 use Net::Stomp;
8 use YAML::XS qw/ Dump Load /;
9 use Data::Dumper;
10
11 my $stomp;
12 eval {
13     $stomp = Net::Stomp->new( { hostname => 'localhost', port => 61613 } );
14 };
15 if ($@) {
16     plan 'skip_all' => 'No ActiveMQ server listening on 61613: ' . $@;
17     exit;
18 }
19 else {
20     plan tests => 12;
21 }
22
23 # First fire off the server
24 $SIG{CHLD} = 'IGNORE';
25 unless (fork()) {
26         system("CATALYST_DEBUG=0 $^X -Ilib -Itestapp/lib testapp/script/testapp_stomp.pl --oneshot");
27         exit 0;
28 }
29 print STDERR "server started, waiting for spinup...";
30 sleep 10;
31
32 # Now be a client to that server
33 print STDERR "testing\n";
34 ok($stomp, 'Net::Stomp object');
35
36 my $frame = $stomp->connect();
37 ok($frame, 'connect to MQ server ok');
38
39 my $reply_to = sprintf '%s:1', $frame->headers->{session};
40 ok($frame->headers->{session}, 'got a session');
41 ok(length $reply_to > 2, 'valid-looking reply_to queue');
42
43 ok($stomp->subscribe( { destination => '/temp-queue/reply' } ), 'subscribe to temp queue');
44
45 my $message = {
46                payload => { foo => 1, bar => 2 },
47                reply_to => $reply_to,
48                type => 'testaction',
49               };
50 my $text = Dump($message);
51 ok($text, 'compose message');
52
53 $stomp->send( { destination => '/queue/testcontroller', body => $text } );
54
55 my $reply_frame = $stomp->receive_frame();
56 ok($reply_frame, 'got a reply');
57 ok($reply_frame->headers->{destination} eq "/remote-temp-queue/$reply_to", 'came to correct temp queue');
58 ok($reply_frame->body, 'has a body');
59
60 my $response = Load($reply_frame->body);
61 ok($response, 'YAML response ok');
62 ok($response->{type} eq 'testaction_response', 'correct type');
63
64 ok($stomp->disconnect, 'disconnected');
65