Remove Test::Fork, do it by hand
[catagits/Catalyst-Engine-STOMP.git] / t / Catalyst-Engine-Stomp.t
1 use Test::More tests => 12;
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 # First fire off the server
12 unless (fork()) {
13         system("$^X -Ilib -Itestapp/lib testapp/script/testapp_stomp.pl --oneshot");
14         exit 0;
15 }
16
17 # Now be a client to that server
18
19 my $stomp = Net::Stomp->new( { hostname => 'localhost', port => 61613 } );
20 ok($stomp, 'Net::Stomp object');
21
22 my $frame = $stomp->connect();
23 ok($frame, 'connect to MQ server ok');
24
25 my $reply_to = sprintf '%s:1', $frame->headers->{session};
26 ok($frame->headers->{session}, 'got a session');
27 ok(length $reply_to > 2, 'valid-looking reply_to queue');
28
29 ok($stomp->subscribe( { destination => '/temp-queue/reply' } ), 'subscribe to temp queue');
30
31 my $message = {
32                payload => { foo => 1, bar => 2 },
33                reply_to => $reply_to,
34                type => 'testaction',
35               };
36 my $text = Dump($message);
37 ok($text, 'compose message');
38
39 $stomp->send( { destination => '/queue/testcontroller', body => $text } );
40
41 my $reply_frame = $stomp->receive_frame();
42 ok($reply_frame, 'got a reply');
43 ok($reply_frame->headers->{destination} eq "/remote-temp-queue/$reply_to", 'came to correct temp queue');
44 ok($reply_frame->body, 'has a body');
45
46 my $response = Load($reply_frame->body);
47 ok($response, 'YAML response ok');
48 ok($response->{type} eq 'testaction_response', 'correct type');
49
50 ok($stomp->disconnect, 'disconnected');
51