Change so that ActiveMQ is only started if not already running
[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 use Alien::ActiveMQ;
12 my $ACTIVEMQ_VERSION = '5.2.0';
13
14 my ($stomp, $mq);
15 eval {
16     $stomp = Net::Stomp->new( { hostname => 'localhost', port => 61613 } );
17 };
18 if ($@) {
19
20     unless (Alien::ActiveMQ->is_version_installed($ACTIVEMQ_VERSION)) {
21         plan 'skip_all' => 'No ActiveMQ server installed by Alien::ActiveMQ, try running the "install-activemq" command'; 
22         exit;
23     }
24
25     $mq = Alien::ActiveMQ->run_server($ACTIVEMQ_VERSION);
26
27     eval {
28         $stomp = Net::Stomp->new( { hostname => 'localhost', port => 61613 } );
29     };
30     if ($@) {
31         plan 'skip_all' => 'No ActiveMQ server listening on 61613: ' . $@;
32         exit;
33     }
34 }
35
36 plan tests => 12;
37
38 # First fire off the server
39 $SIG{CHLD} = 'IGNORE';
40 unless (fork()) {
41         system("$^X -Ilib -Itestapp/lib testapp/script/stomptestapp_stomp.pl --oneshot");
42         exit 0;
43 }
44 print STDERR "server started, waiting for spinup...";
45 sleep 20;
46
47 # Now be a client to that server
48 print STDERR "testing\n";
49 ok($stomp, 'Net::Stomp object');
50
51 my $frame = $stomp->connect();
52 ok($frame, 'connect to MQ server ok');
53
54 my $reply_to = sprintf '%s:1', $frame->headers->{session};
55 ok($frame->headers->{session}, 'got a session');
56 ok(length $reply_to > 2, 'valid-looking reply_to queue');
57
58 ok($stomp->subscribe( { destination => '/temp-queue/reply' } ), 'subscribe to temp queue');
59
60 my $message = {
61                payload => { foo => 1, bar => 2 },
62                reply_to => $reply_to,
63                type => 'testaction',
64               };
65 my $text = Dump($message);
66 ok($text, 'compose message');
67
68 $stomp->send( { destination => '/queue/testcontroller', body => $text } );
69
70 my $reply_frame = $stomp->receive_frame();
71 ok($reply_frame, 'got a reply');
72 ok($reply_frame->headers->{destination} eq "/remote-temp-queue/$reply_to", 'came to correct temp queue');
73 ok($reply_frame->body, 'has a body');
74
75 my $response = Load($reply_frame->body);
76 ok($response, 'YAML response ok');
77 ok($response->{type} eq 'testaction_response', 'correct type');
78
79 ok($stomp->disconnect, 'disconnected');
80