Summary: | UT: C4::Bookseller.pm needs unit tests | ||
---|---|---|---|
Product: | Koha | Reporter: | kenza <kenza.zaki> |
Component: | Test Suite | Assignee: | kenza <kenza.zaki> |
Status: | CLOSED FIXED | QA Contact: | |
Severity: | normal | ||
Priority: | P5 - low | CC: | bgkriegel, gmcharlt, jonathan.druart, kenza.zaki, srdjan, tomascohen |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | Small patch |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Bug Depends on: | 10556, 10557 | ||
Bug Blocks: | 10630, 10640, 10641 | ||
Attachments: |
Bug 10528: C4::Booksellers needs unit tests
Bug 10528: C4::Booksellers needs unit tests Bug 10528: C4::Booksellers needs unit tests [SIGNED-OFF] Bug 10528: C4::Booksellers needs unit tests [PASSED QA] Bug 10528: C4::Booksellers needs unit tests C4::Bookseller.pm need unit tests [SIGNED-OFF] C4::Bookseller.pm need unit tests [PASSED QA] C4::Bookseller.pm need unit tests |
Description
kenza
2013-07-02 12:54:28 UTC
Created attachment 19566 [details] [review] Bug 10528: C4::Booksellers needs unit tests Unit tests are wrap in a database transaction. GetBooksellerWithLateOrders has been modify in order to pass the tests. Now it considers the field $estimateddeliverydateto and it replaces it by now() only if it is undef. More it doesn't test if $aqbookseller.deliverytime is not Null anymore but if $deliverytime = null or undef, it replaces it by 0. It also verifies if $delay is >= 0. ModBookseller has been modify in order to be more explicit: before it always returned undef. Now it returns : 1 -> If a modification has been done 0E0 -> If the given id doesn't exist undef -> If no id given DelBookSeller has been modify in order to be more explicit: Before it returned undef, now it returns $sth->execute($id), so we can verify how many bookSellers have been deleted. Test Plan : prove t/db_dependant/Booksellers.t t/db_dependent/Bookseller.t .. 2/67 [Some warnings about uninitialized values] WARNING: GetBooksellerWithLateOrders is called with a negative value at /home/kenza/workspace/kohaclone/C4/Bookseller.pm line 137. t/db_dependent/Bookseller.t .. ok All tests successful. Files=1, Tests=67, 1 wallclock secs ( 0.03 usr 0.00 sys + 0.43 cusr 0.03 csys = 0.49 CPU) Result: PASS There's something wrong with the patch: git am --reject ~/Bug-10528-C4Booksellers-needs-unit-tests.patch Applying: Bug 10528: C4::Booksellers needs unit tests Checking patch C4/Bookseller.pm... error: while searching for: sub ModBookseller { my ($data) = @_; my $dbh = C4::Context->dbh; my $query = q| UPDATE aqbooksellers SET name = ?, address1 = ?, address2 = ?, address3 = ?, address4 = ?, error: patch failed: C4/Bookseller.pm:226 error: while searching for: ,$data->{notes} ,$data->{deliverytime} ,$data->{id} ); return; } =head2 DelBookseller error: patch failed: C4/Bookseller.pm:254 Checking patch t/db_dependent/Bookseller.t... /home/srdjan/koha/dev/.git/rebase-apply/patch:786: new blank line at EOF. + (In reply to Srdjan Jankovic from comment #2) > There's something wrong with the patch: Did you applied dependent patches? Yes. 10556 should not be applied any more I guess, it has been pushed to master. Created attachment 19713 [details] [review] Bug 10528: C4::Booksellers needs unit tests Unit tests are wrap in a database transaction. GetBooksellerWithLateOrders has been modify in order to pass the tests. Now it considers the field $estimateddeliverydateto and it replaces it by now() only if it is undef. More it doesn't test if $aqbookseller.deliverytime is not Null anymore but if $deliverytime = null or undef, it replaces it by 0. It also verifies if $delay is >= 0. ModBookseller has been modify in order to be more explicit: before it always returned undef. Now it returns : 1 -> If a modification has been done 0E0 -> If the given id doesn't exist undef -> If no id given DelBookSeller has been modify in order to be more explicit: Before it returned undef, now it returns $sth->execute($id), so we can verify how many bookSellers have been deleted. Test Plan : prove t/db_dependant/Booksellers.t t/db_dependent/Bookseller.t .. 2/67 [Some warnings about uninitialized values] WARNING: GetBooksellerWithLateOrders is called with a negative value at /home/kenza/workspace/kohaclone/C4/Bookseller.pm line 137. t/db_dependent/Bookseller.t .. ok All tests successful. Files=1, Tests=67, 1 wallclock secs ( 0.03 usr 0.00 sys + 0.43 cusr 0.03 csys = 0.49 CPU) Result: PASS prove t/db_dependent/Bookseller.t t/db_dependent/Bookseller.t .. 1/67 # Failed test 'Returns right fields of Supplier1 and Supllier2' # at t/db_dependent/Bookseller.t line 128. # Structures begin differing at: # $got->[0]{listincgst} = '0' # $expected->[0]{listincgst} = '1' Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 988. Use of uninitialized value $pattern in numeric eq (==) at C4/Serials.pm line 991. Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 1000. Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 1003. Use of uninitialized value $serialseq in string at C4/Serials.pm line 1391. Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 988. Use of uninitialized value $pattern in numeric eq (==) at C4/Serials.pm line 991. Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 1000. Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 1003. Use of uninitialized value $serialseq in string at C4/Serials.pm line 1391. Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 988. Use of uninitialized value $pattern in numeric eq (==) at C4/Serials.pm line 991. Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 1000. Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 1003. Use of uninitialized value $serialseq in string at C4/Serials.pm line 1391. WARNING: GetBooksellerWithLateOrders is called with a negative value at C4/Bookseller.pm line 137. # Looks like you failed 1 test of 67. Do I need 10337 for this one too? Created attachment 19756 [details] [review] Bug 10528: C4::Booksellers needs unit tests Unit tests are wrap in a database transaction. GetBooksellerWithLateOrders has been modify in order to pass the tests. Now it considers the field $estimateddeliverydateto and it replaces it by now() only if it is undef. More it doesn't test if $aqbookseller.deliverytime is not Null anymore but if $deliverytime = null or undef, it replaces it by 0. It also verifies if $delay is >= 0. ModBookseller has been modify in order to be more explicit: before it always returned undef. Now it returns : 1 -> If a modification has been done 0E0 -> If the given id doesn't exist undef -> If no id given DelBookSeller has been modify in order to be more explicit: Before it returned undef, now it returns $sth->execute($id), so we can verify how many bookSellers have been deleted. Test Plan : prove t/db_dependant/Booksellers.t t/db_dependent/Bookseller.t .. 2/67 [Some warnings about uninitialized values] WARNING: GetBooksellerWithLateOrders is called with a negative value at /home/kenza/workspace/kohaclone/C4/Bookseller.pm line 137. t/db_dependent/Bookseller.t .. ok All tests successful. Files=1, Tests=67, 1 wallclock secs ( 0.03 usr 0.00 sys + 0.43 cusr 0.03 csys = 0.49 CPU) Result: PASS t/db_dependent/Bookseller.t has been modify. Now, it deletes all the booksellers of the database at the beginning of the transaction in order to be sure the tests pass. Created attachment 19782 [details] [review] [SIGNED-OFF] Bug 10528: C4::Booksellers needs unit tests Unit tests are wrap in a database transaction. GetBooksellerWithLateOrders has been modify in order to pass the tests. Now it considers the field $estimateddeliverydateto and it replaces it by now() only if it is undef. More it doesn't test if $aqbookseller.deliverytime is not Null anymore but if $deliverytime = null or undef, it replaces it by 0. It also verifies if $delay is >= 0. ModBookseller has been modify in order to be more explicit: before it always returned undef. Now it returns : 1 -> If a modification has been done 0E0 -> If the given id doesn't exist undef -> If no id given DelBookSeller has been modify in order to be more explicit: Before it returned undef, now it returns $sth->execute($id), so we can verify how many bookSellers have been deleted. Test Plan : prove t/db_dependant/Booksellers.t t/db_dependent/Bookseller.t .. 2/67 [Some warnings about uninitialized values] WARNING: GetBooksellerWithLateOrders is called with a negative value at /home/kenza/workspace/kohaclone/C4/Bookseller.pm line 137. t/db_dependent/Bookseller.t .. ok All tests successful. Files=1, Tests=67, 1 wallclock secs ( 0.03 usr 0.00 sys + 0.43 cusr 0.03 csys = 0.49 CPU) Result: PASS Signed-off-by: Srdjan <srdjan@catalyst.net.nz> Created attachment 19855 [details] [review] [PASSED QA] Bug 10528: C4::Booksellers needs unit tests Unit tests are wrap in a database transaction. GetBooksellerWithLateOrders has been modify in order to pass the tests. Now it considers the field $estimateddeliverydateto and it replaces it by now() only if it is undef. More it doesn't test if $aqbookseller.deliverytime is not Null anymore but if $deliverytime = null or undef, it replaces it by 0. It also verifies if $delay is >= 0. ModBookseller has been modify in order to be more explicit: before it always returned undef. Now it returns : 1 -> If a modification has been done 0E0 -> If the given id doesn't exist undef -> If no id given DelBookSeller has been modify in order to be more explicit: Before it returned undef, now it returns $sth->execute($id), so we can verify how many bookSellers have been deleted. Test Plan : prove t/db_dependant/Booksellers.t t/db_dependent/Bookseller.t .. 2/67 [Some warnings about uninitialized values] WARNING: GetBooksellerWithLateOrders is called with a negative value at /home/kenza/workspace/kohaclone/C4/Bookseller.pm line 137. t/db_dependent/Bookseller.t .. ok All tests successful. Files=1, Tests=67, 1 wallclock secs ( 0.03 usr 0.00 sys + 0.43 cusr 0.03 csys = 0.49 CPU) Result: PASS Signed-off-by: Srdjan <srdjan@catalyst.net.nz> Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Works nicely, when patch for 10557 is also applied. I have reservations about this patch. Adding more unit tests is a good thing, obviously, and the proposed changes to functions in C4::Booksellers may be good things. However, they don't belong squashed together in a single patch, particularly since the patch description provides no test plan for the staff interfaces -- and if you change core routines, there ought to be such a test plan included in the patch, even if the only thing it does is identify the interfaces whose visible behavior is not changed. Please break it up, for example like this: [1] A patch for this bug that *only* adds additional unit tests. [2] An additional bug for each change you propose to routines in C4::Booksellers, along with any changes to the test script. (In reply to Galen Charlton from comment #11) > I have reservations about this patch. Adding more unit tests is a good > thing, obviously, and the proposed changes to functions in C4::Booksellers > may be good things. However, they don't belong squashed together in a > single patch, particularly since the patch description provides no test plan > for the staff interfaces -- and if you change core routines, there ought to > be such a test plan included in the patch, even if the only thing it does is > identify the interfaces whose visible behavior is not changed. > > Please break it up, for example like this: > > [1] A patch for this bug that *only* adds additional unit tests. > [2] An additional bug for each change you propose to routines in > C4::Booksellers, along with any changes to the test script. Ok I will do that. Thanks for the advices. Created attachment 19874 [details] [review] C4::Bookseller.pm need unit tests The tests are wrap in a transaction. NOTE: some tests should pass but doesn't because of incoherences in the code. These tests are in comments and preceded by FIXME Test plan: prove t/db_dependent/Bookseller.t t/db_dependent/Bookseller.t .. 15/53 [Some warnings about uninitialised values] t/db_dependent/Bookseller.t .. ok All tests successful. Files=1, Tests=53, 1 wallclock secs ( 0.02 usr 0.00 sys + 0.46 cusr 0.03 csys = 0.51 CPU) Result: PASS This won't work. Since the first patch is PASSED QA, I suggest the unit test patch is rebased to the first patch. (In reply to Srdjan Jankovic from comment #14) > This won't work. Since the first patch is PASSED QA, I suggest the unit test > patch is rebased to the first patch. But the first patch is FAILED QA... Ok, then it the first patch is FAILED QA, it should be replaced with something? (In reply to Srdjan Jankovic from comment #16) > Ok, then it the first patch is FAILED QA, it should be replaced with > something? Yes, by the last patch. I put the first on as obsolete. Now it should work... Tests passed, however I got Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 988. Use of uninitialized value $pattern in numeric eq (==) at C4/Serials.pm line 991. Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 1000. Use of uninitialized value $calculated in substitution (s///) at C4/Serials.pm line 1003. Use of uninitialized value $serialseq in string at C4/Serials.pm line 1391. Do I need any data from that infamous patch? (In reply to Srdjan Jankovic from comment #18) > Tests passed, however I got > Use of uninitialized value $calculated in substitution (s///) at > C4/Serials.pm line 988. > Use of uninitialized value $pattern in numeric eq (==) at C4/Serials.pm line > 991. > Use of uninitialized value $calculated in substitution (s///) at > C4/Serials.pm line 1000. > Use of uninitialized value $calculated in substitution (s///) at > C4/Serials.pm line 1003. > Use of uninitialized value $serialseq in string at C4/Serials.pm line 1391. > > Do I need any data from that infamous patch? No , these warnings are normal, the initialization of these values is useless for this patch. Created attachment 19953 [details] [review] [SIGNED-OFF] C4::Bookseller.pm need unit tests The tests are wrap in a transaction. NOTE: some tests should pass but doesn't because of incoherences in the code. These tests are in comments and preceded by FIXME Test plan: prove t/db_dependent/Bookseller.t t/db_dependent/Bookseller.t .. 15/53 [Some warnings about uninitialised values] t/db_dependent/Bookseller.t .. ok All tests successful. Files=1, Tests=53, 1 wallclock secs ( 0.02 usr 0.00 sys + 0.46 cusr 0.03 csys = 0.51 CPU) Result: PASS http://bugs.koha-community.org/show_bug.cgi?id=10528 Signed-off-by: Srdjan <srdjan@catalyst.net.nz> All the tests pass nicely, but there are a lot of warnings when you run the test with prove: Use of uninitialized value $calculated in substitution (s///) at /home/katrin/kohaclone/C4/Serials.pm line 985. Use of uninitialized value $pattern in numeric eq (==) at /home/katrin/kohaclone/C4/Serials.pm line 988. Maybe something for another bug? :) Created attachment 20585 [details] [review] [PASSED QA] C4::Bookseller.pm need unit tests The tests are wrap in a transaction. NOTE: some tests should pass but doesn't because of incoherences in the code. These tests are in comments and preceded by FIXME Test plan: prove t/db_dependent/Bookseller.t t/db_dependent/Bookseller.t .. 15/53 [Some warnings about uninitialised values] t/db_dependent/Bookseller.t .. ok All tests successful. Files=1, Tests=53, 1 wallclock secs ( 0.02 usr 0.00 sys + 0.46 cusr 0.03 csys = 0.51 CPU) Result: PASS http://bugs.koha-community.org/show_bug.cgi?id=10528 Signed-off-by: Srdjan <srdjan@catalyst.net.nz> Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> The new tests pass nicely, as do all old tests and the QA script. All patches marked as dependencies have been pushed to master already. Pushed to master. Thanks, Kenza! This patch has been pushed to 3.12.x, will be in 3.12.5. Thanks Kenza! Pushed to 3.10.x, will be in 3.10.12 |