From 2698d92b12829d10be19762fc3b361a5ec5d4d52 Mon Sep 17 00:00:00 2001 From: Matthew Parker Date: Wed, 9 Oct 2024 22:17:18 +0100 Subject: [PATCH 1/3] implemented update password --- src/PinguApps.Appwrite.Playground/App.cs | 6 +++--- .../Clients/IUsersClient.cs | 8 +++++++- .../Clients/UsersClient.cs | 17 +++++++++++++++-- 3 files changed, 25 insertions(+), 6 deletions(-) diff --git a/src/PinguApps.Appwrite.Playground/App.cs b/src/PinguApps.Appwrite.Playground/App.cs index 1b9029c2..1ffe94ce 100644 --- a/src/PinguApps.Appwrite.Playground/App.cs +++ b/src/PinguApps.Appwrite.Playground/App.cs @@ -17,13 +17,13 @@ public App(Client.IAppwriteClient client, Server.Clients.IAppwriteClient server, public async Task Run(string[] args) { - var request = new UpdateNameRequest() + var request = new UpdatePasswordRequest() { UserId = "664aac1a00113f82e620", - Name = "My Name" + Password = "MySuperPassword" }; - var response = await _server.Users.UpdateName(request); + var response = await _server.Users.UpdatePassword(request); Console.WriteLine(response.Result.Match( result => result.ToString(), diff --git a/src/PinguApps.Appwrite.Server/Clients/IUsersClient.cs b/src/PinguApps.Appwrite.Server/Clients/IUsersClient.cs index 2afe61b2..22c17efa 100644 --- a/src/PinguApps.Appwrite.Server/Clients/IUsersClient.cs +++ b/src/PinguApps.Appwrite.Server/Clients/IUsersClient.cs @@ -213,7 +213,13 @@ public interface IUsersClient /// The request content /// The user Task> UpdateName(UpdateNameRequest request); - [Obsolete("This method hasn't yet been implemented.", true)] + + /// + /// Update the user password by its unique ID + /// Appwrite Docs + /// + /// The request content + /// The user Task> UpdatePassword(UpdatePasswordRequest request); [Obsolete("This method hasn't yet been implemented.", true)] Task> UpdatePhone(UpdatePhoneRequest request); diff --git a/src/PinguApps.Appwrite.Server/Clients/UsersClient.cs b/src/PinguApps.Appwrite.Server/Clients/UsersClient.cs index 1af70ac3..91f54287 100644 --- a/src/PinguApps.Appwrite.Server/Clients/UsersClient.cs +++ b/src/PinguApps.Appwrite.Server/Clients/UsersClient.cs @@ -446,9 +446,22 @@ public async Task> UpdateName(UpdateNameRequest request) } } - [ExcludeFromCodeCoverage] /// - public Task> UpdatePassword(UpdatePasswordRequest request) => throw new NotImplementedException(); + public async Task> UpdatePassword(UpdatePasswordRequest request) + { + try + { + request.Validate(true); + + var result = await _usersApi.UpdatePassword(request.UserId, request); + + return result.GetApiResponse(); + } + catch (Exception e) + { + return e.GetExceptionResponse(); + } + } [ExcludeFromCodeCoverage] /// From 3f7f29414e27f4ac3a66066bab2b286b7c8f1702 Mon Sep 17 00:00:00 2001 From: Matthew Parker Date: Wed, 9 Oct 2024 22:18:24 +0100 Subject: [PATCH 2/3] added tests for update password --- .../Users/UsersClientTests.UpdatePassword.cs | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 tests/PinguApps.Appwrite.Server.Tests/Clients/Users/UsersClientTests.UpdatePassword.cs diff --git a/tests/PinguApps.Appwrite.Server.Tests/Clients/Users/UsersClientTests.UpdatePassword.cs b/tests/PinguApps.Appwrite.Server.Tests/Clients/Users/UsersClientTests.UpdatePassword.cs new file mode 100644 index 00000000..6ec1268e --- /dev/null +++ b/tests/PinguApps.Appwrite.Server.Tests/Clients/Users/UsersClientTests.UpdatePassword.cs @@ -0,0 +1,75 @@ +using System.Net; +using PinguApps.Appwrite.Shared.Requests.Users; +using PinguApps.Appwrite.Shared.Tests; +using PinguApps.Appwrite.Shared.Utils; +using RichardSzalay.MockHttp; + +namespace PinguApps.Appwrite.Server.Tests.Clients.Users; +public partial class UsersClientTests +{ + [Fact] + public async Task UpdatePassword_ShouldReturnSuccess_WhenApiCallSucceeds() + { + // Arrange + var request = new UpdatePasswordRequest + { + UserId = IdUtils.GenerateUniqueId(), + Password = "newPassword" + }; + + _mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/users/{request.UserId}/password") + .ExpectedHeaders() + .Respond(Constants.AppJson, Constants.UserResponse); + + // Act + var result = await _appwriteClient.Users.UpdatePassword(request); + + // Assert + Assert.True(result.Success); + } + + [Fact] + public async Task UpdatePassword_ShouldHandleException_WhenApiCallFails() + { + // Arrange + var request = new UpdatePasswordRequest + { + UserId = IdUtils.GenerateUniqueId(), + Password = "newPassword" + }; + + _mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/users/{request.UserId}/password") + .ExpectedHeaders() + .Respond(HttpStatusCode.BadRequest, Constants.AppJson, Constants.AppwriteError); + + // Act + var result = await _appwriteClient.Users.UpdatePassword(request); + + // Assert + Assert.True(result.IsError); + Assert.True(result.IsAppwriteError); + } + + [Fact] + public async Task UpdatePassword_ShouldReturnErrorResponse_WhenExceptionOccurs() + { + // Arrange + var request = new UpdatePasswordRequest + { + UserId = IdUtils.GenerateUniqueId(), + Password = "newPassword" + }; + + _mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/users/{request.UserId}/password") + .ExpectedHeaders() + .Throw(new HttpRequestException("An error occurred")); + + // Act + var result = await _appwriteClient.Users.UpdatePassword(request); + + // Assert + Assert.False(result.Success); + Assert.True(result.IsInternalError); + Assert.Equal("An error occurred", result.Result.AsT2.Message); + } +} From fa69c80d26f74ab0076af45ae3afddda13a0eead Mon Sep 17 00:00:00 2001 From: Matthew Parker Date: Wed, 9 Oct 2024 22:19:05 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6e96d5b5..d476ab5b 100644 --- a/README.md +++ b/README.md @@ -140,9 +140,9 @@ string emailAddressOrErrorMessage = userResponse.Result.Match( ``` ## ⌛ Progress -![Server & Client - 80 / 291](https://img.shields.io/badge/Server_&_Client-80%20%2F%20291-red?style=for-the-badge) +![Server & Client - 81 / 291](https://img.shields.io/badge/Server_&_Client-81%20%2F%20291-red?style=for-the-badge) -![Server - 36 / 201](https://img.shields.io/badge/Server-36%20%2F%20201-red?style=for-the-badge) +![Server - 37 / 201](https://img.shields.io/badge/Server-37%20%2F%20201-red?style=for-the-badge) ![Client - 44 / 90](https://img.shields.io/badge/Client-44%20%2F%2090-gold?style=for-the-badge) @@ -207,7 +207,7 @@ string emailAddressOrErrorMessage = userResponse.Result.Match( | [Create Phone Verification (Confirmation)](https://appwrite.io/docs/references/1.6.x/client-rest/account#updatePhoneVerification) | ✅ | ❌ | | ### Users -![Account - 25 / 41](https://img.shields.io/badge/Users-25%20%2F%2041-gold?style=for-the-badge) +![Account - 26 / 41](https://img.shields.io/badge/Users-26%20%2F%2041-gold?style=for-the-badge) | Endpoint | Client | Server | |:-:|:-:|:-:| @@ -236,7 +236,7 @@ string emailAddressOrErrorMessage = userResponse.Result.Match( | [Regenerate MFA Recovery Codes](https://appwrite.io/docs/references/1.6.x/server-rest/users#updateMfaRecoveryCodes) | ❌ | ✅ | | [Create MFA Recovery Codes](https://appwrite.io/docs/references/1.6.x/server-rest/users#createMfaRecoveryCodes) | ❌ | ✅ | | [Update Name](https://appwrite.io/docs/references/1.6.x/server-rest/users#updateName) | ❌ | ✅ | -| [Update Password](https://appwrite.io/docs/references/1.6.x/server-rest/users#updatePassword) | ❌ | ⬛ | +| [Update Password](https://appwrite.io/docs/references/1.6.x/server-rest/users#updatePassword) | ❌ | ✅ | | [Update Phone](https://appwrite.io/docs/references/1.6.x/server-rest/users#updatePhone) | ❌ | ⬛ | | [Get User Preferences](https://appwrite.io/docs/references/1.6.x/server-rest/users#getPrefs) | ❌ | ⬛ | | [Update User Preferences](https://appwrite.io/docs/references/1.6.x/server-rest/users#updatePrefs) | ❌ | ⬛ |