Koha/C4/SIP/t
Adrien Saurat 6f5eef782c Bug 9845: correct SIP 08checkin.t
The tests were too restrictive. It should be possible to pass
a checkin/checkout test with different values defined for
magnetic media.

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
2013-09-08 06:03:11 +00:00
..
000_sc_config_auth.t SIP/t - test files adapted, supplemented, expanded. Note: requires matching data to be loaded. 2008-06-05 22:43:24 -05:00
00sc_status.t SIP/t - test files adapted, supplemented, expanded. Note: requires matching data to be loaded. 2008-06-05 22:43:24 -05:00
01patron_status.t SIP/t - test files adapted, supplemented, expanded. Note: requires matching data to be loaded. 2008-06-05 22:43:24 -05:00
02patron_info.t SIP/t - test files adapted, supplemented, expanded. Note: requires matching data to be loaded. 2008-06-05 22:43:24 -05:00
03checkout.t bug 3435: SIP2 - 3M extension for SmartChute checkin. 2009-07-30 11:06:53 -04:00
04patron_status.t Bug 9838: fix on 04patron_status.t 2013-04-02 08:30:21 -04:00
05block_patron.t SIP/t - test files adapted, supplemented, expanded. Note: requires matching data to be loaded. 2008-06-05 22:43:24 -05:00
06patron_enable.t SIP/t - test files adapted, supplemented, expanded. Note: requires matching data to be loaded. 2008-06-05 22:43:24 -05:00
07hold.t bug 3435: SIP2 - 3M extension for SmartChute checkin. 2009-07-30 11:06:53 -04:00
08checkin.t Bug 9845: correct SIP 08checkin.t 2013-09-08 06:03:11 +00:00
09renew.t bug 3435: SIP2 - 3M extension for SmartChute checkin. 2009-07-30 11:06:53 -04:00
10renew_all.t bug 3435: SIP2 - 3M extension for SmartChute checkin. 2009-07-30 11:06:53 -04:00
11item_info.t SIP/t - test files adapted, supplemented, expanded. Note: requires matching data to be loaded. 2008-06-05 22:43:24 -05:00
Makefile SIP/t - test files adapted, supplemented, expanded. Note: requires matching data to be loaded. 2008-06-05 22:43:24 -05:00
README adding openncip / opensip SIP2 service 2007-11-06 06:32:53 -06:00
SIPtest.pm Bug 8216: Allow SIP modules to pass critic tests 2012-06-20 11:14:00 +02:00

CONFIGURING THE TEST SUITE

Before you can run the test suite, you need to configure certain
information about the SIP server and the ILS data in the file
SIPtest.pm.

RUNNING THE TESTS

Every file tests a different protocol transaction.
Unfortunately, a lot of test cases are missing, but the basics
are tested, as are most of the simple error conditions (invalid
users, unknown items, checking in item that's not checked out).

To run a single test, just run

   perl -I.. <file>

If the test fails, the output should be pretty clear about what
went wrong (assuming you can read raw SIP packets).

To run all the tests, just type

   make test

Right now, that will run tests for functionality that isn't
supported in the Evergreen environment (the two main cases are
enable patron and hold management).  To run just the Evergreen tests, use

       make test-openils

which will run just the tests

	00sc_status.t
	01patron_status.t
	02patron_info.t
	03checkout.t
	06patron_enable.t
	08checkin.t
	09renew.t
	11item_info.t
	05block_patron.t

NOTE: the Block Patron tests are run last because "Patron Enable"
isn't supported.  Thus, after running the "Block Patron" test,
manual intervention is required to unblock the test patron.

The Renew All tests will fail when running the stub "ILS"
implementation unless there's only one ILS server running.  This
won't be a problem for any real backend implementation that
properly manages the database of users and items.