From 5828b6d4e3512ba5f3e1d85099e20c3a5a344a14 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Fri, 24 Jan 2025 15:58:43 +0000 Subject: [PATCH] Bug 38528: (QA follow-up) Add tests for set_additional_fields with marcfield_mode = 'get' Signed-off-by: Pedro Amorim Signed-off-by: Jonathan Druart --- .../Koha/Object/Mixin/AdditionalFields.t | 26 ++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/Object/Mixin/AdditionalFields.t b/t/db_dependent/Koha/Object/Mixin/AdditionalFields.t index 8026032307c..c969c42599f 100755 --- a/t/db_dependent/Koha/Object/Mixin/AdditionalFields.t +++ b/t/db_dependent/Koha/Object/Mixin/AdditionalFields.t @@ -16,7 +16,7 @@ my $builder = t::lib::TestBuilder->new; my $schema = Koha::Database->schema; subtest 'set_additional_fields with marcfield_mode = "get"' => sub { - plan tests => 1; + plan tests => 2; $schema->txn_begin; @@ -53,6 +53,30 @@ subtest 'set_additional_fields with marcfield_mode = "get"' => sub { is($values->[0]->value, 'some value', 'value was copied from the biblio record to the field'); + $field->delete; + my $get_marcfield_field = Koha::AdditionalField->new( + { + tablename => 'subscription', + name => random_string( 'c' x 100 ), + marcfield => '998$Z', + marcfield_mode => 'get', + } + ); + $get_marcfield_field->store()->discard_changes(); + my $q = CGI->new; + $q->param( + -name => 'additional_field_' . $get_marcfield_field->id, + -value => '', + ); + + my @additional_fields = + Koha::Object::Mixin::AdditionalFields->prepare_cgi_additional_field_values( $q, 'subscription' ); + $subscription->set_additional_fields( \@additional_fields ); + + $values = $subscription->additional_field_values()->as_list(); + + is( $values->[0]->value, 'some value', 'value was copied from the biblio record to the field' ); + $schema->txn_rollback; }; -- 2.34.1