X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FTesting.pod;h=04c08ab14a5f91fc52a33472bced1243fd9a4e23;hp=2fe879aa1a57f6cd513314b07e93379f563e9064;hb=3b1fa91be1d89d2297aa9e8e83462344d9cd9820;hpb=4d63a0d5e1abea67f1128011988b508f49caa1bc diff --git a/lib/Catalyst/Manual/Tutorial/Testing.pod b/lib/Catalyst/Manual/Tutorial/Testing.pod index 2fe879a..04c08ab 100644 --- a/lib/Catalyst/Manual/Tutorial/Testing.pod +++ b/lib/Catalyst/Manual/Tutorial/Testing.pod @@ -59,7 +59,7 @@ L You may have noticed that the Catalyst Helper scripts automatically create basic C<.t> test scripts under the C directory. This chapter of the tutorial briefly looks at how these tests can be used -to not only ensure that your application is working correctly at the +not only to ensure that your application is working correctly at the present time, but also provide automated regression testing as you upgrade various pieces of your application over time. @@ -67,6 +67,10 @@ You can check out the source code for this example from the Catalyst Subversion repository as per the instructions in L. +For an excellent introduction to learning the many benefits of testing +your Perl applications and modules, you might want to read 'Perl Testing: +A Developer's Notebook' by Ian Langworth and chromatic. + =head1 RUNNING THE "CANNED" CATALYST TESTS @@ -83,7 +87,7 @@ a quick and easy way to reduce the clutter). Look for lines like this for errors: # Failed test 'Request should succeed' - # in t/controller_Books.t at line 8. + # at t/controller_Books.t line 8. # Looks like you failed 1 test of 3. The redirection used by the Authentication plugins will cause several @@ -98,13 +102,25 @@ to: ok( request('/login')->is_success, 'Request should succeed' ); -2) Change the "Cis_success>" to -"Cis_redirect>" in C. +2) Change the line in C that reads: + + ok( request('/logout')->is_success, 'Request should succeed' ); + +to: + + ok( request('/logout')->is_redirect, 'Request should succeed' ); -3) Change the "Cis_success>" to -"Cis_redirect>" in C. +3) Change the line in C that reads: -4) Add "C" to the top of C. + ok( request('/books')->is_success, 'Request should succeed' ); + +to: + + ok( request('/books')->is_redirect, 'Request should succeed' ); + +4) Add the following statement to the top of C: + + use MyApp; As you can see in the C command line above, the C<--lib> option is used to set the location of the Catalyst C directory. With this @@ -116,6 +132,29 @@ environment variable. For example: $ CATALYST_DEBUG=0 prove --lib lib t +B Depending on the versions of various modules you have +installed, you might get some C warnings -- you can +ignore these. If you want to eliminate the warnings, you can +edit C to disable and then re-enable warnings +are the C line in C. +You can locate where C is located with the +following command (it's probably in a place similar to +C): + + perldoc -l Template::Base + +Edit the file and modify C to match: + + ... + { no strict qw( refs ); + # Disable warnings + no warnings; + $argnames = \@{"$class\::BASEARGS"} || [ ]; + # Turn warnings back on + use warnings; + } + ... + During the C and C tests, you might notice the C warning message. To execute the Pod-related tests, add C to the C @@ -198,12 +237,7 @@ editor and enter the following: # Log in as each user # Specify username and password on the URL $ua1->get_ok("http://localhost/login?username=test01&password=mypass", "Login 'test01'"); - # Use the form for user 'test02'; note there is no description here - $ua2->submit_form( - fields => { - username => 'test02', - password => 'mypass', - }); + $ua1->get_ok("http://localhost/login?username=test02&password=mypass", "Login 'test02'"); # Go back to the login page and it should show that we are already logged in $_->get_ok("http://localhost/login", "Return to '/login'") for $ua1, $ua2;