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
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,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 @@ -8,16 +8,15 @@ Background:

Given I create the following api scopes
| Name | DisplayName | Description |
| estateManagement | Estate Managememt REST Scope | A scope for Estate Managememt REST |
| transactionProcessor | Estate Managememt REST Scope | A scope for Estate Managememt REST |

Given the following api resources exist
| Name | DisplayName | Secret | Scopes | UserClaims |
| estateManagement | Estate Managememt REST | Secret1 | estateManagement | merchantId, estateId, role |

| transactionProcessor | Estate Managememt REST | Secret1 | transactionProcessor | merchantId, estateId, role |
Given the following clients exist
| ClientId | ClientName | Secret | Scopes | GrantTypes |
| serviceClient | Service Client | Secret1 | estateManagement | client_credentials |
| estateClient | Estate Client | Secret1 | estateManagement | password |
| serviceClient | Service Client | Secret1 | transactionProcessor | client_credentials |
| estateClient | Estate Client | Secret1 | transactionProcessor | password |

Given I have a token to access the estate management resource
| ClientId |
Expand Down
56 changes: 28 additions & 28 deletions TransactionProcessor.IntegrationTests/Features/Contract.feature.cs

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 @@ -5,17 +5,15 @@ 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 |

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 | |
| Name | DisplayName | Secret | Scopes | UserClaims |
| transactionProcessor | Transaction Processor REST | Secret1 | transactionProcessor | MerchantId, EstateId, role |

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

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