Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.159.412 Times

Apache::TestUtil 1.29

  Date Added: February 13, 2010  |  Visits: 894

Apache::TestUtil

Report Broken Link
Printer Friendly Version


Product Homepage
Download (89 downloads)



Apache::TestUtil Perl module contains utility functions for writing tests. SYNOPSIS use Apache::Test; use Apache::TestUtil; ok t_cmp("foo", "foo", "sanity check"); t_write_file("filename", @content); my $fh = t_open_file($filename); t_mkdir("/foo/bar"); t_rmtree("/foo/bar"); t_is_equal($a, $b); Apache::TestUtil automatically exports a number of functions useful in writing tests. All the files and directories created using the functions from this package will be automatically destroyed at the end of the program execution (via END block). You should not use these functions other than from within tests which should cleanup all the created directories and files at the end of the test. FUNCTIONS t_cmp() t_cmp($received, $expected, $comment); t_cmp() prints the values of $comment, $expected and $received. e.g.: t_cmp(1, 1, "1 == 1?"); prints: # testing : 1 == 1? # expected: 1 # received: 1 then it returns the result of comparison of the $expected and the $received variables. Usually, the return value of this function is fed directly to the ok() function, like this: ok t_cmp(1, 1, "1 == 1?"); the third argument ($comment) is optional, mostly useful for telling what the comparison is trying to do. It is valid to use undef as an expected value. Therefore: my $foo; t_cmp(undef, $foo, "undef == undef?"); will return a true value. You can compare any two data-structures with t_cmp(). Just make sure that if you pass non-scalars, you have to pass their references. The datastructures can be deeply nested. For example you can compare: t_cmp({1 => [2..3,{5..8}], 4 => [5..6]}, {1 => [2..3,{5..8}], 4 => [5..6]}, "hash of array of hashes"); You can also compare the second argument against the first as a regex. Use the qr// function in the second argument. For example: t_cmp("abcd", qr/^abc/, "regex compare"); will do: "abcd" =~ /^abc/; This function is exported by default. t_filepath_cmp() This function is used to compare two filepaths via t_cmp(). For non-Win32, it simply uses t_cmp() for the comparison, but for Win32, Win32::GetLongPathName() is invoked to convert the first two arguments to their DOS long pathname. This is useful when there is a possibility the two paths being compared are not both represented by their long or short pathname. This function is exported by default. t_debug() t_debug("testing feature foo"); t_debug("test", [1..3], 5, {a=>[1..5]}); t_debug() prints out any datastructure while prepending # at the beginning of each line, to make the debug printouts comply with Test::Harnesss requirements. This function should be always used for debug prints, since if in the future the debug printing will change (e.g. redirected into a file) your tests wont need to be changed. the special global variable $Apache::TestUtil::DEBUG_OUTPUT can be used to redirect the output from t_debug() and related calls such as t_write_file(). for example, from a server-side test you would probably need to redirect it to STDERR: sub handler { plan $r, tests => 1; local $Apache::TestUtil::DEBUG_OUTPUT = *STDERR; t_write_file(/tmp/foo, bar); ... } left to its own devices, t_debug() will collide with the standard HTTP protocol during server-side tests, resulting in a situation both confusing difficult to debug. but STDOUT is left as the default, since you probably dont want debug output under normal circumstances unless running under verbose mode. This function is exported by default. t_write_file() t_write_file($filename, @lines); t_write_file() creates a new file at $filename or overwrites the existing file with the content passed in @lines. If only the $filename is passed, an empty file will be created. If parent directories of $filename dont exist they will be automagically created. The generated file will be automatically deleted at the end of the programs execution. This function is exported by default. t_append_file() t_append_file($filename, @lines); t_append_file() is similar to t_write_file(), but it doesnt clobber existing files and appends @lines to the end of the file. If the file doesnt exist it will create it. If parent directories of $filename dont exist they will be automagically created. The generated file will be registered to be automatically deleted at the end of the programs execution, only if the file was created by t_append_file(). This function is exported by default. t_write_shell_script() Apache::TestUtil::t_write_shell_script($filename, @lines); Similar to t_write_file() but creates a portable shell/batch script. The created filename is constructed from $filename and an appropriate extension automatically selected according to the platform the code is running under. It returns the extension of the created file. t_write_perl_script() Apache::TestUtil::t_write_perl_script($filename, @lines); Similar to t_write_file() but creates a executable Perl script with correctly set shebang line. t_open_file() my $fh = t_open_file($filename); t_open_file() opens a file $filename for writing and returns the file handle to the opened file. If parent directories of $filename dont exist they will be automagically created. The generated file will be automatically deleted at the end of the programs execution. This function is exported by default. t_mkdir() t_mkdir($dirname); t_mkdir() creates a directory $dirname. The operation will fail if the parent directory doesnt exist. If parent directories of $dirname dont exist they will be automagically created. The generated directory will be automatically deleted at the end of the programs execution. This function is exported by default. t_rmtree() t_rmtree(@dirs); t_rmtree() deletes the whole directories trees passed in @dirs. This function is exported by default. t_chown() Apache::TestUtil::t_chown($file); Change ownership of $file to the tests User/Group. This function is noop on platforms where chown(2) is unsupported (e.g. Win32). t_is_equal() t_is_equal($a, $b); t_is_equal() compares any two datastructures and returns 1 if they are exactly the same, otherwise 0. The datastructures can be nested hashes, arrays, scalars, undefs or a combination of any of these. See t_cmp() for an example. If $b is a regex reference, the regex comparison $a =~ $b is performed. For example: t_is_equal($server_version, qr{^Apache}); If comparing non-scalars make sure to pass the references to the datastructures. This function is exported by default. t_server_log_error_is_expected() If the handlers execution results in an error or a warning logged to the error_log file which is expected, its a good idea to have a disclaimer printed before the error itself, so one can tell real problems with tests from expected errors. For example when testing how the package behaves under error conditions the error_log file might be loaded with errors, most of which are expected. For example if a handler is about to generate a run-time error, this function can be used as: use Apache::TestUtil; ... sub handler { my $r = shift; ... t_server_log_error_is_expected(); die "failed because ..."; } After running this handler the error_log file will include: *** The following error entry is expected and harmless *** [Tue Apr 01 14:00:21 2003] [error] failed because ... When more than one entry is expected, an optional numerical argument, indicating how many entries to expect, can be passed. For example: t_server_log_error_is_expected(2); will generate: *** The following 2 error entries are expected and harmless *** If the error is generated at compile time, the logging must be done in the BEGIN block at the very beginning of the file: BEGIN { use Apache::TestUtil; t_server_log_error_is_expected(); } use DOES_NOT_exist; After attempting to run this handler the error_log file will include: *** The following error entry is expected and harmless *** [Tue Apr 01 14:04:49 2003] [error] Cant locate "DOES_NOT_exist.pm" in @INC (@INC contains: ... Also see t_server_log_warn_is_expected() which is similar but used for warnings. This function is exported by default. t_server_log_warn_is_expected() t_server_log_warn_is_expected() generates a disclaimer for expected warnings. See the explanation for t_server_log_error_is_expected() for more details. This function is exported by default. t_client_log_error_is_expected() t_client_log_error_is_expected() generates a disclaimer for expected errors. But in contrast to t_server_log_error_is_expected() called by the client side of the script. See the explanation for t_server_log_error_is_expected() for more details. For example the following client script fails to find the handler: use Apache::Test; use Apache::TestUtil; use Apache::TestRequest qw(GET); plan tests => 1; t_client_log_error_is_expected(); my $url = "/error_document/cannot_be_found"; my $res = GET($url); ok t_cmp(404, $res->code, "test 404"); After running this test the error_log file will include an entry similar to the following snippet: *** The following error entry is expected and harmless *** [Tue Apr 01 14:02:55 2003] [error] [client 127.0.0.1] File does not exist: /tmp/test/t/htdocs/error When more than one entry is expected, an optional numerical argument, indicating how many entries to expect, can be passed. For example: t_client_log_error_is_expected(2); will generate: *** The following 2 error entries are expected and harmless *** This function is exported by default. t_client_log_warn_is_expected() t_client_log_warn_is_expected() generates a disclaimer for expected warnings on the client side. See the explanation for t_client_log_error_is_expected() for more details. This function is exported by default. t_catfile(a, b, c) This function is essentially File::Spec->catfile, but on Win32 will use Win32::GetLongpathName() to convert the result to a long path name (if the result is an absolute file). The function is not exported by default. t_catfile_apache(a, b, c) This function is essentially File::Spec::Unix->catfile, but on Win32 will use Win32::GetLongpathName() to convert the result to a long path name (if the result is an absolute file). It is useful when comparing something to that returned by Apache, which uses a Unix-style specification with forward slashes for directory separators. The function is not exported by default. t_start_error_log_watch(), t_finish_error_log_watch() This pair of functions provides an easy interface for checking the presence or absense of any particular message or messages in the httpd error_log that were generated by the httpd daemon as part of a test suite. It is likely, that you should proceed this with a call to one of the t_*_is_expected() functions. t_start_error_log_watch(); do_it; ok grep {...} t_finish_error_log_watch().

