-
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.
- Loading branch information
Showing
2 changed files
with
118 additions
and
0 deletions.
There are no files selected for viewing
83 changes: 83 additions & 0 deletions
83
tests/PinguApps.Appwrite.Client.Tests/Clients/Account/AccountClientTests.UpdatePassword.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,83 @@ | ||
using System.Net; | ||
using PinguApps.Appwrite.Shared.Requests; | ||
using PinguApps.Appwrite.Shared.Tests; | ||
using RichardSzalay.MockHttp; | ||
|
||
namespace PinguApps.Appwrite.Client.Tests.Clients.Account; | ||
public partial class AccountClientTests | ||
{ | ||
[Fact] | ||
public async Task UpdatePassword_ShouldReturnSuccess_WhenApiCallSucceeds() | ||
{ | ||
// Arrange | ||
var request = new UpdatePasswordRequest() | ||
{ | ||
OldPassword = "oldPassword", | ||
NewPassword = "newPassword" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/account/password") | ||
.ExpectedHeaders(true) | ||
.WithJsonContent(request) | ||
.Respond(Constants.AppJson, Constants.UserResponse); | ||
|
||
_appwriteClient.SetSession(Constants.Session); | ||
|
||
// Act | ||
var result = await _appwriteClient.Account.UpdatePassword(request); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdatePassword_ShouldHandleException_WhenApiCallFails() | ||
{ | ||
// Arrange | ||
var request = new UpdatePasswordRequest() | ||
{ | ||
OldPassword = "oldPassword", | ||
NewPassword = "newPassword" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/account/password") | ||
.ExpectedHeaders(true) | ||
.WithJsonContent(request) | ||
.Respond(HttpStatusCode.BadRequest, Constants.AppJson, Constants.AppwriteError); | ||
|
||
_appwriteClient.SetSession(Constants.Session); | ||
|
||
// Act | ||
var result = await _appwriteClient.Account.UpdatePassword(request); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsAppwriteError); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdatePassword_ShouldReturnErrorResponse_WhenExceptionOccurs() | ||
{ | ||
// Arrange | ||
var request = new UpdatePasswordRequest() | ||
{ | ||
OldPassword = "oldPassword", | ||
NewPassword = "newPassword" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/account/password") | ||
.ExpectedHeaders(true) | ||
.WithJsonContent(request) | ||
.Throw(new HttpRequestException("An error occurred")); | ||
|
||
_appwriteClient.SetSession(Constants.Session); | ||
|
||
// Act | ||
var result = await _appwriteClient.Account.UpdatePassword(request); | ||
|
||
// Assert | ||
Assert.False(result.Success); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal("An error occurred", result.Result.AsT2.Message); | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
tests/PinguApps.Appwrite.Shared.Tests/Requests/UpdatePasswordRequestTests.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,35 @@ | ||
using PinguApps.Appwrite.Shared.Requests; | ||
|
||
namespace PinguApps.Appwrite.Shared.Tests.Requests; | ||
|
||
public class UpdatePasswordRequestTests | ||
{ | ||
[Fact] | ||
public void Constructor_InitializesWithExpectedValues() | ||
{ | ||
// Arrange & Act | ||
var request = new UpdatePasswordRequest(); | ||
|
||
// Assert | ||
Assert.NotNull(request.NewPassword); | ||
Assert.Equal(string.Empty, request.NewPassword); | ||
Assert.Null(request.OldPassword); | ||
} | ||
|
||
[Theory] | ||
[InlineData("oldPassword", "newPassword")] | ||
[InlineData(null, "anotherPassword")] | ||
public void Properties_CanBeSet(string? oldPassword, string newPassword) | ||
{ | ||
// Arrange | ||
var request = new UpdatePasswordRequest(); | ||
|
||
// Act | ||
request.OldPassword = oldPassword; | ||
request.NewPassword = newPassword; | ||
|
||
// Assert | ||
Assert.Equal(oldPassword, request.OldPassword); | ||
Assert.Equal(newPassword, request.NewPassword); | ||
} | ||
} |