Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion FileProcessor.BusinessLogic.Tests/MediatorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public async Task Mediator_Send_RequestHandled()

this.AddTestRegistrations(services, hostingEnvironment.Object);
s.ConfigureContainer(services);
Startup.Container.AssertConfigurationIsValid(AssertMode.Full);

List<String> errors = new List<String>();
IMediator mediator = Startup.Container.GetService<IMediator>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,17 @@ Feature: GetFileImportDetails
Background:
Given I create the following api scopes
| Name | DisplayName | Description |
| estateManagement | Estate Managememt REST Scope | A scope for Estate Managememt REST |
| transactionProcessor | Transaction Processor REST Scope | A scope for Transaction Processor REST |
| voucherManagement | Voucher Management REST Scope | A scope for Voucher Management REST |
| fileProcessor | File Processor REST Scope | A scope for File Processor REST |

Given the following api resources exist
| Name | DisplayName | Secret | Scopes | UserClaims |
| estateManagement | Estate Managememt REST | Secret1 | estateManagement | MerchantId, EstateId, role |
| transactionProcessor | Transaction Processor REST | Secret1 | transactionProcessor | |
| voucherManagement | Voucher Management REST | Secret1 | voucherManagement | |
| transactionProcessor | Transaction Processor REST | Secret1 | transactionProcessor | MerchantId, EstateId, role |
| fileProcessor | File Processor REST | Secret1 | fileProcessor | |

Given the following clients exist
| ClientId | ClientName | Secret | Scopes | GrantTypes |
| serviceClient | Service Client | Secret1 | estateManagement,transactionProcessor,voucherManagement,fileProcessor | client_credentials |
| serviceClient | Service Client | Secret1 | transactionProcessor,fileProcessor | client_credentials |

Given I have a token to access the estate management and transaction processor resources
| ClientId |
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,17 @@ Feature: Process Topup CSV Files
Background:
Given I create the following api scopes
| Name | DisplayName | Description |
| estateManagement | Estate Managememt REST Scope | A scope for Estate Managememt REST |
| transactionProcessor | Transaction Processor REST Scope | A scope for Transaction Processor REST |
| voucherManagement | Voucher Management REST Scope | A scope for Voucher Management REST |
| fileProcessor | File Processor REST Scope | A scope for File Processor REST |

Given the following api resources exist
| Name | DisplayName | Secret | Scopes | UserClaims |
| estateManagement | Estate Managememt REST | Secret1 | estateManagement | MerchantId, EstateId, role |
| transactionProcessor | Transaction Processor REST | Secret1 | transactionProcessor | |
| voucherManagement | Voucher Management REST | Secret1 | voucherManagement | |
| transactionProcessor | Transaction Processor REST | Secret1 | transactionProcessor | MerchantId, EstateId, role |
| fileProcessor | File Processor REST | Secret1 | fileProcessor | |

Given the following clients exist
| ClientId | ClientName | Secret | Scopes | GrantTypes |
| serviceClient | Service Client | Secret1 | estateManagement,transactionProcessor,voucherManagement,fileProcessor | client_credentials |
| serviceClient | Service Client | Secret1 | transactionProcessor,fileProcessor | client_credentials |

Given I have a token to access the estate management and transaction processor resources
| ClientId |
Expand Down
Loading
Loading