-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(invitedUsers): filter deleted users for invitedUsers endpoint (#155)
Refs: CPLP-2986 Co-authored-by: Norbert Truchsess <[email protected]> Reviewed-By: Norbert Truchsess <[email protected]>
- Loading branch information
1 parent
c79e50c
commit 60c9b3a
Showing
5 changed files
with
101 additions
and
15 deletions.
There are no files selected for viewing
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
43 changes: 41 additions & 2 deletions
43
tests/portalbackend/PortalBackend.DBAccess.Tests/InvitationRepositoryTests.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 |
---|---|---|
@@ -1,7 +1,46 @@ | ||
using Org.Eclipse.TractusX.Portal.Backend.PortalBackend.DBAccess.Repositories; | ||
using Org.Eclipse.TractusX.Portal.Backend.PortalBackend.DBAccess.Tests.Setup; | ||
using Org.Eclipse.TractusX.Portal.Backend.PortalBackend.PortalEntities.Enums; | ||
using Xunit.Extensions.AssemblyFixture; | ||
|
||
namespace Org.Eclipse.TractusX.Portal.Backend.PortalBackend.DBAccess.Tests; | ||
|
||
public class InvitationRepositoryTests | ||
public class InvitationRepositoryTests : IAssemblyFixture<TestDbFixture> | ||
{ | ||
private readonly TestDbFixture _dbTestDbFixture; | ||
private readonly Guid _applicationId = new("6b2d1263-c073-4a48-bfaf-704dc154ca9e"); | ||
|
||
public InvitationRepositoryTests(TestDbFixture testDbFixture) | ||
{ | ||
var fixture = new Fixture().Customize(new AutoFakeItEasyCustomization { ConfigureMembers = true }); | ||
fixture.Behaviors.OfType<ThrowingRecursionBehavior>().ToList() | ||
.ForEach(b => fixture.Behaviors.Remove(b)); | ||
|
||
fixture.Behaviors.Add(new OmitOnRecursionBehavior()); | ||
_dbTestDbFixture = testDbFixture; | ||
} | ||
|
||
[Fact] | ||
public async Task GetInvitedUserDetailsUntrackedAsync_WithValid_ReturnsExpected() | ||
{ | ||
var sut = await CreateSut().ConfigureAwait(false); | ||
|
||
var result = await sut.GetInvitedUserDetailsUntrackedAsync(_applicationId).ToListAsync().ConfigureAwait(false); | ||
|
||
result.Should().HaveCount(2) | ||
.And.Satisfy( | ||
x => x.EmailId == "[email protected]" && x.InvitationStatus == InvitationStatusId.CREATED, | ||
x => x.EmailId == "[email protected]" && x.InvitationStatus == InvitationStatusId.CREATED); | ||
} | ||
|
||
#region Setup | ||
|
||
private async Task<InvitationRepository> CreateSut() | ||
{ | ||
var context = await _dbTestDbFixture.GetPortalDbContext().ConfigureAwait(false); | ||
var sut = new InvitationRepository(context); | ||
return sut; | ||
} | ||
|
||
// TODO (PS): GetInvitedUserDetailsUntrackedAsync | ||
#endregion | ||
} |
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 |
---|---|---|
|
@@ -70,5 +70,23 @@ | |
"lastlogin": null, | ||
"lastname": "Provider", | ||
"last_editor_id": null | ||
}, | ||
{ | ||
"id": "d0c8ae19-d4f3-49cc-9cb4-6c766d4680f5", | ||
"date_last_changed": "2022-10-01 18:01:33.570000 +00:00", | ||
"email": "[email protected]", | ||
"firstname": "Test", | ||
"lastlogin": null, | ||
"lastname": "User", | ||
"last_editor_id": null | ||
}, | ||
{ | ||
"id": "1dceacb8-c5a5-4573-a77d-e2487ac4a8aa", | ||
"date_last_changed": "2022-10-01 18:01:33.570000 +00:00", | ||
"email": "[email protected]", | ||
"firstname": "Deleted", | ||
"lastlogin": null, | ||
"lastname": "User", | ||
"last_editor_id": null | ||
} | ||
] |
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
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