Build all packages removed dependencies of libtest-exception-perl libtest-warn-perl...
[dh-make-perl] / dev / i386 / libperl-critic-perl / libperl-critic-perl-1.088 / t / 11_policyfactory.t
diff --git a/dev/i386/libperl-critic-perl/libperl-critic-perl-1.088/t/11_policyfactory.t b/dev/i386/libperl-critic-perl/libperl-critic-perl-1.088/t/11_policyfactory.t
new file mode 100644 (file)
index 0000000..cd55c50
--- /dev/null
@@ -0,0 +1,118 @@
+#!perl
+
+##############################################################################
+#     $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/Perl-Critic/t/11_policyfactory.t $
+#    $Date: 2008-06-06 00:48:04 -0500 (Fri, 06 Jun 2008) $
+#   $Author: clonezone $
+# $Revision: 2416 $
+##############################################################################
+
+use 5.006001;
+use strict;
+use warnings;
+use English qw(-no_match_vars);
+use Test::More (tests => 10);
+use Perl::Critic::UserProfile;
+use Perl::Critic::PolicyFactory (-test => 1);
+
+# common P::C testing tools
+use Perl::Critic::TestUtils qw();
+Perl::Critic::TestUtils::block_perlcriticrc();
+
+#-----------------------------------------------------------------------------
+
+{
+    my $policy_name = 'Perl::Critic::Policy::Modules::ProhibitEvilModules';
+    my $params = {severity => 2, set_themes => 'betty', add_themes => 'wilma'};
+
+    my $userprof = Perl::Critic::UserProfile->new( -profile => 'NONE' );
+    my $pf = Perl::Critic::PolicyFactory->new( -profile  => $userprof );
+
+
+    # Now test...
+    my $policy = $pf->create_policy( -name => $policy_name, -params => $params );
+    is( ref $policy, $policy_name, 'Created correct type of policy');
+
+    my $severity = $policy->get_severity();
+    is( $severity, 2, 'Set the severity');
+
+    my @themes = $policy->get_themes();
+    is_deeply( \@themes, [ qw(betty wilma) ], 'Set the theme');
+}
+
+#-----------------------------------------------------------------------------
+# Using short module name.
+{
+    my $policy_name = 'Variables::ProhibitPunctuationVars';
+    my $params = {set_themes => 'betty', add_themes => 'wilma'};
+
+    my $userprof = Perl::Critic::UserProfile->new( -profile => 'NONE' );
+    my $pf = Perl::Critic::PolicyFactory->new( -profile  => $userprof );
+
+
+    # Now test...
+    my $policy = $pf->create_policy( -name => $policy_name, -params => $params );
+    my $policy_name_long = 'Perl::Critic::Policy::' . $policy_name;
+    is( ref $policy, $policy_name_long, 'Created correct type of policy');
+
+    my @themes = $policy->get_themes();
+    is_deeply( \@themes, [ qw(betty wilma) ], 'Set the theme');
+}
+
+#-----------------------------------------------------------------------------
+# Test exception handling
+
+{
+    my $userprof = Perl::Critic::UserProfile->new( -profile => 'NONE' );
+    my $pf = Perl::Critic::PolicyFactory->new( -profile  => $userprof );
+
+    # Try missing arguments
+    eval{ $pf->create_policy() };
+    like( $EVAL_ERROR, qr/The -name argument/m, 'create without -name arg' );
+
+    # Try creating bogus policy
+    eval{ $pf->create_policy( -name => 'Perl::Critic::Foo' ) };
+    like( $EVAL_ERROR, qr/Can't locate object method/m, 'create bogus policy' );
+
+    # Try using a bogus severity level
+    my $policy_name = 'Modules::RequireVersionVar';
+    my $policy_params = {severity => 'bogus'};
+    eval{ $pf->create_policy( -name => $policy_name, -params => $policy_params)};
+    like( $EVAL_ERROR, qr/Invalid severity: "bogus"/m, 'create policy w/ bogus severity' );
+}
+
+#-----------------------------------------------------------------------------
+# Test warnings about bogus policies
+
+{
+    my $last_warning = q{}; #Trap warning messages here
+    local $SIG{__WARN__} = sub { $last_warning = shift };
+
+    my $profile = { 'Perl::Critic::Bogus' => {} };
+    my $userprof = Perl::Critic::UserProfile->new( -profile => $profile );
+    my $pf = Perl::Critic::PolicyFactory->new( -profile  => $userprof );
+    like( $last_warning, qr/^Policy ".*Bogus" is not installed/m );
+    $last_warning = q{};
+
+    $profile = { '-Perl::Critic::Shizzle' => {} };
+    $userprof = Perl::Critic::UserProfile->new( -profile => $profile );
+    $pf = Perl::Critic::PolicyFactory->new( -profile  => $userprof );
+    like( $last_warning, qr/^Policy ".*Shizzle" is not installed/m );
+    $last_warning = q{};
+}
+
+#-----------------------------------------------------------------------------
+
+# ensure we run true if this test is loaded by
+# t/11_policyfactory.t_without_optional_dependencies.t
+1;
+
+##############################################################################
+# Local Variables:
+#   mode: cperl
+#   cperl-indent-level: 4
+#   fill-column: 78
+#   indent-tabs-mode: nil
+#   c-indentation-style: bsd
+# End:
+# ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :