Tests showing we are not immutable at the end of the file, but we are as soon as...
[catagits/Catalyst-Runtime.git] / t / plugin_new_method_backcompat.t
1 # Test that plugins with their own new method don't break applications.
2
3 # 5.70 creates all of the request/response structure itself in prepare,
4 # and as the new method in our plugin just blesses our args, that works nicely.
5
6 # In 5.80, we rely on the new method to appropriately initialise data
7 # structures, and therefore we need to inline a new method on MyApp to ensure
8 # that plugins don't get it wrong for us.
9
10 # Also tests method modifiers and etc in MyApp.pm still work as expected.
11 use Test::More tests => 6;
12 use Test::Exception;
13 use Moose::Util qw/find_meta/;
14 use FindBin;
15 use lib "$FindBin::Bin/lib";
16
17 use Catalyst::Test qw/TestAppPluginWithConstructor/;
18 ok find_meta('TestAppPluginWithConstructor')->is_immutable,
19     'Am immutable after use';
20
21 ok request('/foo')->is_success, 'Can get /foo';
22 is $TestAppPluginWithConstructor::MODIFIER_FIRED, 1, 'Before modifier was fired correctly.';
23
24 throws_ok {
25     package TestAppBadlyImmutable;
26     use Catalyst qw/+TestPluginWithConstructor/;
27
28     TestAppBadlyImmutable->setup;
29
30     __PACKAGE__->meta->make_immutable( inline_constructor => 0 );
31 }
32     qr/\QYou made your application class (TestAppBadlyImmutable) immutable/,
33     'An application class that is already immutable but does not inline the constructor dies at ->setup';
34