Add boilderplate POD
[catagits/Catalyst-Engine-STOMP.git] / t / 11_bad-action.t
1 use strict;
2 use warnings;
3 use 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
9 use YAML::XS qw/ Dump Load /;
10 use Data::Dumper;
11
12 use FindBin;
13 use lib "$FindBin::Bin/lib";
14 use TestServer;
15
16 my $stomp = start_server();
17
18 plan tests => 12;
19
20 my $frame = $stomp->connect();
21 ok($frame, 'connect to MQ server ok');
22
23 my $reply_to = sprintf '%s:1', $frame->headers->{session};
24 ok($frame->headers->{session}, 'got a session');
25 ok(length $reply_to > 2, 'valid-looking reply_to queue');
26
27 ok($stomp->subscribe( { destination => '/temp-queue/reply' } ), 'subscribe to temp queue');
28
29 # Test what happens when the action crashes
30 my $message = {
31                payload => { foo => 1, bar => 2 },
32                reply_to => $reply_to,
33                type => 'badaction',
34               };
35 my $text = Dump($message);
36 ok($text, 'compose message for badaction');
37
38 $stomp->send( { destination => '/queue/testcontroller', body => $text } );
39
40 my $reply_frame = $stomp->receive_frame();
41 ok($reply_frame, 'got a reply');
42 ok($reply_frame->headers->{destination} eq "/remote-temp-queue/$reply_to", 'came to correct temp queue');
43 ok($reply_frame->body, 'has a body');
44
45 my $response = Load($reply_frame->body);
46 ok($response, 'YAML response ok');
47 ok($response->{status} eq 'ERROR', 'is an error');
48 ok($response->{error} =~ /oh noes/);
49
50 ok($stomp->disconnect, 'disconnected');
51