Requirements: No special requirements
Platforms: Linux
Keyword: By Default End Of Expected File For Example For More Details Log File Testutil Testutil Perl Tue Apr Utility Functions Will Be
Users rating: 0/10

License: Freeware Size: 153.6 KB
USER REVIEWS
More Reviews or Write Review


APACHE::TESTUTIL RELATED
Networking Tools  -  Nmonitor 2.0.0
Nmonitor is a monitoring tool, by default capable of monitoring via ping, UDP and TCP checks. It has builtin plugin system so customized scripts can be used to monitor whatever you like eg. oracle tablespaces, diskspace whatever. This tool was...
112.64 KB  
Libraries  -  Software::Packager::Solaris 0.1
Software::Packager::Solaris is the Software::Packager extension for Solaris 2.5.1 and above. SYNOPSIS use Software::Packager; my $packager = new Software::Packager(solaris); This module is used to create software packages in a format...
14.34 KB  
Screen Savers  -  3D Parody of the Scream for Mac OS 4.2
Stolen so many times 'The Scream' is now haunted by the faces of his Masters other works. 'Why?' asks the Screamer, 'Are the others not being taken? They are just as lovely as I.' And then he dashes away only to return mad-stepping a somba dance...
2.7 MB  
Backup Utilities  -  Puran Duplicate File Finder 1.0
Puran Duplicate File Finder is a free utility that can find and delete duplicate files on your computer by comparing contents of each file. Features: - Scan duplicate files in one or more drives/folders. - It is extremely fast. You will...
1.44 MB  
Games  -  Mae Q'West and the Sign of the Stars for Mac OS 1.0
The stars point to hidden object fun in Mae Q'West and the Sign of the Stars for Mac, an engrossing challenge featuring mystery, romance, and adventure. When Mae thinks she's in store for a relaxing week when her children leave for summer camp....
68 MB  
Modules  -  Clean End of Lines 6.x-1.1
Clean End of Line provides an input format filter that removes trailing white spaces from lines.This input format filter can be used whenever you wish to remove spaces, tabs and other white spaces that ends lines in a text area. This is of...
10 KB  
Libraries  -  AxKit::XSP::ESQL 1.4
AxKit::XSP::ESQL is an Extended SQL taglib for AxKit eXtensible Server Pages. SYNOPSIS Add the esql: namespace to your XSP tag: < xsp:page language="Perl" xmlns:xsp="http://apache.org/xsp/core/v1"...
6.14 KB  
Games  -  The Lost Cases of Sherlock Holmes for Mac OS 1.0.1519
A lavish mystery adventure game, featuring 16 unique cases of forgery, espionage, theft, murder and more. Investigate hundreds of potentially relevant clues and lively characters in each mysterious story. Explore 40 historically accurate locations...
122 MB  
Backup Utilities  -  View Contents of Backup File 1.0
SysTools BKF Viewer is a freeware utility which is able to view contents of backup file and read BKF file without any cost. Windows BKF reader or Windows BKF file viewer supports all backup databases which were created using Windows 98, ME, 2000,...
932 KB  
Compression Tools  -  Appnimi Rar To Zip Converter 1.0
About Appnimi RAR To ZIP Converter : Appnimi RAR To ZIP Converter is simple tool to help you to convert RAR files to ZIP files. By default windows support ZIP file compression, so to extracting and sharing of RAR files are made easier if you...
6.8 MB  
NEW DOWNLOADS IN PROGRAMMING, LIBRARIES
Programming  -  Cedalion for Linux 0.2.6
Cedalion is a programming language that allows its users to add new abstractions and define (and use) internal DSLs. Its innovation is in the fact that it uses projectional editing to allow the new abstractions to have no syntactic limitations.
471.04 KB  
Programming  -  Math::GMPf 0.29
Math::GMPf - perl interface to the GMP library's floating point (mpf) functions.
30.72 KB  
Programming  -  Net::Wire10 1.08
Net::Wire10 is a Pure Perl connector that talks to Sphinx, MySQL and Drizzle servers. Net::Wire10 implements the low-level network protocol, alias the MySQL wire protocol version 10, necessary for talking to one of the aforementioned...
30.72 KB  
Programming  -  logilab-common 0.56.2
a bunch of modules providing low level functionnalities shared among some python projects devel Please note that some of the modules have some extra dependencies. For instance, logilab.common.db will require a db-api 2.0 compliant...
174.08 KB  
Programming  -  OpenSSL for linux 1.0.0a
The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a...
3.83 MB  
Libraries  -  wolfSSL 4.0.0
The wolfSSL embedded SSL/TLS library is a lightweight SSL library written in ANSI standard C and targeted for embedded and RTOS environments - primarily because of its small size, speed, and feature set. It is commonly used in standard operating...
3.88 MB  
Libraries  -  EuGTK 4.8.9
Makes it easy to develop good- looking, fast, cross-platform programs that run on Linux, OS X, and Windows. Euphoria is a very fast interpreted/compiled language with straight-forward syntax. EuGTK allows programming in a clean, object-oriented...
10.68 MB  
Libraries  -  Linux User Group Library Manager 1.0
The LUG Library Manager is a project to help Linux User Groups start their own library. A LUG library is helpful to the community at large because it increases access to information, and gives everyone the opportunity to become more knowledgeable.
5.35 KB  
Libraries  -  Module::MakefilePL::Parse 0.12
Module::MakefilePL::Parse is a Perl module to parse required modules from Makefile.PL. SYNOPSIS use Module::MakefilePL::Parse; open $fh, Makefile.PL; $parser = Module::MakefilePL::Parse->new( join("", ) ); $info = $parser->required;...
8.19 KB  
Libraries  -  sqlpp 0.06
sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also...
10.24 KB