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