#!/usr/bin/perl -w # This program is meant to run the nightly diffcol # It is meant to be an equivalent for the existing task bash script # But it is intended to be expanded to work for Windows and GS3 # For windows, need to REMEMBER to set the correct shebangs at the top # TODO: # Have a caveat mode and a stable mode (as in snapshot/task.pl) # #} elsif ( $ENV{'TASK_NAME'} =~ "gs2-diffcol-(caveat|stable)" ) { # $major_version = 2; # $prefix="2t"; # $rk="tk2"; # test kit #} elsif ( $ENV{'TASK_NAME'} =~ "gs3-diffcol-(caveat|stable)" ) { # $major_version = 3; # $prefix="3t"; # $rk="tk3"; # test kit package diffcoltask; use Cwd; use Switch; # for switch(val) { case: ; ...} use File::Path; # for rmdir and mkdir type functions use File::Copy; # for recursive copying of folders but skipping .svn use File::Basename; use strict; no strict 'subs'; # allow barewords (eg STDERR) as function arguments my $isWin = ($^O =~ m/mswin/i) ? 1 : 0; my $isMac = ($^O =~ m/macos|darwin/i) ? 1 : 0; my $sep = $isWin ? "\\" : "/"; my $pathsep = $isWin ? ";" : ":"; #my $script_ext = $isWin ? ".bat" : ".bash"; my $setup_script = "setup"; # needs to become gs3-setup for GS3 my $use_blat = 0; # if we ever get blat to send mail/attachments on Windows working, set this to 1 # TASK_HOME should be the toplevel diffcol folder $ENV{'TASK_HOME'} = getcwd unless defined $ENV{'TASK_HOME'}; if($isWin) { $ENV{'TASK_HOME'} =~ s@\/@\\@g; # need to convert TASK_HOME path name to resolve very subtle bug when running task.pl via # run-gs2-diffcol.bat which uses environment.pl's TASK_HOME setting via envi # At that point TASK_HOME is already defined but ends up lowercase, so that entries in archiveinf-doc # end up sorted differently when db2txt -sort is applied compared to if TASK_HOME had kept its case. require Win32; # for working out Windows Long Filenames from Win 8.3 short filenames $ENV{'TASK_HOME'} = &Win32::GetLongPathName($ENV{'TASK_HOME'}); } ## print STDERR "@@@ TASK_HOME: ".$ENV{'TASK_HOME'}."\n"; $ENV{'BIN_DIR'} = &filename_concat($ENV{'TASK_HOME'}, "bin"); # we'll be using BLAT to send mail attachments on Windows my $blat = $use_blat ? &filename_concat($ENV{'BIN_DIR'}, "blat", "full", "blat.exe") : 0; if($isWin && $use_blat && ! -e $blat) { print STDERR "\n***********************************\n"; print STDERR "No blat.exe found in $blat.\n"; print STDERR "Blat needed to send mail with attachments on Windows.\n"; print STDERR "Extract the blat zip file found in $ENV{'BIN_DIR'}\n"; print STDERR "for your bit architecture and name the folder 'blat'\n"; print STDERR "***********************************\n\n"; $blat = 0; } $ENV{'DATA_DIR'} = &filename_concat($ENV{'TASK_HOME'}, "diffcol-data"); $ENV{'UPLOAD_DIR'} = &filename_concat($ENV{'TASK_HOME'}, "diffcol-reports"); $ENV{'MONITOR_EMAIL'} = "greenstone_team\@cs.waikato.ac.nz"; # need to escape @ sign $ENV{'GSDL_SMTP'} = ""; #"smtp.gmail.com"; ##print STDERR "@@@ email: ".$ENV{'MONITOR_EMAIL'}."\n"; # control if an existing compiled greenstone is used # or, if one should be checked out, which revision to checkout from svn $ENV{'SVN_OPT_REV'} = "-r head"; #$ENV{'GSDLHOME'}= #$ENV{'GSDL3SRCHOME'}= # if the first arg is a digit, it's the new envi verbosity param. Take it off the array my $envi_verbose = shift(@ARGV) if(exists $ARGV[0] && $ARGV[0] =~ m/^\d+$/); #parse arguments my $action = "all"; if(scalar(@ARGV) > 1) { &printusage(); exit 0; } if(scalar(@ARGV) == 0) { $action="all"; } else { switch ($ARGV[0]) { case qr/^(-h|-help|help)$/i { &printusage; exit 0; } case qr/^(setup_greenstone|run_test|summarise|upload|all)$/ { $action=$ARGV[0]; } else { print STDERR "Bad subcommand.\n"; &printusage; exit -1; } } } #check key environment vars are set if(!defined $ENV{'UPLOAD_DIR'}) { print STDERR "Please set a UPLOAD_DIR for the test in an environment.sh file\n"; #return 1; } if(!defined $ENV{'DATA_DIR'}) { print STDERR "Please set a DATA_DIR for the test in an environment.sh file\n"; #return 1; } if(!defined $ENV{'MONITOR_EMAIL'}) { print STDERR "Please set a MONITOR_EMAIL for the test in an environment.sh file\n"; #return 1; } if($ENV{'DATA_DIR'} eq "/") { print STDERR "DATA_DIR should not be the fs root\n"; #return 1; } print STDERR "DATA_DIR: ".$ENV{'DATA_DIR'}."\n"; print STDERR "UPLOAD_DIR: ".$ENV{'UPLOAD_DIR'}."\n"; #create an id for this test my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); $year += 1900; $mon += 1; $mon = "0$mon" if ($mon < 10); $mday = "0$mday" if ($mday < 10); my $dateid="$year.$mon.$mday"; #my $dateid=($year+1900)."-".($mon+1)."-$mday"; print STDERR "Starting test '$dateid'\n"; # http://stackoverflow.com/questions/2149368/how-can-i-loop-through-files-in-a-directory-in-perl $ENV{'CLASSPATH'} = ""; my $jar_lib_path = $ENV{'TASK_HOME'}.$sep."lib"; my @files = <$jar_lib_path/*.jar>; # /full/path/to/diffcol/lib/*jar foreach my $file (@files) { $file =~ s@\/@\\@g if $isWin; $ENV{'CLASSPATH'}=$file.$pathsep.$ENV{'CLASSPATH'}; } ##print STDERR "**** classpath: ".$ENV{'CLASSPATH'}."\n"; #set the location of the full report my $xmlout=filename_concat($ENV{'DATA_DIR'}, "full-report-$dateid.xml"); ##print STDERR "XML: $xmlout\n"; # the toplevel folder of the greenstone installation being used my $greenstone_home=""; # gsdl is the checkout folder and can be greenstone2 or greenstone3 my $gsdl="greenstone2"; # Check if using existing compiled-up greenstone installation # and set the greenstone_home location accordingly if(defined $ENV{'GSDL3SRCHOME'} || defined $ENV{'GSDLHOME'}) { print STDERR "Found existing Greenstone home, will use that instead\n"; $greenstone_home=$ENV{'GSDLHOME'}; } else { $greenstone_home=filename_concat($ENV{'DATA_DIR'}, $gsdl); } ##print STDERR "GSHOME: $greenstone_home\n"; #do the requested action if($action eq "setup_greenstone") { &setup_greenstone; } elsif ($action eq "run_test") { &run_test; } elsif ($action eq "summarise") { &summarise; } elsif ($action eq "upload") { &upload; &mail_with_report_attached; } elsif ($action eq "all") { &setup_greenstone; &run_test; &summarise; &upload; &mail_with_report_attached; } ##******************************** sub printusage { print STDERR "Run as: $0 (help|setup_greenstone|run_test|summarise|upload|all)\n"; } #http://stackoverflow.com/questions/7427262/read-a-file-and-save-it-in-variable-using-shell-script sub setup_greenstone { #clean up from previous tests print STDERR "about to clean up any old tests (Ctrl-C to cancel)"; # no newline for my $i ( 1..5 ) { sleep 1; # 1 second print STDERR "."; } print STDERR "\n"; # http://perldoc.perl.org/File/Path.html print STDERR "cleaning up previous tests\n"; &File::Path::remove_tree($ENV{'DATA_DIR'}); print STDERR "creating the data dir\n"; &File::Path::make_path($ENV{'DATA_DIR'}); # works like mkdir -p chdir($ENV{'DATA_DIR'}); # use existing compiled-up greenstone installation, if a GSDLHOME set if(defined $ENV{'GSDL3SRCHOME'} || defined $ENV{'GSDLHOME'}) { print STDERR "Found existing Greenstone home, will use that instead\n"; return; } # Else checkout a GS from svn into DATA_DIR #svn checkout of main gsdl directory print STDERR "checkout $gsdl:\n"; my $cmd = "svn co ".$ENV{'SVN_OPT_REV'}." http://svn.greenstone.org/main/trunk/greenstone2 $gsdl"; ##print STDERR "Checkout CMD: $cmd\n"; # # unlike backticks operator, system() will print the output of the command to the screen as it executes # http://stackoverflow.com/questions/758611/how-to-flush-output-in-backticks-in-perl?rq=1 my $status = system "$cmd"; #my $status = `$cmd`; if($status != 0) { print STDERR "@@@ SVN checkout of $gsdl failed\n"; exit -1; } print STDERR "done\n"; ##print STDERR "$ENV{'DATA_DIR'}$sep$gsdl\n"; chdir("$ENV{'DATA_DIR'}$sep$gsdl"); ##print STDERR "@@@ OS: $^O.|".$Config{'archname64'}."|\n"; if($isWin) { print STDERR "Compiling $gsdl using makegs2.bat running in auto (silent) mode\n"; # we're now in the GS2 folder, call makegs2 with silent param $cmd = "makegs2.bat silent 2>> $ENV{'DATA_DIR'}/compilation-errors"; # STDERR is sent to compilation-errors file $status = system $cmd; } else { # if we're on linux/darwin, need gnome-lib for the correct architecture. And need imagemagick to build imgs in collections my $bit_arch=`uname -m`; # imagmagick binary print STDERR "Getting imagemagick binary\n"; my $os = $isMac ? "darwin" : "linux"; my $imagickzip = "imagemagick-$os"; if($isMac) { $imagickzip .= "-10.5.tar.gz"; # &File::Path::make_path($ENV{'DATA_DIR'}."$sep$gsdl$sep$os"); # need to ensure gsdl/bin/darwin exists # the following mac img bin contains binaries that points to libraries containing fixed paths to /home/max # $cmd = "svn export http://svn.greenstone.org/main/trunk/binaries/mac/intel/imagemagick bin/darwin/imagemagick"; # $status = system($cmd); } else { # linux my $extension64 = ($bit_arch =~ m/64$/) ? "-x64" : ""; $imagickzip .= "$extension64.tar.gz"; } $cmd = "svn export http://svn.greenstone.org/gs2-extensions/imagemagick/trunk/$imagickzip ext/$imagickzip"; $status = system ($cmd); system("cd ext && tar -xvzf $imagickzip"); # gnomelib binary print STDERR "setting up gnome-lib-minimal for compilation\n"; # To get gnome-lib, need to determine bit architecture of the linux/darwin # http://stackoverflow.com/questions/8963400/the-correct-way-to-read-a-data-file-into-an-array # $Config{'archname64'} doesn't work on the Ubuntu and the Sys::Info package seems to not be supported # well on ActivePerl. # But since we know we're on a Linux/Darwin machine at this point, wecan just run `uname -m` and other linux cmds my $gnome_lib_file = $isMac ? "darwin-intel" : "linux"; # assuming all darwin is intel, not ppc!! $gnome_lib_file .= "-x64" if($bit_arch =~ m/64$/); #svn checkout gnome-lib for this linux/darwin chdir("$ENV{'DATA_DIR'}$sep$gsdl$sep"."ext"); #cd $DATA_DIR/$gsdl/ext ##print STDERR "**** gnomelib: $gnome_lib_file\n"; # checkout and unpack gnome-lib-minimal #svn export http://svn.greenstone.org/gs2-extensions/gnome-lib/trunk/gnome-lib-minimal-linux-x64.tar.gz gl.tar.gz $cmd = "svn export http://svn.greenstone.org/gs2-extensions/gnome-lib/trunk/gnome-lib-minimal-".$gnome_lib_file.".tar.gz gl.tar.gz"; system $cmd; system ("tar -xvzf gl.tar.gz"); chdir("gnome-lib-minimal"); ##print STDERR "*** ARCH: $bit_arch\n"; # need to run source devel.bash on gnome-lib followed by configure, make, make install # in one go, in order to preserve the compile environment set up by sourcing devel.bash # http://stackoverflow.com/questions/7369145/activating-a-virtualenv-using-a-shell-script-doesnt-seem-to-work # http://ubuntuforums.org/showthread.php?t=1932504 linking /bin/sh to bash instead of dash # $cmd = "bash -c \"source ./devel.bash && cd ../.. && ./configure --enable-apache-httpd && make && make install\""; $cmd = "bash -c \""; $cmd .= "source ./devel.bash"; $cmd .= " && cd ../.."; #configure # $cmd .= " && ./configure"; $cmd .= " && echo 'configure $gsdl: ' "; $cmd .= " && echo '' >> $xmlout"; $cmd .= " && ./configure 2>> $ENV{'DATA_DIR'}/compilation-errors"; # configure $cmd .= " && echo '' >> $xmlout"; $cmd .= " && echo 'done'"; #make $cmd .= " && echo 'make $gsdl: '"; $cmd .= " && echo '' >> $xmlout"; $cmd .= " && make 2>> $ENV{'DATA_DIR'}/compilation-errors"; # make $cmd .= " && echo '' >> $xmlout"; $cmd .= " && echo 'done'"; #make install $cmd .= " && echo 'make install $gsdl: '"; $cmd .= " && echo '' >> $xmlout"; $cmd .= " && make install 2>> $ENV{'DATA_DIR'}/compilation-errors"; # make install $cmd .= " && echo '' >> $xmlout"; $cmd .= " && echo 'done'"; $cmd .= "\""; # close off cmd to bash and run it $status = system $cmd; # Moving imagemagick after instead of before compilation, since bin/darwin gets overwritten during compilation move("$ENV{'DATA_DIR'}$sep$gsdl$sep"."ext/imagemagick/$os", "$ENV{'DATA_DIR'}$sep$gsdl$sep"."bin/$os/imagemagick"); # http://www.perlmonks.org/?node_id=586537 unlink "$ENV{'DATA_DIR'}/$gsdl"."/ext/$imagickzip" or warn "Could not unlink ext/$imagickzip: $!"; &File::Path::remove_tree("$ENV{'DATA_DIR'}$sep$gsdl$sep"."ext/imagemagick"); # the untarred parent folder } if($status != 0) { print STDERR "@@@ Compile failed\n"; exit -1; } # set the path to the greenstone_home variable $greenstone_home="$ENV{'DATA_DIR'}$sep$gsdl"; } sub getPDFBox { # current revision is 27763, but using "head" works my $PDFBOX_TRAC_URL="http://trac.greenstone.org/export/head/gs2-extensions/pdf-box/trunk/pdf-box-java"; # both for .zip and .tar.gz extension #"http://trac.greenstone.org/export/".$ENV{'SVN_OPT_REV'}."/gs2-extensions/pdf-box/trunk/pdf-box-java"; # now get the PDFBox extension for PDFBox tutorial print STDERR "Getting pdfbox from $PDFBOX_TRAC_URL:\n"; chdir($greenstone_home); my $cmd = ""; if ($isWin) { $cmd = "setup.bat && cd ext && wget $PDFBOX_TRAC_URL.zip && unzip pdf-box-java.zip"; } elsif ($isMac) { # need to use curl not wget $cmd = "cd ext && curl $PDFBOX_TRAC_URL.tar.gz > pdf-box-java.tar.gz && tar -xzf pdf-box-java.tar.gz"; } else { # linux $cmd = "source setup.bash && cd ext && wget $PDFBOX_TRAC_URL.tar.gz && tar -xzf pdf-box-java.tar.gz"; } my $status = system $cmd; if($status != 0) { print STDERR "@@@ Failed to set up PDFBox\n"; #exit -1; # proceed testing other tutorials? } } # http://stackoverflow.com/questions/3377879/how-do-i-receive-command-output-immediately sub run_test { my $pdfbox = &filename_concat($greenstone_home, "ext", "pdf-box"); if(!-d $pdfbox) { &getPDFBox(); } open (my $xml_fh, '>'.$xmlout) || die "Could not open xml file $xmlout for appending: $!\n"; # perform the requested subcommands, outputting xml information print $xml_fh "\n"; # make sure that diffcol/model-collect is up to date before copying it over to greenstone-home print $xml_fh "Updating $ENV{'TASK_HOME'}/model-collect:\n"; my $cmd = "svn up $ENV{'TASK_HOME'}/model-collect"; #chdir("$ENV{'TASK_HOME'}/model-collect"); my $status = system "$cmd"; # go to whichever greenstone_home we're using chdir($greenstone_home); # get svn info print STDERR "getting svn info: $xmlout\n"; print $xml_fh "\n"; &run_and_print_cmd("svn info", $xml_fh); print $xml_fh "\n"; print STDERR "done\n"; #make two copies of the model-collect directory in gsdl #one to be rebuilt and one as the basis for comparison #strip both of all .svn directories #copy the model collections to the collect folder to be rebuilt print STDERR "installing test collections and model collections to new $gsdl installation... "; #clean up if(-d "collect") { &File::Path::remove_tree("collect") || die "Error could not delete collect: $!"; } &File::Path::remove_tree("model-collect"); #copy to collect and strip .svn subfolders &File::Path::make_path("collect"); # create the folder and copy contents across ©_recursively(&filename_concat("$ENV{'TASK_HOME'}","model-collect"), "collect", ".svn"); #make the model copy &File::Path::make_path("model-collect"); ©_recursively("collect", "model-collect"); # copy contents across print STDERR "done\n"; #for each collection, import, build and diff with its model counterpart opendir my($collect_handle), "collect" or die "Could not open dir $greenstone_home/collect: $!"; for my $collection (readdir $collect_handle) { next if ($collection eq "." || $collection eq ".."); # next if ($collection ne "Word-PDF-Basic"); ## TEMPORARY, FOR TESTING THIS SCRIPT #escape the filename (in case of space) $collection =~ s@ @\\ @g; #getting just the basename of the collection would have been necessary had we not cd-ed into $gsdl print STDERR "*** Found collection $collection\n"; print $xml_fh "\n"; #import # Ensure the OIDtype for importing is hash_on_full_filename # "to make document identifiers more stable across upgrades of the software, # although it means that duplicate documents contained in the collection are # no longer detected automatically." print STDERR "$collection - Importing:\n"; print $xml_fh "\n"; &run_build_script("import.pl -removeold $collection"); #-OIDtype hash_on_full_filename print $xml_fh "\n"; print STDERR "done\n"; #build print STDERR "$collection - Building:\n"; print $xml_fh "\n"; &run_build_script("buildcol.pl -removeold $collection"); print $xml_fh "\n"; print STDERR "done\n"; #rename the intermediate 'building' directory 'index' print STDERR "$collection - Move \"building\" to \"index\"... "; my $index = &filename_concat("collect", $collection, "index"); my $building = &filename_concat("collect", $collection, "building"); &File::Path::remove_tree($index); # Renaming Directories, http://www.perlmonks.org/?node_id=177421 move($building, $index) or die "copy failed: $!"; # File::Copy::move print STDERR "done\n"; #diffcol print STDERR "$collection - Diffing:\n"; my $diffcol_dir = &filename_concat($ENV{'TASK_HOME'},"diffcol"); $cmd = "diffcol.pl -output xml -verbosity 10 $collection"; # need to run with ./diffcol.pl if bash script &run_diff_script($cmd, $xml_fh, $diffcol_dir); chdir($greenstone_home); # this is actually where we are print STDERR "done\n"; print $xml_fh "\n"; } closedir $collect_handle; # close handle to collect dir print $xml_fh "\n"; close($xml_fh); print STDERR "done\n"; } ##*************************************************************** # runs setup in greenstone_home before running the diff command sub run_diff_script { my ($cmd, $fh, $diffcol_dir) = @_; # we're in greenstone_home now if(!$isWin) { $cmd = "bash -c \"export GSDLHOME=&& source $setup_script.bash && cd $diffcol_dir && ./$cmd\""; } else { # Need to prefix cmd -c/-k as necessary $cmd = "cmd /c \"set GSDLHOME=&& $setup_script.bat && cd $diffcol_dir && perl -S $cmd\""; ## print STDERR "@@@@ Going to call command: $cmd\n"; } return &run_and_print_cmd($cmd, $fh); } # runs setup in greenstone_home before running the given build command sub run_build_script { my ($cmd, $fh) = @_; # chdir($greenstone_home); # we are in $greenstone_home already, can directly run the build cmd on the collection if(!$isWin) { $cmd = "bash -c \"export GSDLHOME=&& source $setup_script.bash && $cmd\""; } else { # Need to prefix cmd -c/-k as necessary $cmd = "cmd /c \"set GSDLHOME=&& $setup_script.bat && perl -S $cmd\""; } ## print STDERR "@@@@ Going to call command: $cmd\n"; return system($cmd); #return &run_and_print_cmd($cmd, $fh); # doesn't work on cmds chained with bash -c } # http://stackoverflow.com/questions/758611/how-to-flush-output-in-backticks-in-perl?rq=1activeperl%20sys::info # http://stackoverflow.com/questions/1477500/how-do-i-get-the-output-of-an-external-command-in-perl sub run_and_print_cmd { my ($cmd, $fh) = @_; open my $pin, "$cmd|" or die "unable to run cmd $cmd: $!"; # open(my $fh, '-|', 'powercfg -l') or die $!; if(defined $fh) { # print cmd output both to the filehandle and to stdout while (my $line = <$pin>) { print $fh $line; # print STDOUT $line; # if also printing cmd output to STDOUT } } else { # no filehandle, so just need to print to stdout # unlike backticks operator, system() will print the output of the command to the screen as it executes # http://stackoverflow.com/questions/758611/how-to-flush-output-in-backticks-in-perl?rq=1 my $status = system $cmd; if($status != 0) { print STDERR "ERROR ($status) running $cmd: $!\n"; } } close($pin); } sub filename_concat { my $first_file = shift(@_); my (@filenames) = @_; # If first_file is not null or empty, then add it back into the list if (defined $first_file && $first_file =~ /\S/) { unshift(@filenames, $first_file); } my $filename = join($sep, @filenames); $filename =~ s/[\\\/]$//; # remove trailing slashes if any return $filename; } # The following code is from # http://stackoverflow.com/questions/227613/how-can-i-copy-a-directory-recursively-and-filter-filenames-in-perl # It also states that "Perl's File::Copy is a bit broken (it doesn't copy permissions on Unix systems, for example)" sub copy_recursively { my ($from_dir, $to_dir, $regex) = @_; opendir my($dh), $from_dir or die "Could not open dir '$from_dir': $!"; # if(-d !$to_dir) { # mkdir $to_dir or die "mkdir '$to_dir' failed: $!" if not -e $to_dir; # } for my $entry (readdir $dh) { next if ($entry eq "." || $entry eq ".."); next if (defined $regex && $entry =~ /$regex/); my $source = "$from_dir/$entry"; my $destination = "$to_dir/$entry"; if (-d $source) { mkdir $destination or die "mkdir '$destination' failed: $!" if not -e $destination; copy_recursively($source, $destination, $regex); } else { copy($source, $destination) or die "copy failed: $!"; } } closedir $dh; return; } sub summarise { # make a summarised Xml report print STDERR "Summarizing the xml report... "; my $cmd = "java org.apache.xalan.xslt.Process -IN $xmlout -XSL $ENV{'TASK_HOME'}/xsl/xml-report.xsl -OUT $ENV{'DATA_DIR'}/report-$dateid.xml"; my $status = system($cmd); print STDERR "done\n"; # make a summarised HTMl report print STDERR "Creating an html summary report... "; $cmd = "java org.apache.xalan.xslt.Process -IN $ENV{'DATA_DIR'}/report-$dateid.xml -XSL $ENV{'TASK_HOME'}/xsl/html-report.xsl -OUT $ENV{'DATA_DIR'}/report-$dateid.html"; $status = system($cmd); print STDERR "done\n"; } sub upload { # if the upload dir already existed, clear it of contents if (-d $ENV{'UPLOAD_DIR'}) { #else rm $UPLOAD_DIR/* # don't want to keep previous days reports # else we will have to manually clear them at some point # just generate the set of reports for this run of task.pl upload # and &File::Path::remove_tree($ENV{'UPLOAD_DIR'}); } # recreate the upload directory &File::Path::make_path($ENV{'UPLOAD_DIR'}); # copy all *.xml and *.html files across to UPLOAD_DIR opendir my($dh), $ENV{'DATA_DIR'} or die "Could not open DATA_DIR: $!"; for my $entry (readdir $dh) { next if ($entry !~ m/(\.xml|\.html?)$/); # copy the reports across with different names: with OS prefixed to them. And for the HTML file on Win, rename to HTM # html files uploaded from windows to nzdl are empty for no reason. Uploading as htm seems to work my $os_entry = $entry; $os_entry =~ s@\.html$@.htm@ if $isWin; $os_entry = $^O."-diffcol-$os_entry"; # get the absolute path to the original files before copying them over $entry = &filename_concat($ENV{'DATA_DIR'}, $entry); # copy them over with their new names ## print STDERR "@@@@ copying across $entry to $ENV{'UPLOAD_DIR'} as $os_entry\n"; copy($entry, "$ENV{'UPLOAD_DIR'}$sep$os_entry"); #copy($entry, "$ENV{'UPLOAD_DIR'}"); } closedir $dh; # Upload the html file to puka #default identity dir if ( ! exists $ENV{'IDENTITY_DIR'} ) { $ENV{'IDENTITY_DIR'} = "$ENV{'HOME'}${sep}.ssh"; # "C:\\Research\\Nightly\\tools\\keys" on windows, see environment.pl } if (! exists $ENV{'SNAPSHOT_MODE'} ) { $ENV{'SNAPSHOT_MODE'} = "caveat"; } #use the correct key for uploading $ENV{'IDENTITY_FILE'} = "$ENV{'IDENTITY_DIR'}${sep}upload-" . $ENV{'SNAPSHOT_MODE'} . ($^O eq "MSWin32" ? ".ppk" : ""); if(-f $ENV{'IDENTITY_FILE'}) { # if you need to touch the file on windows: http://stackoverflow.com/questions/51435/windows-version-of-the-unix-touch-command # the report we want to upload is actually just os-diffcol-report-$dateid.html my $command = "cd \"$ENV{'UPLOAD_DIR'}\" && tar -c *.htm* | "; #&& cat *.html | "; # && tar -c * | $command .= ($^O eq "MSWin32" ? "plink" : "ssh"); $command .= " -T -i \"$ENV{'IDENTITY_FILE'}\" nzdl\@puka.cs.waikato.ac.nz"; #print "$command\n"; my $status = system("$command"); if($status != 0) { print STDERR "*** Failed to upload test report to nzdl $status\n"; } } else { print STDERR "*** Cannot upload the test report to nzdl from this machine\n"; } print STDERR "Finished uploading\n"; } # Sending emails with perl: http://learn.perl.org/examples/email.html # Sending email attachments with perl: http://www.perlmonks.org/?node_id=19430 # Sadly none of the packages are installed by default and use of MIME::Lite is discouraged sub mail_with_report_attached { # email out with report attached, if the tests failed print STDERR "Checking if successful... \n"; my $cmd = "java org.apache.xalan.xslt.Process -IN $xmlout -XSL $ENV{'TASK_HOME'}/xsl/passed-or-not.xsl"; #my $result = system($cmd); my $result = `$cmd`; print STDERR "result: $result\n"; if($result ne "yes") { my $msg = "$gsdl regression test for $dateid failed"; my $subject = "Regression Test Failed"; #"$gsdl regression test for $dateid failed\n"; my $attach_file = &filename_concat($ENV{'DATA_DIR'}, "report-$dateid.html"); if($isWin) { if($use_blat && $blat && $ENV{'GSDL_SMTP'}) { # http://stackoverflow.com/questions/709635/sending-mail-from-batch-file #blat -to user@example.com -server smtp.example.com -f batch_script@example.com -subject "subject" -body "body" # need to install blat on windows $cmd = "$blat -to $ENV{'MONITOR_EMAIL'} -server $ENV{'GSDL_SMTP'} -f $ENV{'MONITOR_EMAIL'} -attach $attach_file -subject \"$subject\" -body \"$msg\""; $result = system($cmd); } else { $result = 1; # status from running mail command is 0 if success, 1 if fail print STDERR "********************************************\n"; if ($use_blat) { print STDERR "Need blat and SMTP set to send mail attachment\n" ; } else { print STDERR "Not set up to send mail on Windows\n"; } print STDERR "Inspect report at: $attach_file\n"; print STDERR "********************************************\n"; } } else { # linux my $status = system("command -v mutt > /dev/null 2>&1;"); #better way of doing "which mutt" if($status != 0) { # mutt doesn't exist, can't send attachments, so send simple email $cmd="echo '$gsdl regression test for $dateid failed.' | mail -s 'Regression Test Failed' $ENV{'MONITOR_EMAIL'}"; print STDERR "********************************************\n"; print STDERR "No mutt installed, unable to mail attachment\n"; print STDERR "Inspect report at: $attach_file\n"; print STDERR "********************************************\n"; } else { #$cmd = "bash -c \"echo '$gsdl regression test for $dateid failed' | mutt -a $attach_file -s 'Regression Test Failed' -- $ENV{'MONITOR_EMAIL'}\""; $cmd = "echo '$gsdl regression test for $dateid failed' | mutt -a $attach_file -s 'Regression Test Failed' -- $ENV{'MONITOR_EMAIL'}"; } # run the mail command $result = system($cmd); #&run_and_print_cmd($cmd); } if($result != 0) { print STDERR "*** Unable to send email: $?\n"; } else { print STDERR "Sent mail with report attached.\n"; } } else { print STDERR "********************************************\n"; print STDERR "Tests were successful. Not sending mail.\n"; print STDERR "********************************************\n"; } } # The old version of this program contained the following, consisting of 1 line of active code: # Invoke as: sjmc@br:/research/sjm84/envi/bin$ ./envi diffcol summarise # Doing so will call this pl file and pass in "summarise" in ARGV # This pl file will in turn call the task executable in this folder # passing in "summarise" as a parameter. #system("/bin/bash -c \"../etc/tasks/diffcol/task @ARGV\""); ##system("/bin/bash -c \"./task @ARGV\""); ##print STDERR "/bin/bash -c ../etc/tasks/diffcol/task @ARGV"