2022-06-30 01:46:41 +02:00
|
|
|
|
using Amazon.SQS;
|
2019-07-06 05:35:54 +02:00
|
|
|
|
using Bit.Core.Services;
|
2021-02-22 22:35:16 +01:00
|
|
|
|
using Bit.Core.Settings;
|
2019-07-06 05:35:54 +02:00
|
|
|
|
using NSubstitute;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Test.Services;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2019-07-06 05:35:54 +02:00
|
|
|
|
public class AmazonSqsBlockIpServiceTests : IDisposable
|
|
|
|
|
{
|
|
|
|
|
private readonly AmazonSqsBlockIpService _sut;
|
|
|
|
|
|
|
|
|
|
private readonly GlobalSettings _globalSettings;
|
2020-06-18 19:16:04 +02:00
|
|
|
|
private readonly IAmazonSQS _amazonSqs;
|
2019-07-06 05:35:54 +02:00
|
|
|
|
|
|
|
|
|
public AmazonSqsBlockIpServiceTests()
|
2022-08-29 22:06:55 +02:00
|
|
|
|
{
|
2020-06-18 19:16:04 +02:00
|
|
|
|
_globalSettings = new GlobalSettings
|
2019-07-06 05:35:54 +02:00
|
|
|
|
{
|
2020-06-18 19:16:04 +02:00
|
|
|
|
Amazon =
|
|
|
|
|
{
|
|
|
|
|
AccessKeyId = "AccessKeyId-AmazonSesMailDeliveryServiceTests",
|
|
|
|
|
AccessKeySecret = "AccessKeySecret-AmazonSesMailDeliveryServiceTests",
|
|
|
|
|
Region = "Region-AmazonSesMailDeliveryServiceTests"
|
|
|
|
|
}
|
|
|
|
|
};
|
2019-07-06 05:35:54 +02:00
|
|
|
|
|
2020-06-18 19:16:04 +02:00
|
|
|
|
_amazonSqs = Substitute.For<IAmazonSQS>();
|
|
|
|
|
|
|
|
|
|
_sut = new AmazonSqsBlockIpService(_globalSettings, _amazonSqs);
|
2019-07-06 05:35:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
_sut?.Dispose();
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-18 19:16:04 +02:00
|
|
|
|
[Fact]
|
|
|
|
|
public async Task BlockIpAsync_UnblockCalled_WhenNotPermanent()
|
|
|
|
|
{
|
|
|
|
|
const string expectedIp = "ip";
|
|
|
|
|
|
|
|
|
|
await _sut.BlockIpAsync(expectedIp, false);
|
|
|
|
|
|
|
|
|
|
await _amazonSqs.Received(2).SendMessageAsync(
|
|
|
|
|
Arg.Any<string>(),
|
|
|
|
|
Arg.Is(expectedIp));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task BlockIpAsync_UnblockNotCalled_WhenPermanent()
|
|
|
|
|
{
|
|
|
|
|
const string expectedIp = "ip";
|
|
|
|
|
|
|
|
|
|
await _sut.BlockIpAsync(expectedIp, true);
|
|
|
|
|
|
|
|
|
|
await _amazonSqs.Received(1).SendMessageAsync(
|
|
|
|
|
Arg.Any<string>(),
|
|
|
|
|
Arg.Is(expectedIp));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task BlockIpAsync_NotBlocked_WhenAlreadyBlockedRecently()
|
2019-07-06 05:35:54 +02:00
|
|
|
|
{
|
2020-06-18 19:16:04 +02:00
|
|
|
|
const string expectedIp = "ip";
|
|
|
|
|
|
|
|
|
|
await _sut.BlockIpAsync(expectedIp, true);
|
|
|
|
|
|
|
|
|
|
// The second call should hit the already blocked guard clause
|
|
|
|
|
await _sut.BlockIpAsync(expectedIp, true);
|
|
|
|
|
|
|
|
|
|
await _amazonSqs.Received(1).SendMessageAsync(
|
|
|
|
|
Arg.Any<string>(),
|
|
|
|
|
Arg.Is(expectedIp));
|
2019-07-06 05:35:54 +02:00
|
|
|
|
}
|
|
|
|
|
}
|