Update of /cvsroot/http-webtest/HTTP-WebTest-Plugin-XMLReport
In directory sc8-pr-cvs1:/tmp/cvs-serv8507
Modified Files:
Changes MANIFEST README
Added Files:
TODO
Log Message:
Prepared for release, small fixes and more robust tests
--- NEW FILE: TODO ---
TODO HTTP::WebTest::Plugin::XMLReport
In no particular order:
o Add plugin parameter "time_zone" for date calculations
This is needed for DateTest anyway, so why not?
o Enhance output to feed back into WebTest, so we can do
retries on failure.
o Add sample scripts for post-processing of XML output
o Add XML input module, either as script (proof of concept
is done) or as an inherited WebTest module.
o Implement missing functionality from DefaultReport:
- show_headers
- show_html
- show_cookies
Index: Changes
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Plugin-XMLReport/Changes,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Changes 30 Oct 2002 21:25:49 -0000 1.1.1.1
--- Changes 2 Jan 2003 16:52:16 -0000 1.2
***************
*** 1,4 ****
--- 1,13 ----
Revision history for Perl extension XMLReport.
+ 1.00 Thu Jan 2 17:44:33 CET 2003
+ - removed XML::Parser from tests
+ - switched to HTTP::WebTest::SelfTest
+ - removed utils.pl (obsolete now)
+ - tweaked DTD (PASS/FAIL status)
+
+ 0.92 Wed Oct 30 21:25:49 2002 UTC
+ - Upgraded for 2.x API by IlyaM
+
0.90 Wed Jun 19 22:36:49 CEST 2002
- initial *working* version, edited from
Index: MANIFEST
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Plugin-XMLReport/MANIFEST,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** MANIFEST 30 Oct 2002 21:25:49 -0000 1.1.1.1
--- MANIFEST 2 Jan 2003 16:52:16 -0000 1.2
***************
*** 4,7 ****
--- 4,8 ----
Makefile.PL
README
+ TODO
lib/HTTP/WebTest/Plugin/XMLReport.pm
t/01_basic.t
***************
*** 10,13 ****
t/lib/HTTP/WebTest/Plugin/FileRequest.pm
t/test.out/out-dtd.xml
t/test.out/out.xml
- t/utils.pl
--- 11,15 ----
t/lib/HTTP/WebTest/Plugin/FileRequest.pm
t/test.out/out-dtd.xml
+ t/test.out/out-missing-opts.xml
+ t/test.out/out-no-name.xml
t/test.out/out.xml
Index: README
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Plugin-XMLReport/README,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** README 26 Dec 2002 21:14:20 -0000 1.2
--- README 2 Jan 2003 16:52:16 -0000 1.3
***************
*** 1,3 ****
! HTTP::WebTest::Plugin::XMLReport version 0.92
=====================
--- 1,3 ----
! HTTP::WebTest::Plugin::XMLReport version 1.00
=====================
***************
*** 27,31 ****
XML::Writer (version 0.4 or newer reccommended)
IO::Scalar (version 2.0 or later)
! HTTP::WebTest (duh!)
BUGS
--- 27,31 ----
XML::Writer (version 0.4 or newer reccommended)
IO::Scalar (version 2.0 or later)
! HTTP::WebTest (version 2.x, install before this one!)
BUGS
***************
*** 39,43 ****
COPYRIGHT AND LICENCE
! Copyright (C) 2002 Johannes la Poutre <ja...@la...>
This program is free software; you can redistribute it and/or modify
--- 39,43 ----
COPYRIGHT AND LICENCE
! Copyright (C) 2002 - 2003 Johannes la Poutre <ja...@la...>
This program is free software; you can redistribute it and/or modify
|