Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PM-7452] Resolve PayPal issue #4855

Closed
wants to merge 7 commits into from
Closed
12 changes: 10 additions & 2 deletions src/Billing/Services/Implementations/InvoiceCreatedHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@
}
catch (Exception exception)
{
logger.LogError(exception, "Failed to attempt paying for invoice while handling 'invoice.created' event ({EventID})", parsedEvent.Id);
logger.LogError(exception, "Failed to attempt paying for invoice while handling 'invoice.created' event ({EventID}) | Message: {Message}",
parsedEvent.Id,
exception.Message);

Check warning on line 54 in src/Billing/Services/Implementations/InvoiceCreatedHandler.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/InvoiceCreatedHandler.cs#L52-L54

Added lines #L52 - L54 were not covered by tests

throw;

Check warning on line 56 in src/Billing/Services/Implementations/InvoiceCreatedHandler.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/InvoiceCreatedHandler.cs#L56

Added line #L56 was not covered by tests
}

try
Expand All @@ -58,7 +62,11 @@
}
catch (Exception exception)
{
logger.LogError(exception, "Failed to record provider invoice line items while handling 'invoice.created' event ({EventID})", parsedEvent.Id);
logger.LogError(exception, "Failed to record provider invoice line items while handling 'invoice.created' event ({EventID}) | Message: {Message}",
parsedEvent.Id,
exception.Message);

Check warning on line 67 in src/Billing/Services/Implementations/InvoiceCreatedHandler.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/InvoiceCreatedHandler.cs#L65-L67

Added lines #L65 - L67 were not covered by tests

throw;

Check warning on line 69 in src/Billing/Services/Implementations/InvoiceCreatedHandler.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/InvoiceCreatedHandler.cs#L69

Added line #L69 was not covered by tests
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,8 @@

private async Task<bool> AttemptToPayInvoiceWithBraintreeAsync(Invoice invoice, Customer customer)
{
LogBraintreeConfiguration();

Check warning on line 264 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L264

Added line #L264 was not covered by tests

_logger.LogDebug("Attempting to pay invoice with Braintree");
if (!customer?.Metadata?.ContainsKey("btCustomerId") ?? true)
{
Expand Down Expand Up @@ -404,4 +406,48 @@
throw;
}
}

private void LogBraintreeConfiguration()
{
var environment = System.Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT");

Check warning on line 412 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L411-L412

Added lines #L411 - L412 were not covered by tests

if (environment != "QA")
{
_logger.LogInformation("Braintree: Not logging for {Environment}", environment);
return;

Check warning on line 417 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L415-L417

Added lines #L415 - L417 were not covered by tests
}

var merchantId = _globalSettings.Braintree.MerchantId;

Check warning on line 420 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L420

Added line #L420 was not covered by tests

if (string.IsNullOrEmpty(merchantId))
{
_logger.LogWarning("Braintree Merchant ID: null or empty");
}

Check warning on line 425 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L423-L425

Added lines #L423 - L425 were not covered by tests
else
{
_logger.LogInformation("Braintree Merchant ID: {MerchantId}", merchantId[..5]);
}

Check warning on line 429 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L427-L429

Added lines #L427 - L429 were not covered by tests

var publicKey = _globalSettings.Braintree.PublicKey;

Check warning on line 431 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L431

Added line #L431 was not covered by tests

if (string.IsNullOrEmpty(publicKey))
{
_logger.LogWarning("Braintree Public Key: null or empty");
}

Check warning on line 436 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L434-L436

Added lines #L434 - L436 were not covered by tests
else
{
_logger.LogInformation("Braintree Public Key: {PublicKey}", publicKey[..5]);
}

Check warning on line 440 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L438-L440

Added lines #L438 - L440 were not covered by tests

var privateKey = _globalSettings.Braintree.PrivateKey;

Check warning on line 442 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L442

Added line #L442 was not covered by tests

if (string.IsNullOrEmpty(privateKey))
{
_logger.LogWarning("Braintree Private Key: null or empty");
}

Check warning on line 447 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L445-L447

Added lines #L445 - L447 were not covered by tests
else
{
_logger.LogInformation("Braintree Private Key: {PrivateKey}", privateKey[..5]);
}
}

Check warning on line 452 in src/Billing/Services/Implementations/StripeEventUtilityService.cs

View check run for this annotation

Codecov / codecov/patch

src/Billing/Services/Implementations/StripeEventUtilityService.cs#L449-L452

Added lines #L449 - L452 were not covered by tests
}
Loading