-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #236 from PinguApps/187-users-delete-identity
Implemented delete identity for users api
- Loading branch information
Showing
5 changed files
with
104 additions
and
9 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
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
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
73 changes: 73 additions & 0 deletions
73
tests/PinguApps.Appwrite.Server.Tests/Clients/Users/UsersClientTests.DeleteIdentity.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,73 @@ | ||
using System.Net; | ||
using PinguApps.Appwrite.Shared.Requests.Users; | ||
using PinguApps.Appwrite.Shared.Tests; | ||
using RichardSzalay.MockHttp; | ||
|
||
namespace PinguApps.Appwrite.Server.Tests.Clients.Users; | ||
public partial class UsersClientTests | ||
{ | ||
[Theory] | ||
[InlineData("identity123")] | ||
[InlineData("identity456")] | ||
public async Task DeleteIdentity_ShouldReturnSuccess_WhenApiCallSucceeds(string identityId) | ||
{ | ||
// Arrange | ||
var request = new DeleteIdentityRequest | ||
{ | ||
IdentityId = identityId | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Delete, $"{Constants.Endpoint}/users/identities/{identityId}") | ||
.ExpectedHeaders() | ||
.Respond(HttpStatusCode.NoContent); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.DeleteIdentity(request); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task DeleteIdentity_ShouldHandleException_WhenApiCallFails() | ||
{ | ||
// Arrange | ||
var request = new DeleteIdentityRequest | ||
{ | ||
IdentityId = "identity123" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Delete, $"{Constants.Endpoint}/users/identities/identity123") | ||
.ExpectedHeaders() | ||
.Respond(HttpStatusCode.BadRequest, Constants.AppJson, Constants.AppwriteError); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.DeleteIdentity(request); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsAppwriteError); | ||
} | ||
|
||
[Fact] | ||
public async Task DeleteIdentity_ShouldReturnErrorResponse_WhenExceptionOccurs() | ||
{ | ||
// Arrange | ||
var request = new DeleteIdentityRequest | ||
{ | ||
IdentityId = "identity123" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Delete, $"{Constants.Endpoint}/users/identities/identity123") | ||
.ExpectedHeaders() | ||
.Throw(new HttpRequestException("An error occurred")); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.DeleteIdentity(request); | ||
|
||
// Assert | ||
Assert.False(result.Success); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal("An error occurred", result.Result.AsT2.Message); | ||
} | ||
} |