-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
edad36a
commit b2a2924
Showing
1 changed file
with
250 additions
and
0 deletions.
There are no files selected for viewing
250 changes: 250 additions & 0 deletions
250
source/Tests/Infrastructure/IncomingMessages/RequestProcessOrchestrationStarterTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,250 @@ | ||
// Copyright 2020 Energinet DataHub A/S | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License2"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
using Energinet.DataHub.EDI.BuildingBlocks.Domain.Authentication; | ||
using Energinet.DataHub.EDI.BuildingBlocks.Domain.Models; | ||
using Energinet.DataHub.EDI.IncomingMessages.Infrastructure.ProcessManager; | ||
using Energinet.DataHub.EDI.Process.Interfaces; | ||
using Energinet.DataHub.ProcessManager.Abstractions.Api.Model; | ||
using Energinet.DataHub.ProcessManager.Abstractions.Api.Model.OrchestrationInstance; | ||
using Energinet.DataHub.ProcessManager.Client; | ||
using Energinet.DataHub.ProcessManager.Orchestrations.Abstractions.Processes.BRS_026.V1.Model; | ||
using Energinet.DataHub.ProcessManager.Orchestrations.Abstractions.Processes.BRS_028.V1.Model; | ||
using FluentAssertions; | ||
using Moq; | ||
using Xunit; | ||
using ChargeType = Energinet.DataHub.EDI.BuildingBlocks.Domain.Models.ChargeType; | ||
|
||
namespace Energinet.DataHub.EDI.Tests.Infrastructure.IncomingMessages; | ||
|
||
public class RequestProcessOrchestrationStarterTests | ||
{ | ||
[Theory] | ||
[InlineData("2023-05-31T22:00:00Z", "904", "1111111222222", "2222222222222", "PT15M", "D01", "AAA", "D03")] | ||
[InlineData(null, null, null, null, null, null, null, null)] | ||
public async Task Given_RequestForWholesaleServices_When_StartRequestWholesaleServicesCalled_Then_ProcessManagerMessageClientIsCalled( | ||
string? expectedEnd, | ||
string? expectedGridArea, | ||
string? expectedEnergySupplierNumber, | ||
string? expectedChargeOwnerNumber, | ||
string? resolutionCode, | ||
string? settlementVersionCode, | ||
string? expectedChargeId, | ||
string? chargeTypeCode) | ||
{ | ||
// Arrange | ||
// => Setup request input | ||
var requestedByActor = RequestedByActor.From(ActorNumber.Create("1111111111111"), ActorRole.GridAccessProvider); | ||
|
||
var expectedBusinessReason = BusinessReason.WholesaleFixing; | ||
var expectedTransactionId = "85f00b2e-cbfa-4b17-86e0-b9004d683f9f"; | ||
var expectedStart = "2023-04-30T22:00:00Z"; | ||
var expectedResolution = resolutionCode is not null | ||
? Resolution.FromCode(resolutionCode) | ||
: null; | ||
var expectedSettlementVersion = settlementVersionCode is not null | ||
? SettlementVersion.FromCode(settlementVersionCode) | ||
: null; | ||
var expectedChargeType = chargeTypeCode is not null | ||
? ChargeType.FromCode(chargeTypeCode) | ||
: null; | ||
|
||
var initializeProcessDto = new InitializeWholesaleServicesProcessDto( | ||
BusinessReason: expectedBusinessReason.Code, | ||
MessageId: MessageId.Create("9b6184af-2f05-40b9-d783-08dc814df95a").Value, | ||
Series: | ||
[ | ||
new InitializeWholesaleServicesSeries( | ||
Id: TransactionId.From(expectedTransactionId).Value, | ||
StartDateTime: expectedStart, | ||
EndDateTime: expectedEnd, | ||
RequestedGridAreaCode: expectedGridArea, | ||
EnergySupplierId: expectedEnergySupplierNumber, | ||
SettlementVersion: expectedSettlementVersion?.Code, | ||
Resolution: expectedResolution?.Code, | ||
ChargeOwner: expectedChargeOwnerNumber, | ||
ChargeTypes: [new InitializeWholesaleServicesChargeType( | ||
Id: expectedChargeId, | ||
Type: expectedChargeType?.Code)], | ||
GridAreas: expectedGridArea is not null ? [expectedGridArea] : [], | ||
RequestedByActor: requestedByActor, | ||
OriginalActor.From(requestedByActor)) | ||
]); | ||
|
||
// => Setup Process Manager client and callback | ||
var processManagerClient = new Mock<IProcessManagerMessageClient>(); | ||
MessageCommand<RequestCalculatedWholesaleServicesInputV1>? actualCommand = null; | ||
processManagerClient.Setup( | ||
client => client.StartNewOrchestrationInstanceAsync( | ||
It.IsAny<RequestCalculatedWholesaleServicesCommandV1>(), | ||
It.IsAny<CancellationToken>())) | ||
.Callback((MessageCommand<RequestCalculatedWholesaleServicesInputV1> command, CancellationToken token) => actualCommand = command); | ||
|
||
// => Setup authenticated actor | ||
var expectedActorId = Guid.NewGuid(); | ||
var authenticatedActor = new AuthenticatedActor(); | ||
authenticatedActor.SetAuthenticatedActor(new ActorIdentity( | ||
ActorNumber.Create("1234567890123"), | ||
Restriction.None, | ||
ActorRole.GridAccessProvider, | ||
expectedActorId)); | ||
|
||
var sut = new RequestProcessOrchestrationStarter( | ||
processManagerClient.Object, | ||
authenticatedActor); | ||
|
||
// Act | ||
await sut.StartRequestWholesaleServicesOrchestrationAsync( | ||
initializeProcessDto, | ||
CancellationToken.None); | ||
|
||
// Assert | ||
processManagerClient.Verify( | ||
client => client.StartNewOrchestrationInstanceAsync( | ||
It.IsAny<RequestCalculatedWholesaleServicesCommandV1>(), | ||
It.IsAny<CancellationToken>()), | ||
Times.Once); | ||
|
||
var expectedCommand = new RequestCalculatedWholesaleServicesCommandV1( | ||
operatingIdentity: new ActorIdentityDto(expectedActorId), | ||
inputParameter: new RequestCalculatedWholesaleServicesInputV1( | ||
RequestedForActorNumber: requestedByActor.ActorNumber.Value, | ||
RequestedForActorRole: requestedByActor.ActorRole.Name, | ||
BusinessReason: expectedBusinessReason.Name, | ||
Resolution: expectedResolution?.Name, | ||
PeriodStart: expectedStart, | ||
PeriodEnd: expectedEnd, | ||
EnergySupplierNumber: expectedEnergySupplierNumber, | ||
ChargeOwnerNumber: expectedChargeOwnerNumber, | ||
GridAreas: expectedGridArea is not null ? [expectedGridArea] : [], | ||
SettlementVersion: expectedSettlementVersion?.Name, | ||
ChargeTypes: | ||
[ | ||
new RequestCalculatedWholesaleServicesInputV1.ChargeTypeInputV1( | ||
ChargeType: expectedChargeType?.Name, | ||
ChargeCode: expectedChargeId) | ||
]), | ||
messageId: expectedTransactionId); | ||
|
||
actualCommand.Should() | ||
.NotBeNull() | ||
.And.BeEquivalentTo(expectedCommand); | ||
} | ||
|
||
[Theory] | ||
[InlineData("2023-05-31T22:00:00Z", "904", "1111111222222", "2222222222222", "E18", "E02", "D02")] | ||
[InlineData(null, null, null, null, null, null, null)] | ||
public async Task Given_RequestForAggregatedMeasureDataCValues_When_StartRequestAggregatedMeasureDataCalled_Then_ProcessManagerMessageClientIsCalled( | ||
string? expectedEnd, | ||
string? expectedGridArea, | ||
string? expectedEnergySupplierNumber, | ||
string? expectedBalanceResponsibleNumber, | ||
string? meteringPointTypeCode, | ||
string? settlementMethodCode, | ||
string? settlementVersionCode) | ||
{ | ||
// Arrange | ||
// => Setup request input | ||
var requestedByActor = RequestedByActor.From(ActorNumber.Create("1111111111111"), ActorRole.EnergySupplier); | ||
|
||
var expectedBusinessReason = BusinessReason.BalanceFixing; | ||
var expectedTransactionId = "85f00b2e-cbfa-4b17-86e0-b9004d683f9f"; | ||
var expectedStart = "2023-04-30T22:00:00Z"; | ||
var expectedSettlementVersion = settlementVersionCode is not null | ||
? SettlementVersion.FromCode(settlementVersionCode) | ||
: null; | ||
var expectedMeteringPointType = meteringPointTypeCode is not null | ||
? MeteringPointType.FromCode(meteringPointTypeCode) | ||
: null; | ||
var expectedSettlementMethod = settlementMethodCode is not null | ||
? SettlementMethod.FromCode(settlementMethodCode) | ||
: null; | ||
|
||
var initializeProcessDto = new InitializeAggregatedMeasureDataProcessDto( | ||
SenderNumber: requestedByActor.ActorNumber.Value, | ||
SenderRoleCode: requestedByActor.ActorRole.Code, | ||
BusinessReason: expectedBusinessReason.Code, | ||
MessageId: MessageId.Create("9b6184af-2f05-40b9-d783-08dc814df95a").Value, | ||
Series: | ||
[ | ||
new InitializeAggregatedMeasureDataProcessSeries( | ||
Id: TransactionId.From(expectedTransactionId), | ||
MeteringPointType: expectedMeteringPointType?.Code, | ||
SettlementMethod: expectedSettlementMethod?.Code, | ||
StartDateTime: expectedStart, | ||
EndDateTime: expectedEnd, | ||
RequestedGridAreaCode: expectedGridArea, | ||
EnergySupplierNumber: expectedEnergySupplierNumber, | ||
BalanceResponsibleNumber: expectedBalanceResponsibleNumber, | ||
SettlementVersion: expectedSettlementVersion?.Code, | ||
GridAreas: expectedGridArea is not null ? [expectedGridArea] : [], | ||
RequestedByActor: requestedByActor, | ||
OriginalActor: OriginalActor.From(requestedByActor)) | ||
]); | ||
|
||
// => Setup Process Manager client and callback | ||
var processManagerClient = new Mock<IProcessManagerMessageClient>(); | ||
MessageCommand<RequestCalculatedEnergyTimeSeriesInputV1>? actualCommand = null; | ||
processManagerClient.Setup( | ||
client => client.StartNewOrchestrationInstanceAsync( | ||
It.IsAny<StartRequestCalculatedEnergyTimeSeriesCommandV1>(), | ||
It.IsAny<CancellationToken>())) | ||
.Callback((MessageCommand<RequestCalculatedEnergyTimeSeriesInputV1> command, CancellationToken token) => actualCommand = command); | ||
|
||
// => Setup authenticated actor | ||
var expectedActorId = Guid.NewGuid(); | ||
var authenticatedActor = new AuthenticatedActor(); | ||
authenticatedActor.SetAuthenticatedActor(new ActorIdentity( | ||
ActorNumber.Create("1234567890123"), | ||
Restriction.None, | ||
ActorRole.EnergySupplier, | ||
expectedActorId)); | ||
|
||
var sut = new RequestProcessOrchestrationStarter( | ||
processManagerClient.Object, | ||
authenticatedActor); | ||
|
||
// Act | ||
await sut.StartRequestAggregatedMeasureDataOrchestrationAsync( | ||
initializeProcessDto, | ||
CancellationToken.None); | ||
|
||
// Assert | ||
processManagerClient.Verify( | ||
client => client.StartNewOrchestrationInstanceAsync( | ||
It.IsAny<StartRequestCalculatedEnergyTimeSeriesCommandV1>(), | ||
It.IsAny<CancellationToken>()), | ||
Times.Once); | ||
|
||
var expectedCommand = new StartRequestCalculatedEnergyTimeSeriesCommandV1( | ||
operatingIdentity: new ActorIdentityDto(expectedActorId), | ||
inputParameter: new RequestCalculatedEnergyTimeSeriesInputV1( | ||
RequestedForActorNumber: requestedByActor.ActorNumber.Value, | ||
RequestedForActorRole: requestedByActor.ActorRole.Name, | ||
BusinessReason: expectedBusinessReason.Name, | ||
PeriodStart: expectedStart, | ||
PeriodEnd: expectedEnd, | ||
EnergySupplierNumber: expectedEnergySupplierNumber, | ||
BalanceResponsibleNumber: expectedBalanceResponsibleNumber, | ||
GridAreas: expectedGridArea is not null ? [expectedGridArea] : [], | ||
MeteringPointType: expectedMeteringPointType?.Name, | ||
SettlementMethod: expectedSettlementMethod?.Name, | ||
SettlementVersion: expectedSettlementVersion?.Name), | ||
messageId: expectedTransactionId); | ||
|
||
actualCommand.Should() | ||
.NotBeNull() | ||
.And.BeEquivalentTo(expectedCommand); | ||
} | ||
} |