Make tests use strict and warnings. Cleanup the killing of activemq so that it happen...
[catagits/Catalyst-Engine-STOMP.git] / t / 01-good-message.t
CommitLineData
8edb2b46 1use strict;
2use warnings;
bf8937b7 3use Test::More;
4
5# Tests which expect a STOMP server like ActiveMQ to exist on
6# localhost:61613, which is what you get if you just get the ActiveMQ
7# distro and run its out-of-the-box config.
8
9use Net::Stomp;
10use YAML::XS qw/ Dump Load /;
11use Data::Dumper;
12
13use FindBin;
8edb2b46 14use lib "$FindBin::Bin/lib";
15use TestServer;
16
17my $stomp = start_server();
bf8937b7 18
19plan tests => 11;
20
21my $frame = $stomp->connect();
22ok($frame, 'connect to MQ server ok');
23
24my $reply_to = sprintf '%s:1', $frame->headers->{session};
25ok($frame->headers->{session}, 'got a session');
26ok(length $reply_to > 2, 'valid-looking reply_to queue');
27
28ok($stomp->subscribe( { destination => '/temp-queue/reply' } ), 'subscribe to temp queue');
29
30my $message = {
31 payload => { foo => 1, bar => 2 },
32 reply_to => $reply_to,
33 type => 'testaction',
34 };
35my $text = Dump($message);
36ok($text, 'compose message');
37
38$stomp->send( { destination => '/queue/testcontroller', body => $text } );
39
40my $reply_frame = $stomp->receive_frame();
41ok($reply_frame, 'got a reply');
42ok($reply_frame->headers->{destination} eq "/remote-temp-queue/$reply_to", 'came to correct temp queue');
43ok($reply_frame->body, 'has a body');
44
45my $response = Load($reply_frame->body);
46ok($response, 'YAML response ok');
47ok($response->{type} eq 'testaction_response', 'correct type');
48
49ok($stomp->disconnect, 'disconnected');
50