File:  [LON-CAPA] / doc / loncapafiles / html_parser_check.piml
Revision 1.3: download - view: text, annotated - select for diffs
Thu Jul 14 03:26:56 2005 UTC (18 years, 8 months ago) by albertel
Branches: MAIN
CVS tags: version_2_9_X, version_2_9_99_0, version_2_9_1, version_2_9_0, version_2_8_X, version_2_8_99_1, version_2_8_99_0, version_2_8_2, version_2_8_1, version_2_8_0, version_2_7_X, version_2_7_99_1, version_2_7_99_0, version_2_7_1, version_2_7_0, version_2_6_X, version_2_6_99_1, version_2_6_99_0, version_2_6_3, version_2_6_2, version_2_6_1, version_2_6_0, version_2_5_X, version_2_5_99_1, version_2_5_99_0, version_2_5_2, version_2_5_1, version_2_5_0, version_2_4_X, version_2_4_99_0, version_2_4_2, version_2_4_1, version_2_4_0, version_2_3_X, version_2_3_99_0, version_2_3_2, version_2_3_1, version_2_3_0, version_2_2_X, version_2_2_99_1, version_2_2_99_0, version_2_2_2, version_2_2_1, version_2_2_0, version_2_1_X, version_2_1_99_3, version_2_1_99_2, version_2_1_99_1, version_2_1_99_0, version_2_1_3, version_2_1_2, version_2_1_1, version_2_1_0, version_2_12_X, version_2_11_X, version_2_11_4_uiuc, version_2_11_4_msu, version_2_11_4, version_2_11_3_uiuc, version_2_11_3_msu, version_2_11_3, version_2_11_2_uiuc, version_2_11_2_msu, version_2_11_2_educog, version_2_11_2, version_2_11_1, version_2_11_0_RC3, version_2_11_0_RC2, version_2_11_0_RC1, version_2_11_0, version_2_10_X, version_2_10_1, version_2_10_0_RC2, version_2_10_0_RC1, version_2_10_0, version_2_0_X, version_2_0_99_1, version_2_0_2, version_2_0_1, version_2_0_0, version_1_99_3, version_1_99_2, loncapaMITrelate_1, language_hyphenation_merge, language_hyphenation, bz6209-base, bz6209, HEAD, GCI_3, GCI_2, GCI_1, BZ4492-merge, BZ4492-feature_horizontal_radioresponse, BZ4492-feature_Support_horizontal_radioresponse, BZ4492-Support_horizontal_radioresponse
- this not working is an ERROR

<!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.3 2005/07/14 03:26:56 albertel 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 strict;
use HTML::Parser;

my $version = $HTML::Parser::VERSION;

##
## First test
##
my $text='';
my $p = HTML::Parser-&gt;new(api_version =&gt; 3);
$p-&gt;handler(start =&gt;
	    sub {
		 my($tag, $attr) = @_;
		 $text .= "S[$tag";
		 for my $k (sort keys %$attr) {
		     my $v =  $attr-&gt;{$k};
		     $text .= " key $k= value $v";
		 }
		 $text .= "]";
	     }, "tagname,attr");
$p-&gt;handler(text =&gt;
	     sub {
		 $text .= 'T{'.shift().'}';
	     }, "text");
$text='';
$p-&gt;parse('&lt;img a="b" "=\'"\' c=d /&gt;')-&gt;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 &lt;&lt;"END";
**** ERROR: HTML::Parser is not working properly.
              You are using version $version.  For test 1 it returned
              "$first_test_result"
END
}


##
## Second test
##
$p-&gt;xml_mode(1);
$text='';
$p-&gt;parse('&lt;img a="b" "=\'"\' c=d /&gt;')-&gt;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 &lt;&lt;"END";
**** ERROR: HTML::Parser is not working properly.
              You are using version $version.  For test 2 it returned
              "$second_test_result"
END
}

</perlscript>
</file>
</files>
</piml>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>