mirror of
https://github.com/bitwarden/server.git
synced 2025-05-31 00:00:34 -05:00

* [PM-17562] Add support for retires on event integrations * Add additional test coverage * Fixed missing await call * Remove debug organization id * Respond to PR feedback * Change NotBeforeUtc to DelayUntilDate. Adjust comments. * Respond to PR feedback
42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
using Bit.Core.AdminConsole.Models.Data.Integrations;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Services;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.Services;
|
|
|
|
public class IntegrationHandlerTests
|
|
{
|
|
|
|
[Fact]
|
|
public async Task HandleAsync_ConvertsJsonToTypedIntegrationMessage()
|
|
{
|
|
var sut = new TestIntegrationHandler();
|
|
var expected = new IntegrationMessage<WebhookIntegrationConfigurationDetails>()
|
|
{
|
|
Configuration = new WebhookIntegrationConfigurationDetails("https://localhost"),
|
|
IntegrationType = IntegrationType.Webhook,
|
|
RenderedTemplate = "Template",
|
|
DelayUntilDate = null,
|
|
RetryCount = 0
|
|
};
|
|
|
|
var result = await sut.HandleAsync(expected.ToJson());
|
|
var typedResult = Assert.IsType<IntegrationMessage<WebhookIntegrationConfigurationDetails>>(result.Message);
|
|
|
|
Assert.Equal(expected.Configuration, typedResult.Configuration);
|
|
Assert.Equal(expected.RenderedTemplate, typedResult.RenderedTemplate);
|
|
Assert.Equal(expected.IntegrationType, typedResult.IntegrationType);
|
|
}
|
|
|
|
private class TestIntegrationHandler : IntegrationHandlerBase<WebhookIntegrationConfigurationDetails>
|
|
{
|
|
public override Task<IntegrationHandlerResult> HandleAsync(
|
|
IntegrationMessage<WebhookIntegrationConfigurationDetails> message)
|
|
{
|
|
var result = new IntegrationHandlerResult(success: true, message: message);
|
|
return Task.FromResult(result);
|
|
}
|
|
}
|
|
}
|