#!perl # # use 5.001; use strict; use warnings; use warnings::register; use vars qw($VERSION $DATE); $VERSION = '0.04'; # automatically generated file $DATE = '2004/05/04'; ##### Demonstration Script #### # # Name: Replace.d # # UUT: Text::Replace # # The module Test::STDmaker generated this demo script from the contents of # # t::Text::Replace # # Don't edit this test script file, edit instead # # t::Text::Replace # # ANY CHANGES MADE HERE TO THIS SCRIPT FILE WILL BE LOST # # the next time Test::STDmaker generates this script file. # # ###### # # The working directory is the directory of the generated file # use vars qw($__restore_dir__ @__restore_inc__ ); BEGIN { use Cwd; use File::Spec; use FindBin; use Test::Tech qw(demo is_skip plan skip_tests tech_config ); ######## # 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; unshift @INC, File::Spec->catdir( cwd(), 'lib' ); } END { ######### # Restore working directory and @INC back to when enter script # @INC = @lib::ORIG_INC; chdir $__restore_dir__; } print << 'MSG'; ~~~~~~ Demonstration overview ~~~~~ The results from executing the Perl Code follow on the next lines as comments. For example, 2 + 2 # 4 ~~~~~~ The demonstration follows ~~~~~ MSG demo( "\ \ \ \ use\ File\:\:Spec\;\ \ \ \ \ \ use\ File\:\:Package\;\ \ \ \ \ my\ \$fp\ \=\ \'File\:\:Package\'\;\ \ \ \ \ \ my\ \$tr\ \=\ \'Text\:\:Replace\'\;\ \ \ \ \ \ my\ \$loaded\ \=\ \'\'\;\ \ \ \ \ my\ \$template\ \=\ \'\'\;\ \ \ \ \ my\ \%variables\ \=\ \(\)\;\ \ \ \ \ my\ \$expected\ \=\ \'\'\;"); # typed in command use File::Spec; use File::Package; my $fp = 'File::Package'; my $tr = 'Text::Replace'; my $loaded = ''; my $template = ''; my %variables = (); my $expected = '';; # execution print << "EOF"; ################## # Load UUT # EOF demo( "my\ \$errors\ \=\ \$fp\-\>load_package\(\$tr\)"); # typed in command my $errors = $fp->load_package($tr); # execution demo( "\$errors", # typed in command $errors # execution ) unless $loaded; # condition for execution print << "EOF"; ################## # replace variables # EOF demo( "\ \ \ \$template\ \=\ \<\<\ \'EOF\'\;\ \=head1\ Title\ Page\ \ \ Software\ Version\ Description\ \ \ for\ \ \ \$\{TITLE\}\ \ \ Revision\:\ \$\{REVISION\}\ \ \ Version\:\ \$\{VERSION\}\ \ \ Date\:\ \$\{DATE\}\ \ \ Prepared\ for\:\ \$\{END_USER\}\ \ \ \ Prepared\ by\:\ \ \$\{AUTHOR\}\ \ \ Copyright\:\ \$\{COPYRIGHT\}\ \ \ Classification\:\ \$\{CLASSIFICATION\}\ \ \=cut\ \ EOF\ \ \%variables\ \=\ \(\ \ \ \ TITLE\ \=\>\ \'SVDmaker\'\,\ \ \ \ REVISION\ \=\>\ \'\-\'\,\ \ \ \ VERSION\ \=\>\ \'0\.01\'\,\ \ \ \ DATE\ \=\>\ \'1969\/5\/6\'\,\ \ \ \ END_USER\ \=\>\ \'General\ Public\'\,\ \ \ \ AUTHOR\ \=\>\ \'Software\ Diamonds\'\,\ \ \ \ COPYRIGHT\ \=\>\ \'none\'\,\ \ \ \ CLASSIFICATION\ \=\>\ \'none\'\)\;\ \ \$tr\-\>replace_variables\(\ \\\$template\,\ \\\%variables\ \)\;"); # typed in command $template = << 'EOF'; =head1 Title Page Software Version Description for ${TITLE} Revision: ${REVISION} Version: ${VERSION} Date: ${DATE} Prepared for: ${END_USER} Prepared by: ${AUTHOR} Copyright: ${COPYRIGHT} Classification: ${CLASSIFICATION} =cut EOF %variables = ( TITLE => 'SVDmaker', REVISION => '-', VERSION => '0.01', DATE => '1969/5/6', END_USER => 'General Public', AUTHOR => 'Software Diamonds', COPYRIGHT => 'none', CLASSIFICATION => 'none'); $tr->replace_variables( \$template, \%variables );; # execution demo( "\$template", # typed in command $template); # execution =head1 NAME Replace.d - demostration script for Text::Replace =head1 SYNOPSIS Replace.d =head1 OPTIONS None. =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. ## end of test script file ## =cut