-
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 #251 from PinguApps/196-update-user-labels
Implemented update user labels
- Loading branch information
Showing
5 changed files
with
117 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
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
87 changes: 87 additions & 0 deletions
87
tests/PinguApps.Appwrite.Server.Tests/Clients/Users/UsersClientTests.UpdateUserLabels.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,87 @@ | ||
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 | ||
{ | ||
public static TheoryData<UpdateUserLabelsRequest> UpdateUserLabels_ValidRequestData = | ||
[ | ||
new UpdateUserLabelsRequest | ||
{ | ||
UserId = IdUtils.GenerateUniqueId(), | ||
Labels = ["label1", "label2"] | ||
}, | ||
new UpdateUserLabelsRequest | ||
{ | ||
UserId = IdUtils.GenerateUniqueId(), | ||
Labels = ["label3", "label4"] | ||
} | ||
]; | ||
|
||
[Theory] | ||
[MemberData(nameof(UpdateUserLabels_ValidRequestData))] | ||
public async Task UpdateUserLabels_ShouldReturnSuccess_WhenApiCallSucceeds(UpdateUserLabelsRequest request) | ||
{ | ||
// Arrange | ||
_mockHttp.Expect(HttpMethod.Put, $"{Constants.Endpoint}/users/{request.UserId}/labels") | ||
.WithJsonContent(request) | ||
.ExpectedHeaders() | ||
.Respond(Constants.AppJson, Constants.UserResponse); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.UpdateUserLabels(request); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdateUserLabels_ShouldHandleException_WhenApiCallFails() | ||
{ | ||
// Arrange | ||
var request = new UpdateUserLabelsRequest | ||
{ | ||
UserId = "user123", | ||
Labels = ["label1", "label2"] | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Put, $"{Constants.Endpoint}/users/user123/labels") | ||
.WithJsonContent(request) | ||
.ExpectedHeaders() | ||
.Respond(HttpStatusCode.BadRequest, Constants.AppJson, Constants.AppwriteError); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.UpdateUserLabels(request); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsAppwriteError); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdateUserLabels_ShouldReturnErrorResponse_WhenExceptionOccurs() | ||
{ | ||
// Arrange | ||
var request = new UpdateUserLabelsRequest | ||
{ | ||
UserId = "user123", | ||
Labels = ["label1", "label2"] | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Put, $"{Constants.Endpoint}/users/user123/labels") | ||
.WithJsonContent(request) | ||
.ExpectedHeaders() | ||
.Throw(new HttpRequestException("An error occurred")); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.UpdateUserLabels(request); | ||
|
||
// Assert | ||
Assert.False(result.Success); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal("An error occurred", result.Result.AsT2.Message); | ||
} | ||
} |