#!perl # # use 5.001; use strict; use warnings; use warnings::register; use vars qw($VERSION $DATE $FILE); $VERSION = '0.1'; # automatically generated file $DATE = '2004/04/09'; $FILE = __FILE__; ##### Test Script #### # # Name: AnySpec.t # # UUT: File::AnySpec # # The module Test::STDmaker generated this test script from the contents of # # t::File::AnySpec; # # Don't edit this test script file, edit instead # # t::File::AnySpec; # # ANY CHANGES MADE HERE TO THIS SCRIPT FILE WILL BE LOST # # the next time Test::STDmaker generates this script file. # # ###### # # T: # # use a BEGIN block so we print our plan before Module Under Test is loaded # BEGIN { use FindBin; use File::Spec; use Cwd; ######## # The working directory for this script file is the directory where # the test script resides. Thus, any relative files written or read # by this test script are located relative to this test script. # use vars qw( $__restore_dir__ ); $__restore_dir__ = cwd(); my ($vol, $dirs) = File::Spec->splitpath($FindBin::Bin,'nofile'); chdir $vol if $vol; chdir $dirs if $dirs; ####### # Pick up any testing program modules off this test script. # # When testing on a target site before installation, place any test # program modules that should not be installed in the same directory # as this test script. Likewise, when testing on a host with a @INC # restricted to just raw Perl distribution, place any test program # modules in the same directory as this test script. # use lib $FindBin::Bin; ######## # Using Test::Tech, a very light layer over the module "Test" to # conduct the tests. The big feature of the "Test::Tech: module # is that it takes expected and actual references and stringify # them by using "Data::Secs2" before passing them to the "&Test::ok" # Thus, almost any time of Perl data structures may be # compared by passing a reference to them to Test::Tech::ok # # Create the test plan by supplying the number of tests # and the todo tests # require Test::Tech; Test::Tech->import( qw(plan ok skip skip_tests tech_config finish) ); plan(tests => 8); } END { ######### # Restore working directory and @INC back to when enter script # @INC = @lib::ORIG_INC; chdir $__restore_dir__; } # Perl code from C: use File::Spec; use File::Package; my $fp = 'File::Package'; my $as = 'File::AnySpec'; my $loaded = ''; my @drivers; my @files; ok( $loaded = $fp->is_package_loaded($as), # actual results '', # expected results "", "UUT not loaded"); # ok: 1 # Perl code from C: my $errors = $fp->load_package( $as); #### # verifies requirement(s): # L # ##### skip_tests( 1 ) unless skip( $loaded, # condition to skip test $errors, # actual results '', # expected results "", "Load UUT"); # ok: 2 ok( $as->fspec2fspec( 'Unix', 'MSWin32', 'File/FileUtil.pm'), # actual results 'File\\FileUtil.pm', # expected results "", "fspec2fspec"); # ok: 3 ok( $as->os2fspec( 'Unix', ($as->fspec2os( 'Unix', 'File/FileUtil.pm'))), # actual results 'File/FileUtil.pm', # expected results "", "fspec2os os2fspec 1"); # ok: 4 ok( $as->os2fspec( 'MSWin32', ($as->fspec2os( 'MSWin32', 'Test\\TestUtil.pm'))), # actual results 'Test\\TestUtil.pm', # expected results "", "fspec2os os2fspec 2"); # ok: 5 # Perl code from C: @drivers = sort $as->fspec_glob('Unix','Drivers/G*.pm'); ok( join (', ', @drivers), # actual results File::Spec->catfile('Drivers', 'Generate.pm'), # expected results "", "fspec_glob Unix"); # ok: 6 ok( $as->fspec2pm('Unix', 'File/AnySpec.pm'), # actual results "$as", # expected results "", "fspec2pm"); # ok: 7 # Perl code from C: @files = $as->pm2fspec( 'Unix', 'File::Basename'); ok( $files[-1], # actual results 'File/Basename.pm', # expected results "", "pm2fspec"); # ok: 8 finish(); __END__ =head1 NAME AnySpec.t - test script for File::AnySpec =head1 SYNOPSIS AnySpec.t -log=I =head1 OPTIONS All options may be abbreviated with enough leading characters to distinguish it from the other options. =over 4 =item C<-log> AnySpec.t uses this option to redirect the test results from the standard output to a log file. =back =head1 COPYRIGHT copyright © 2003 Software Diamonds. Software Diamonds permits the redistribution and use in source and binary forms, with or without modification, provided that the following conditions are met: /=over 4 /=item 1 Redistributions of source code, modified or unmodified must retain the above copyright notice, this list of conditions and the following disclaimer. /=item 2 Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. /=back SOFTWARE DIAMONDS, http://www.SoftwareDiamonds.com, PROVIDES THIS SOFTWARE 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWARE DIAMONDS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING USE OF THIS SOFTWARE, EVEN IF ADVISED OF NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE POSSIBILITY OF SUCH DAMAGE. =cut ## end of test script file ##