Bugzilla – Attachment 155553 Details for
Bug 34764
sip_cli_emulator -fa/--fee_acknowledge does not act as expected
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34764: Set fee_acknowledged to expect a string
Bug-34764-Set-feeacknowledged-to-expect-a-string.patch (text/plain), 4.74 KB, created by
Martin Renvoize (ashimema)
on 2023-09-12 14:33:11 UTC
(
hide
)
Description:
Bug 34764: Set fee_acknowledged to expect a string
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2023-09-12 14:33:11 UTC
Size:
4.74 KB
patch
obsolete
>From 6c55705273a630439e3502a581619004b35522b7 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Tue, 12 Sep 2023 14:18:37 +0100 >Subject: [PATCH] Bug 34764: Set fee_acknowledged to expect a string > >For consistency with other options I opted to have the fee acknowledged >parameter to expect a string and as it's an optional parameter I've >dropped the default value of 'N' too. > >Test plan >1) Prior to this patch >1a) Attempt a checkout without passing -fa/--fee_acknowledged flag > `./misc/sip_cli_emulator.pl -a localhost -p 6001 -su term1 -sp term1 -l CPL --patron 23529000035676 --item 39999000007756` > The final field of the SIP request will be '|BON', the default >1b) Attempt a checkout passing -fa/--fee_acknowledged flag > `./misc/sip_cli_emulator.pl -a localhost -p 6001 -su term1 -sp term1 -l CPL --fee-acknowledged --patron 23529000035676 --item 39999000007756` > The final field of the SIP request will still be '|BON', failure >1c) Attempt a checkout passing a string for fee_acknoewledeged flag > `./misc/sip_cli_emulator.pl -a localhost -p 6001 -su term1 -sp term1 -l CPL --fee-acknowledged Y --patron 23529000035676 --item 39999000007756` > The final field of the SIP request will still be '|BON', failure >2) Apply the patch >2a) Attempt a checkout without passing -fa/--fee_acknowledged flag > `./misc/sip_cli_emulator.pl -a localhost -p 6001 -su term1 -sp term1 -l CPL --patron 23529000035676 --item 39999000007756` > The optional `|BO` element should not be present >2b) Attempt a checkout passing -fa/--fee_acknowledged flag > `./misc/sip_cli_emulator.pl -a localhost -p 6001 -su term1 -sp term1 -l CPL --fee-acknowledged N --patron 23529000035676 --item 39999000007756` > The final field of the SIP request will now be '|BON', success >2c) Attempt a checkout passing a string for fee_acknoewledeged flag > `./misc/sip_cli_emulator.pl -a localhost -p 6001 -su term1 -sp term1 -l CPL --fee-acknowledged Y --patron 23529000035676 --item 39999000007756` > The final field of the SIP request will now be '|BOY', success >--- > misc/sip_cli_emulator.pl | 14 ++++++-------- > 1 file changed, 6 insertions(+), 8 deletions(-) > >diff --git a/misc/sip_cli_emulator.pl b/misc/sip_cli_emulator.pl >index 60bba2013a..dbb56537fe 100755 >--- a/misc/sip_cli_emulator.pl >+++ b/misc/sip_cli_emulator.pl >@@ -44,7 +44,7 @@ my $summary; > > my $item_identifier; > >-my $fee_acknowledged = 0; >+my $fee_acknowledged; > > my $fee_type; > my $payment_type; >@@ -72,7 +72,7 @@ GetOptions( > > "i|item=s" => \$item_identifier, > >- "fa|fee-acknowledged" => \$fee_acknowledged, >+ "fa|fee-acknowledged=s" => \$fee_acknowledged, > > "s|summary=s" => \$summary, > >@@ -449,12 +449,11 @@ sub build_checkout_command_message { > my $terminal_password = $params->{terminal_password}; > my $item_properties = $params->{item_properties}; > my $patron_password = $params->{patron_password}; >- my $fee_acknowledged = $params->{fee_acknowledged} || 'N'; >+ my $fee_acknowledged = $params->{fee_acknowledged}; > my $cancel = $params->{cancel} || 'N'; > > $SC_renewal_policy = $SC_renewal_policy eq 'Y' ? 'Y' : 'N'; > $no_block = $no_block eq 'Y' ? 'Y' : 'N'; >- $fee_acknowledged = $fee_acknowledged eq 'Y' ? 'Y' : 'N'; > $cancel = $cancel eq 'Y' ? 'Y' : 'N'; > > $nb_due_date ||= $transaction_date; >@@ -520,7 +519,7 @@ sub build_hold_command_message { > my $item_identifier = $params->{item_identifier}; > my $title_identifier = $params->{title_identifier}; > my $terminal_password = $params->{terminal_password}; >- my $fee_acknowledged = $params->{fee_acknowledged} || 'N'; >+ my $fee_acknowledged = $params->{fee_acknowledged}; > > return > HOLD >@@ -552,11 +551,10 @@ sub build_renew_command_message { > my $title_identifier = $params->{title_identifier}; > my $terminal_password = $params->{terminal_password}; > my $item_properties = $params->{item_properties}; >- my $fee_acknowledged = $params->{fee_acknowledged} || 'N'; >+ my $fee_acknowledged = $params->{fee_acknowledged}; > > $third_party_allowed = $third_party_allowed eq 'Y' ? 'Y' : 'N'; > $no_block = $no_block eq 'Y' ? 'Y' : 'N'; >- $fee_acknowledged = $fee_acknowledged eq 'Y' ? 'Y' : 'N'; > > $nb_due_date ||= $transaction_date; > >@@ -647,7 +645,7 @@ Options: > -t --terminator SIP2 message terminator, either CR, or CRLF > (defaults to CRLF) > >- -fa --fee-acknowledged Sends a confirmation of checkout fee >+ -fa --fee-acknowledged Accepts "Y" to acknowledge a fee, "N" to not acknowledge it > > --fee-type Fee type for Fee Paid message, defaults to '01' > --payment-type Payment type for Fee Paid message, default to '00' >-- >2.41.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 34764
:
155553
|
155578
|
155597