[LON-CAPA-cvs] cvs: loncom /build Makefile doc/loncapafiles html_parser_check.piml
matthew
lon-capa-cvs@mail.lon-capa.org
Mon, 06 Dec 2004 20:27:38 -0000
matthew Mon Dec 6 15:27:38 2004 EDT
Added files:
/doc/loncapafiles html_parser_check.piml
Modified files:
/loncom/build Makefile
Log:
Added piml to check that HTML::Parser is patched as we need it to be.
Index: loncom/build/Makefile
diff -u loncom/build/Makefile:1.170 loncom/build/Makefile:1.171
--- loncom/build/Makefile:1.170 Tue Nov 23 09:22:28 2004
+++ loncom/build/Makefile Mon Dec 6 15:27:38 2004
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
-# $Id: Makefile,v 1.170 2004/11/23 14:22:28 albertel Exp $
+# $Id: Makefile,v 1.171 2004/12/06 20:27:38 matthew Exp $
# TYPICAL USAGE of this Makefile is primarily for two targets:
# "make build" and "make install".
@@ -124,6 +124,7 @@
@echo "modify_config_files: Perform automatic update of the "
@echo " configuration files for yum and MySQL."
@echo "ntpcheck: test to see if ntp is installed and running."
+ @echo "html_parser_check: test functionality of HTML::Parser."
@echo "cron_lpmlcheck: remove cron file /etc/cron.d/loncapa.lpml."
@echo "rpmcheck: test to see if rpms known to confict are installed."
@echo "updatequery: solicit the user for machine configuration"
@@ -395,6 +396,11 @@
perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
tee -a WARNINGS
+html_parser_check:
+ cat $(SOURCE)/doc/loncapafiles/html_parser_check.piml | \
+ perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
+ tee -a WARNINGS
+
cron_lpmlcheck:
cat $(SOURCE)/doc/loncapafiles/cron_lpmlcheck.piml | \
perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
@@ -457,6 +463,7 @@
make clearoutoldspreadsheetcache
make rpmcheck
make ntpcheck
+ make html_parser_check
make cron_lpmlcheck
make sanitycheck
make sendmail_fix
Index: doc/loncapafiles/html_parser_check.piml
+++ doc/loncapafiles/html_parser_check.piml
<!DOCTYPE piml PUBLIC "-//TUX/DTD piml 1.0 Final//EN"
"http://lpml.sourceforge.net/DTD/piml.dtd">
<!-- ntpcheck.piml -->
<!-- Matthew Hall -->
<!-- $Id: html_parser_check.piml,v 1.1 2004/12/06 20:27:38 matthew Exp $ -->
<!--
This file is part of the LearningOnline Network with CAPA (LON-CAPA).
LON-CAPA is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
LON-CAPA is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LON-CAPA; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
/home/httpd/html/adm/gpl.txt
http://www.lon-capa.org/
-->
<piml>
<targetroot>/</targetroot>
<files>
<file>
<target dist="default">/home/httpd/lonUsers</target>
<perlscript mode="fg">
#use the directory
use strict;
use HTML::Parser;
my $version = $HTML::Parser::VERSION;
##
## First test
##
my $text='';
my $p = HTML::Parser->new(api_version => 3);
$p->handler(start =>
sub {
my($tag, $attr) = @_;
$text .= "S[$tag";
for my $k (sort keys %$attr) {
my $v = $attr->{$k};
$text .= " key $k= value $v";
}
$text .= "]";
}, "tagname,attr");
$p->handler(text =>
sub {
$text .= 'T{'.shift().'}';
}, "text");
$text='';
$p->parse('<img a="b" "=\'"\' c=d />')->eof;
my $first_test_result = $text;
my $first_expected_result =
q{S[img key "= value " key /= value / key a= value b key c= value d]};
if (! $first_test_result) {
print "Unable to run first HTML::Parser test\n";
} elsif ($first_test_result ne $first_expected_result) {
print <<"END";
**** WARNING: HTML::Parser is not working properly.
You are using version $version. For test 1 it returned
"$first_test_result"
END
} else {
print "First HTML::Parser test looks good.\n";
}
##
## Second test
##
$p->xml_mode(1);
$text='';
$p->parse('<img a="b" "=\'"\' c=d />')->eof;
my $second_test_result = $text;
my $second_expected_result =
q{S[img key "= value " key a= value b key c= value d]};
if (! $second_test_result) {
print "Unable to run second HTML::Parser test\n";
} elsif ($second_test_result ne $second_expected_result) {
print <<"END";
**** WARNING: HTML::Parser is not working properly.
You are using version $version. For test 2 it returned
"$second_test_result"
END
} else {
print "Second HTML::Parser test looks good.\n";
}
</perlscript>
</file>
</files>
</piml>