1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Removed all usages of FluentAssertions (#5378)

This commit is contained in:
Conner Turnbull 2025-02-06 16:46:23 -05:00 committed by GitHub
parent 58d2a7ddaa
commit f8b65e0477
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 38 additions and 52 deletions

View File

@ -64,7 +64,6 @@
"Braintree", "Braintree",
"coverlet.collector", "coverlet.collector",
"CsvHelper", "CsvHelper",
"FluentAssertions",
"Kralizek.AutoFixture.Extensions.MockHttp", "Kralizek.AutoFixture.Extensions.MockHttp",
"Microsoft.AspNetCore.Mvc.Testing", "Microsoft.AspNetCore.Mvc.Testing",
"Microsoft.Extensions.Logging", "Microsoft.Extensions.Logging",

View File

@ -6,7 +6,6 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Divergic.Logging.Xunit" Version="4.3.0" /> <PackageReference Include="Divergic.Logging.Xunit" Version="4.3.0" />
<PackageReference Include="FluentAssertions" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" /> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" />
<PackageReference Include="RichardSzalay.MockHttp" Version="7.0.0" /> <PackageReference Include="RichardSzalay.MockHttp" Version="7.0.0" />
<PackageReference Include="xunit" Version="$(XUnitVersion)" /> <PackageReference Include="xunit" Version="$(XUnitVersion)" />

View File

@ -8,7 +8,6 @@ using Bit.Core.Enums;
using Bit.Core.Repositories; using Bit.Core.Repositories;
using Bit.Core.Services; using Bit.Core.Services;
using Divergic.Logging.Xunit; using Divergic.Logging.Xunit;
using FluentAssertions;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Infrastructure; using Microsoft.AspNetCore.Mvc.Infrastructure;
@ -577,14 +576,14 @@ public class PayPalControllerTests
{ {
var statusCodeActionResult = (IStatusCodeActionResult)result; var statusCodeActionResult = (IStatusCodeActionResult)result;
statusCodeActionResult.StatusCode.Should().Be(statusCode); Assert.Equal(statusCode, statusCodeActionResult.StatusCode);
} }
private static void Logged(ICacheLogger logger, LogLevel logLevel, string message) private static void Logged(ICacheLogger logger, LogLevel logLevel, string message)
{ {
logger.Last.Should().NotBeNull(); Assert.NotNull(logger.Last);
logger.Last!.LogLevel.Should().Be(logLevel); Assert.Equal(logLevel, logger.Last!.LogLevel);
logger.Last!.Message.Should().Be(message); Assert.Equal(message, logger.Last!.Message);
} }
private static void LoggedError(ICacheLogger logger, string message) private static void LoggedError(ICacheLogger logger, string message)

View File

@ -2,7 +2,6 @@
using Bit.Billing.Services.Implementations; using Bit.Billing.Services.Implementations;
using Bit.Billing.Test.Utilities; using Bit.Billing.Test.Utilities;
using Bit.Core.Settings; using Bit.Core.Settings;
using FluentAssertions;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using NSubstitute; using NSubstitute;
using Stripe; using Stripe;
@ -36,10 +35,8 @@ public class StripeEventServiceTests
var function = async () => await _stripeEventService.GetCharge(stripeEvent); var function = async () => await _stripeEventService.GetCharge(stripeEvent);
// Assert // Assert
await function var exception = await Assert.ThrowsAsync<Exception>(function);
.Should() Assert.Equal($"Stripe event with ID '{stripeEvent.Id}' does not have object matching type '{nameof(Charge)}'", exception.Message);
.ThrowAsync<Exception>()
.WithMessage($"Stripe event with ID '{stripeEvent.Id}' does not have object matching type '{nameof(Charge)}'");
await _stripeFacade.DidNotReceiveWithAnyArgs().GetCharge( await _stripeFacade.DidNotReceiveWithAnyArgs().GetCharge(
Arg.Any<string>(), Arg.Any<string>(),
@ -58,7 +55,7 @@ public class StripeEventServiceTests
var charge = await _stripeEventService.GetCharge(stripeEvent); var charge = await _stripeEventService.GetCharge(stripeEvent);
// Assert // Assert
charge.Should().BeEquivalentTo(stripeEvent.Data.Object as Charge); Assert.Equivalent(stripeEvent.Data.Object as Charge, charge, true);
await _stripeFacade.DidNotReceiveWithAnyArgs().GetCharge( await _stripeFacade.DidNotReceiveWithAnyArgs().GetCharge(
Arg.Any<string>(), Arg.Any<string>(),
@ -88,8 +85,8 @@ public class StripeEventServiceTests
var charge = await _stripeEventService.GetCharge(stripeEvent, true, expand); var charge = await _stripeEventService.GetCharge(stripeEvent, true, expand);
// Assert // Assert
charge.Should().Be(apiCharge); Assert.Equal(apiCharge, charge);
charge.Should().NotBeSameAs(eventCharge); Assert.NotSame(eventCharge, charge);
await _stripeFacade.Received().GetCharge( await _stripeFacade.Received().GetCharge(
apiCharge.Id, apiCharge.Id,
@ -110,10 +107,8 @@ public class StripeEventServiceTests
var function = async () => await _stripeEventService.GetCustomer(stripeEvent); var function = async () => await _stripeEventService.GetCustomer(stripeEvent);
// Assert // Assert
await function var exception = await Assert.ThrowsAsync<Exception>(function);
.Should() Assert.Equal($"Stripe event with ID '{stripeEvent.Id}' does not have object matching type '{nameof(Customer)}'", exception.Message);
.ThrowAsync<Exception>()
.WithMessage($"Stripe event with ID '{stripeEvent.Id}' does not have object matching type '{nameof(Customer)}'");
await _stripeFacade.DidNotReceiveWithAnyArgs().GetCustomer( await _stripeFacade.DidNotReceiveWithAnyArgs().GetCustomer(
Arg.Any<string>(), Arg.Any<string>(),
@ -132,7 +127,7 @@ public class StripeEventServiceTests
var customer = await _stripeEventService.GetCustomer(stripeEvent); var customer = await _stripeEventService.GetCustomer(stripeEvent);
// Assert // Assert
customer.Should().BeEquivalentTo(stripeEvent.Data.Object as Customer); Assert.Equivalent(stripeEvent.Data.Object as Customer, customer, true);
await _stripeFacade.DidNotReceiveWithAnyArgs().GetCustomer( await _stripeFacade.DidNotReceiveWithAnyArgs().GetCustomer(
Arg.Any<string>(), Arg.Any<string>(),
@ -162,8 +157,8 @@ public class StripeEventServiceTests
var customer = await _stripeEventService.GetCustomer(stripeEvent, true, expand); var customer = await _stripeEventService.GetCustomer(stripeEvent, true, expand);
// Assert // Assert
customer.Should().Be(apiCustomer); Assert.Equal(apiCustomer, customer);
customer.Should().NotBeSameAs(eventCustomer); Assert.NotSame(eventCustomer, customer);
await _stripeFacade.Received().GetCustomer( await _stripeFacade.Received().GetCustomer(
apiCustomer.Id, apiCustomer.Id,
@ -184,10 +179,8 @@ public class StripeEventServiceTests
var function = async () => await _stripeEventService.GetInvoice(stripeEvent); var function = async () => await _stripeEventService.GetInvoice(stripeEvent);
// Assert // Assert
await function var exception = await Assert.ThrowsAsync<Exception>(function);
.Should() Assert.Equal($"Stripe event with ID '{stripeEvent.Id}' does not have object matching type '{nameof(Invoice)}'", exception.Message);
.ThrowAsync<Exception>()
.WithMessage($"Stripe event with ID '{stripeEvent.Id}' does not have object matching type '{nameof(Invoice)}'");
await _stripeFacade.DidNotReceiveWithAnyArgs().GetInvoice( await _stripeFacade.DidNotReceiveWithAnyArgs().GetInvoice(
Arg.Any<string>(), Arg.Any<string>(),
@ -206,7 +199,7 @@ public class StripeEventServiceTests
var invoice = await _stripeEventService.GetInvoice(stripeEvent); var invoice = await _stripeEventService.GetInvoice(stripeEvent);
// Assert // Assert
invoice.Should().BeEquivalentTo(stripeEvent.Data.Object as Invoice); Assert.Equivalent(stripeEvent.Data.Object as Invoice, invoice, true);
await _stripeFacade.DidNotReceiveWithAnyArgs().GetInvoice( await _stripeFacade.DidNotReceiveWithAnyArgs().GetInvoice(
Arg.Any<string>(), Arg.Any<string>(),
@ -236,8 +229,8 @@ public class StripeEventServiceTests
var invoice = await _stripeEventService.GetInvoice(stripeEvent, true, expand); var invoice = await _stripeEventService.GetInvoice(stripeEvent, true, expand);
// Assert // Assert
invoice.Should().Be(apiInvoice); Assert.Equal(apiInvoice, invoice);
invoice.Should().NotBeSameAs(eventInvoice); Assert.NotSame(eventInvoice, invoice);
await _stripeFacade.Received().GetInvoice( await _stripeFacade.Received().GetInvoice(
apiInvoice.Id, apiInvoice.Id,
@ -258,10 +251,8 @@ public class StripeEventServiceTests
var function = async () => await _stripeEventService.GetPaymentMethod(stripeEvent); var function = async () => await _stripeEventService.GetPaymentMethod(stripeEvent);
// Assert // Assert
await function var exception = await Assert.ThrowsAsync<Exception>(function);
.Should() Assert.Equal($"Stripe event with ID '{stripeEvent.Id}' does not have object matching type '{nameof(PaymentMethod)}'", exception.Message);
.ThrowAsync<Exception>()
.WithMessage($"Stripe event with ID '{stripeEvent.Id}' does not have object matching type '{nameof(PaymentMethod)}'");
await _stripeFacade.DidNotReceiveWithAnyArgs().GetPaymentMethod( await _stripeFacade.DidNotReceiveWithAnyArgs().GetPaymentMethod(
Arg.Any<string>(), Arg.Any<string>(),
@ -280,7 +271,7 @@ public class StripeEventServiceTests
var paymentMethod = await _stripeEventService.GetPaymentMethod(stripeEvent); var paymentMethod = await _stripeEventService.GetPaymentMethod(stripeEvent);
// Assert // Assert
paymentMethod.Should().BeEquivalentTo(stripeEvent.Data.Object as PaymentMethod); Assert.Equivalent(stripeEvent.Data.Object as PaymentMethod, paymentMethod, true);
await _stripeFacade.DidNotReceiveWithAnyArgs().GetPaymentMethod( await _stripeFacade.DidNotReceiveWithAnyArgs().GetPaymentMethod(
Arg.Any<string>(), Arg.Any<string>(),
@ -310,8 +301,8 @@ public class StripeEventServiceTests
var paymentMethod = await _stripeEventService.GetPaymentMethod(stripeEvent, true, expand); var paymentMethod = await _stripeEventService.GetPaymentMethod(stripeEvent, true, expand);
// Assert // Assert
paymentMethod.Should().Be(apiPaymentMethod); Assert.Equal(apiPaymentMethod, paymentMethod);
paymentMethod.Should().NotBeSameAs(eventPaymentMethod); Assert.NotSame(eventPaymentMethod, paymentMethod);
await _stripeFacade.Received().GetPaymentMethod( await _stripeFacade.Received().GetPaymentMethod(
apiPaymentMethod.Id, apiPaymentMethod.Id,
@ -332,10 +323,8 @@ public class StripeEventServiceTests
var function = async () => await _stripeEventService.GetSubscription(stripeEvent); var function = async () => await _stripeEventService.GetSubscription(stripeEvent);
// Assert // Assert
await function var exception = await Assert.ThrowsAsync<Exception>(function);
.Should() Assert.Equal($"Stripe event with ID '{stripeEvent.Id}' does not have object matching type '{nameof(Subscription)}'", exception.Message);
.ThrowAsync<Exception>()
.WithMessage($"Stripe event with ID '{stripeEvent.Id}' does not have object matching type '{nameof(Subscription)}'");
await _stripeFacade.DidNotReceiveWithAnyArgs().GetSubscription( await _stripeFacade.DidNotReceiveWithAnyArgs().GetSubscription(
Arg.Any<string>(), Arg.Any<string>(),
@ -354,7 +343,7 @@ public class StripeEventServiceTests
var subscription = await _stripeEventService.GetSubscription(stripeEvent); var subscription = await _stripeEventService.GetSubscription(stripeEvent);
// Assert // Assert
subscription.Should().BeEquivalentTo(stripeEvent.Data.Object as Subscription); Assert.Equivalent(stripeEvent.Data.Object as Subscription, subscription, true);
await _stripeFacade.DidNotReceiveWithAnyArgs().GetSubscription( await _stripeFacade.DidNotReceiveWithAnyArgs().GetSubscription(
Arg.Any<string>(), Arg.Any<string>(),
@ -384,8 +373,8 @@ public class StripeEventServiceTests
var subscription = await _stripeEventService.GetSubscription(stripeEvent, true, expand); var subscription = await _stripeEventService.GetSubscription(stripeEvent, true, expand);
// Assert // Assert
subscription.Should().Be(apiSubscription); Assert.Equal(apiSubscription, subscription);
subscription.Should().NotBeSameAs(eventSubscription); Assert.NotSame(eventSubscription, subscription);
await _stripeFacade.Received().GetSubscription( await _stripeFacade.Received().GetSubscription(
apiSubscription.Id, apiSubscription.Id,
@ -417,7 +406,7 @@ public class StripeEventServiceTests
var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent); var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent);
// Assert // Assert
cloudRegionValid.Should().BeTrue(); Assert.True(cloudRegionValid);
await _stripeFacade.Received(1).GetSubscription( await _stripeFacade.Received(1).GetSubscription(
subscription.Id, subscription.Id,
@ -447,7 +436,7 @@ public class StripeEventServiceTests
var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent); var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent);
// Assert // Assert
cloudRegionValid.Should().BeTrue(); Assert.True(cloudRegionValid);
await _stripeFacade.Received(1).GetCharge( await _stripeFacade.Received(1).GetCharge(
charge.Id, charge.Id,
@ -475,7 +464,7 @@ public class StripeEventServiceTests
var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent); var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent);
// Assert // Assert
cloudRegionValid.Should().BeTrue(); Assert.True(cloudRegionValid);
await _stripeFacade.Received(1).GetCustomer( await _stripeFacade.Received(1).GetCustomer(
invoice.CustomerId, invoice.CustomerId,
@ -505,7 +494,7 @@ public class StripeEventServiceTests
var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent); var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent);
// Assert // Assert
cloudRegionValid.Should().BeTrue(); Assert.True(cloudRegionValid);
await _stripeFacade.Received(1).GetInvoice( await _stripeFacade.Received(1).GetInvoice(
invoice.Id, invoice.Id,
@ -535,7 +524,7 @@ public class StripeEventServiceTests
var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent); var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent);
// Assert // Assert
cloudRegionValid.Should().BeTrue(); Assert.True(cloudRegionValid);
await _stripeFacade.Received(1).GetPaymentMethod( await _stripeFacade.Received(1).GetPaymentMethod(
paymentMethod.Id, paymentMethod.Id,
@ -561,7 +550,7 @@ public class StripeEventServiceTests
var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent); var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent);
// Assert // Assert
cloudRegionValid.Should().BeTrue(); Assert.True(cloudRegionValid);
await _stripeFacade.Received(1).GetCustomer( await _stripeFacade.Received(1).GetCustomer(
customer.Id, customer.Id,
@ -592,7 +581,7 @@ public class StripeEventServiceTests
var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent); var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent);
// Assert // Assert
cloudRegionValid.Should().BeFalse(); Assert.False(cloudRegionValid);
await _stripeFacade.Received(1).GetSubscription( await _stripeFacade.Received(1).GetSubscription(
subscription.Id, subscription.Id,
@ -623,7 +612,7 @@ public class StripeEventServiceTests
var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent); var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent);
// Assert // Assert
cloudRegionValid.Should().BeTrue(); Assert.True(cloudRegionValid);
await _stripeFacade.Received(1).GetSubscription( await _stripeFacade.Received(1).GetSubscription(
subscription.Id, subscription.Id,
@ -657,7 +646,7 @@ public class StripeEventServiceTests
var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent); var cloudRegionValid = await _stripeEventService.ValidateCloudRegion(stripeEvent);
// Assert // Assert
cloudRegionValid.Should().BeTrue(); Assert.True(cloudRegionValid);
await _stripeFacade.Received(1).GetSubscription( await _stripeFacade.Received(1).GetSubscription(
subscription.Id, subscription.Id,