[Bug 34339] New: $c->validation should be avoided (part 2)
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Bug ID: 34339 Summary: $c->validation should be avoided (part 2) Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: REST API Assignee: koha-bugs@lists.koha-community.org Reporter: jonathan.druart+koha@gmail.com CC: tomascohen@gmail.com Depends on: 33556 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33556 [Bug 33556] $c->validation should be avoided (part 1) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #1 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- Created attachment 153786 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=153786&action=edit Bug 34339: (bug 33556 follow-up) Easy ERM-related changes I left the (easy) ERM cases out because it throws this when running the QA script: Processing files before patches |========================>| 51 / 51 (100.00%) An error occurred : Inconsistent hierarchy during C3 merge of class 'Koha::REST::V1::ERM::EHoldings::Titles::Local': current merge results [ Koha::REST::V1::ERM::EHoldings::Titles::Local, ] merging failed on 'Mojolicious::Controller' at /kohadevbox/qa-test-tools/koha-qa.pl line 112. and didn't want this to pollute the rest of the changes. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #2 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- The error can easily be recreated redoing what does the QA script my @files = qw( Koha/REST/V1/ERM/Agreements.pm Koha/REST/V1/ERM/EHoldings/Titles/Local.pm Koha/REST/V1/ERM/EHoldings/Packages.pm Koha/REST/V1/ERM/Licenses.pm Koha/REST/V1/ERM/EHoldings/Titles/EBSCO.pm Koha/REST/V1/ERM/EHoldings/Packages/Local.pm ); for my $file (@files) { next if $file !~ m|\.pm$|; my $module = $file; delete $INC{$module}; $module =~ s|/|::|g; $module =~ s|\.pm$||; eval "require $module"; $module->import; } This appears before and after the patch. Should not be blocker. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #3 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- I have opened https://gitlab.com/koha-community/qa-test-tools/-/issues/72 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Jonathan Druart <jonathan.druart+koha@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #4 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- Created attachment 153796 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=153796&action=edit Bug 34339: Avoid relying on $c->validation - ERM -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Jonathan Druart <jonathan.druart+koha@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs@lists.koha-commun |jonathan.druart+koha@gmail. |ity.org |com Severity|enhancement |normal --- Comment #5 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- Test plan: All EBSCO related actions must be tested in the eRM module. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy@rijksmuseum.nl --- Comment #6 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> ---
From 33556:
(In reply to Tomás Cohen Arazi from comment #21)
(In reply to Marcel de Rooy from comment #20)
Please clarify
I can't, and won't. It is an underlying problem with the modules design, which the author(s) should address. My feeling is it is related to this:
use Mojo::Base 'Mojolicious::Controller';
use Koha::ERM::EHoldings::Titles;
Just comparing Biblios with ERM/Agreements here: === REST/V1/Biblios use Modern::Perl; use Mojo::Base 'Mojolicious::Controller'; use Koha::Biblios; use Koha::DateUtils; use Koha::Ratings; use Koha::RecordProcessor; use C4::Biblio qw( DelBiblio AddBiblio ModBiblio ); use C4::Search qw( FindDuplicate ); use C4::Barcodes::ValueBuilder; use C4::Context; use Koha::Items; use List::MoreUtils qw( any ); use MARC::Record::MiJ; use Try::Tiny qw( catch try ); === REST/V1/ERM/Agreements use Modern::Perl; use Mojo::Base 'Mojolicious::Controller'; use Koha::ERM::Agreements; use Scalar::Util qw( blessed ); use Try::Tiny qw( catch try ); I do not really see a difference here. Can anyone help me why ERM/Agreements is doing something different? -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #7 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- To provide a bit more context, the "Inconsistent hierarchy during C3 merge of class" error refers to method resolution order / C3 algorithm and might be caused by e.g. 'use parent' that adds a class twice in @ISA. I did not see parent here, but base. So should be fine? But looking at Mojo/Base, I do see some mangling of @ISA in there. At perlmonks someone suggested to clear @ISA at some point. Not sure how to proceed.. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #8 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- (In reply to Marcel de Rooy from comment #7)
To provide a bit more context, the "Inconsistent hierarchy during C3 merge of class" error refers to method resolution order / C3 algorithm and might be caused by e.g. 'use parent' that adds a class twice in @ISA. I did not see parent here, but base. So should be fine? But looking at Mojo/Base, I do see some mangling of @ISA in there. At perlmonks someone suggested to clear @ISA at some point. Not sure how to proceed..
It's not failing on Koha/REST/V1/ERM/Agreements.pm but the packages or titles packages. The error appears with only Koha/REST/V1/ERM/EHoldings/Packages.pm Koha/REST/V1/ERM/EHoldings/Packages/Local.pm Koha/REST/V1/ERM/EHoldings/Packages.pm use Mojo::Base 'Mojolicious::Controller'; use Koha::REST::V1::ERM::EHoldings::Packages::Local; use Koha::REST::V1::ERM::EHoldings::Packages::EBSCO; Koha/REST/V1/ERM/EHoldings/Packages/Local.pm use Mojo::Base 'Mojolicious::Controller'; -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #9 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- But really, this is for another bug, it's not related to this patch. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Bug 34339 depends on bug 33556, which changed state. Bug 33556 Summary: $c->validation should be avoided (part 1) https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33556 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Jonathan Druart <jonathan.druart+koha@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pedro.amorim@ptfs-europe.co | |m -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #153786|0 |1 is obsolete| | Attachment #153796|0 |1 is obsolete| | --- Comment #10 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 155340 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=155340&action=edit Bug 34339: (bug 33556 follow-up) Easy ERM-related changes I left the (easy) ERM cases out because it throws this when running the QA script: Processing files before patches |========================>| 51 / 51 (100.00%) An error occurred : Inconsistent hierarchy during C3 merge of class 'Koha::REST::V1::ERM::EHoldings::Titles::Local': current merge results [ Koha::REST::V1::ERM::EHoldings::Titles::Local, ] merging failed on 'Mojolicious::Controller' at /kohadevbox/qa-test-tools/koha-qa.pl line 112. and didn't want this to pollute the rest of the changes. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #11 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 155341 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=155341&action=edit Bug 34339: Avoid relying on $c->validation - ERM Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #155340|0 |1 is obsolete| | --- Comment #12 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 155351 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=155351&action=edit Bug 34339: (bug 33556 follow-up) Easy ERM-related changes I left the (easy) ERM cases out because it throws this when running the QA script: Processing files before patches |========================>| 51 / 51 (100.00%) An error occurred : Inconsistent hierarchy during C3 merge of class 'Koha::REST::V1::ERM::EHoldings::Titles::Local': current merge results [ Koha::REST::V1::ERM::EHoldings::Titles::Local, ] merging failed on 'Mojolicious::Controller' at /kohadevbox/qa-test-tools/koha-qa.pl line 112. and didn't want this to pollute the rest of the changes. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #155341|0 |1 is obsolete| | --- Comment #13 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 155352 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=155352&action=edit Bug 34339: Avoid relying on $c->validation - ERM Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #14 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 155353 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=155353&action=edit Bug 34339: (QA follow-up) Replace new by search in Licenses Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |m.de.rooy@rijksmuseum.nl -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #15 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- WARN Koha/REST/V1/ERM/EHoldings/Packages/EBSCO.pm WARN tidiness The file is less tidy than before (bad/messy lines before: 25, now: 27) WARN Koha/REST/V1/ERM/EHoldings/Resources/EBSCO.pm WARN tidiness The file is less tidy than before (bad/messy lines before: 54, now: 56) WARN Koha/REST/V1/ERM/EHoldings/Titles/EBSCO.pm WARN tidiness The file is less tidy than before (bad/messy lines before: 21, now: 24) => Just warnings. No reason to block pushing imo. Corrected Koha/REST/V1/ERM/Licenses.pm - my $license = $c->objects->find( Koha::ERM::Licenses->search, $license_id ); + my $license = $c->objects->find( Koha::ERM::Licenses->new, $c->param('license_id') ); prove t/db_dependent/api/v1/erm* t/db_dependent/api/v1/erm_agreements.t ........... ok t/db_dependent/api/v1/erm_documents.t ............ ok t/db_dependent/api/v1/erm_eholdings_packages.t ... ok t/db_dependent/api/v1/erm_eholdings_resources.t .. ok t/db_dependent/api/v1/erm_eholdings_titles.t ..... ok t/db_dependent/api/v1/erm_licenses.t ............. ok t/db_dependent/api/v1/erm_users.t ................ ok All tests successful. Files=7, Tests=24, 78 wallclock secs ( 0.15 usr 0.05 sys + 68.57 cusr 5.75 csys = 74.52 CPU) Result: PASS -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #16 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Any further idea/knowledge about: Processing files before patches Error happened when reloading the module Koha::REST::V1::ERM::EHoldings::Packages::EBSCO between the two steps. Might not be a blocker for QA: Inconsistent hierarchy during C3 merge of class 'Koha::REST::V1::ERM::EHoldings::Packages::EBSCO': current merge results [ Koha::REST::V1::ERM::EHoldings::Packages::EBSCO, ] merging failed on 'Mojolicious::Controller' at /app/qatools/koha-qa.pl line 114. Error happened when reloading the module Koha::REST::V1::ERM::EHoldings::Resources::EBSCO between the two steps. Might not be a blocker for QA: Inconsistent hierarchy during C3 merge of class 'Koha::REST::V1::ERM::EHoldings::Resources::EBSCO': current merge results [ Koha::REST::V1::ERM::EHoldings::Resources::EBSCO, ] merging failed on 'Mojolicious::Controller' at /app/qatools/koha-qa.pl line 114. Error happened when reloading the module Koha::REST::V1::ERM::EHoldings::Packages::Local between the two steps. Might not be a blocker for QA: Inconsistent hierarchy during C3 merge of class 'Koha::REST::V1::ERM::EHoldings::Packages::Local': current merge results [ Koha::REST::V1::ERM::EHoldings::Packages::Local, ] merging failed on 'Mojolicious::Controller' at /app/qatools/koha-qa.pl line 114. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |23.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 --- Comment #17 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Pushed to master for 23.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Fridolin Somers <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers@biblibre.co | |m Version(s)|23.11.00 |23.11.00,23.05.04 released in| | --- Comment #18 from Fridolin Somers <fridolin.somers@biblibre.com> --- Pushed to 23.05.x for 23.05.04 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34339 Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED CC| |matt.blenkinsop@ptfs-europe | |.com Resolution|--- |FIXED --- Comment #19 from Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> --- Dependency missing for 22.11.x - not backporting Nice work everyone! -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org