-
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 #249 from PinguApps/195-update-email
Implemented update email
- Loading branch information
Showing
5 changed files
with
109 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,13 @@ public App(Client.IAppwriteClient client, Server.Clients.IAppwriteClient server, | |
|
||
public async Task Run(string[] args) | ||
{ | ||
var request = new DeleteUserRequest() | ||
var request = new UpdateEmailRequest() | ||
{ | ||
UserId = "670565fa00209de81fb0" | ||
UserId = "664aac1a00113f82e620", | ||
Email = "[email protected]" | ||
}; | ||
|
||
var response = await _server.Users.DeleteUser(request); | ||
var response = await _server.Users.UpdateEmail(request); | ||
|
||
Console.WriteLine(response.Result.Match( | ||
result => result.ToString(), | ||
|
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
79 changes: 79 additions & 0 deletions
79
tests/PinguApps.Appwrite.Server.Tests/Clients/Users/UsersClientTests.UpdateEmail.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,79 @@ | ||
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("user123", "[email protected]")] | ||
[InlineData("user456", "[email protected]")] | ||
public async Task UpdateEmail_ShouldReturnSuccess_WhenApiCallSucceeds(string userId, string newEmail) | ||
{ | ||
// Arrange | ||
var request = new UpdateEmailRequest | ||
{ | ||
UserId = userId, | ||
Email = newEmail | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/users/{userId}/email") | ||
.WithJsonContent(request) | ||
.ExpectedHeaders() | ||
.Respond(Constants.AppJson, Constants.UserResponse); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.UpdateEmail(request); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdateEmail_ShouldHandleException_WhenApiCallFails() | ||
{ | ||
// Arrange | ||
var request = new UpdateEmailRequest | ||
{ | ||
UserId = "user123", | ||
Email = "[email protected]" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/users/user123/email") | ||
.WithJsonContent(request) | ||
.ExpectedHeaders() | ||
.Respond(HttpStatusCode.BadRequest, Constants.AppJson, Constants.AppwriteError); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.UpdateEmail(request); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsAppwriteError); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdateEmail_ShouldReturnErrorResponse_WhenExceptionOccurs() | ||
{ | ||
// Arrange | ||
var request = new UpdateEmailRequest | ||
{ | ||
UserId = "user123", | ||
Email = "[email protected]" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/users/user123/email") | ||
.WithJsonContent(request) | ||
.ExpectedHeaders() | ||
.Throw(new HttpRequestException("An error occurred")); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.UpdateEmail(request); | ||
|
||
// Assert | ||
Assert.False(result.Success); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal("An error occurred", result.Result.AsT2.Message); | ||
} | ||
} |