Merge from chris
[catagits/Catalyst-Engine-STOMP.git] / t / 03-json-message.t
CommitLineData
a5ae1e8c 1use 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
7use Net::Stomp;
8
9eval {
10 use JSON;
11};
12if ($@) {
13 plan 'skip_all' => 'JSON not installed, skipping JSON-format test';
14}
15
16use FindBin;
17use lib "$FindBin::Bin";
18require 'server.pl';
19
20plan tests => 11;
21
22my $frame = $stomp->connect();
23ok($frame, 'connect to MQ server ok');
24
25my $reply_to = sprintf '%s:1', $frame->headers->{session};
26ok($frame->headers->{session}, 'got a session');
27ok(length $reply_to > 2, 'valid-looking reply_to queue');
28
29ok($stomp->subscribe( { destination => '/temp-queue/reply' } ), 'subscribe to temp queue');
30
31my $message = {
32 payload => { foo => 1, bar => 2 },
33 reply_to => $reply_to,
34 type => 'testaction',
35 };
36my $text = to_json($message);
37ok($text, 'compose message');
38
39$stomp->send( { destination => '/queue/testjsoncontroller', body => $text } );
40
41my $reply_frame = $stomp->receive_frame();
42ok($reply_frame, 'got a reply');
43ok($reply_frame->headers->{destination} eq "/remote-temp-queue/$reply_to", 'came to correct temp queue');
44ok($reply_frame->body, 'has a body');
45
46my $response = from_json($reply_frame->body);
47
48ok($response, 'JSON response ok');
49ok($response->{type} eq 'testaction_response', 'correct type');
50
51ok($stomp->disconnect, 'disconnected');
52