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