private actions work again
[catagits/CatalystX-Declare.git] / t / 001_basic.t
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4
5 use FindBin;
6 use lib "$FindBin::Bin/lib";
7
8 use Test::More tests => 16;
9 use Catalyst::Test 'TestApp';
10
11 # simple stuff
12 is get('/foo'), 'Welcome to TestApp!', 'simple root action';
13
14 # with arguments
15 is get('/foo/with_args/hello/cthulhu'), 'Hello, Cthulhu!', 'simple argument';
16 is get('/foo/with_args/at_end/2/3'), 6, 'two arguments at the end';
17 is get('/foo/with_args/in_the_middle/3/4/end_of_the_middle'), 24, 'two arguments in the middle';
18 is get('/foo/with_args/4/8/fhtagn/15/16/23/42'), '4, 8, 15, 16, 23, 42', 'complex arguments in both';
19
20 # under keyword
21 is get('/foo/under/23'), 'under 23', 'under as keyword';
22
23 # comma separation
24 is get('/foo/,comma/iaia'), 'iaia', 'comma separation';
25
26 # nested under
27 is get('/foo/lower/down/the/stream'), 'foo/stream', 'nested under blocks';
28
29 # action roles
30 do {
31     local $ENV{TESTAPP_ACTIONROLE} = 1;
32     is get('/foo/with_role'), 'YES', 'fully named action role works';
33 };
34 do {
35     local $ENV{TESTAPP_ACTIONROLE} = 0;
36     is get('/foo/with_role'), 'NO', 'aliased action role works';
37 };
38
39 # action class
40 is get('/foo/book/Whatever/view/xml'), 'Page 1 of "Whatever" as XML', 'action class was set';
41 is get('/foo/book/Fnord/view/html?page=7'), 'Page 7 of "Fnord" as HTML', 'action class was set';
42
43 # final keyword
44 is get('/foo/finals/in_front'), 'foo/in_front', 'final syntax element as declarator';
45 is get('/foo/finals/final_middle'), 'foo/final_middle', 'final syntax element in the middle';
46 is get('/foo/finals/final_at_end'), 'foo/final_at_end', 'final syntax element at the end';
47
48 # privates
49 is get('/foo/expose_not_really_here'), 23, 'private action works';