-
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 #253 from PinguApps/197-list-user-logs
Implemented list user logs
- Loading branch information
Showing
8 changed files
with
156 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using PinguApps.Appwrite.Shared.Utils; | ||
|
||
namespace PinguApps.Appwrite.Client.Utils; | ||
internal static class RequestUtils | ||
{ | ||
internal static IEnumerable<string> GetQueryStrings(List<Query>? queries) => | ||
queries?.Select(x => x.GetQueryString()) ?? []; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using PinguApps.Appwrite.Shared.Utils; | ||
|
||
namespace PinguApps.Appwrite.Server.Utils; | ||
internal static class RequestUtils | ||
{ | ||
internal static IEnumerable<string> GetQueryStrings(List<Query>? queries) => | ||
queries?.Select(x => x.GetQueryString()) ?? []; | ||
} |
104 changes: 104 additions & 0 deletions
104
tests/PinguApps.Appwrite.Server.Tests/Clients/Users/UsersClientTests.ListUserLogs.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,104 @@ | ||
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<ListUserLogsRequest> ListUserLogs_ValidRequestData = | ||
new TheoryData<ListUserLogsRequest> | ||
{ | ||
new ListUserLogsRequest | ||
{ | ||
UserId = IdUtils.GenerateUniqueId(), | ||
}, | ||
new ListUserLogsRequest | ||
{ | ||
UserId = IdUtils.GenerateUniqueId() | ||
} | ||
}; | ||
|
||
[Theory] | ||
[MemberData(nameof(ListUserLogs_ValidRequestData))] | ||
public async Task ListUserLogs_ShouldReturnSuccess_WhenApiCallSucceeds(ListUserLogsRequest request) | ||
{ | ||
// Arrange | ||
_mockHttp.Expect(HttpMethod.Get, $"{Constants.Endpoint}/users/{request.UserId}/logs") | ||
.ExpectedHeaders() | ||
.Respond(Constants.AppJson, Constants.LogsListResponse); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.ListUserLogs(request); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task ListUserLogs_ShouldProvideQueries_WhenQueriesProvided() | ||
{ | ||
// Arrange | ||
var query = Query.Limit(5); | ||
var request = new ListUserLogsRequest() | ||
{ | ||
UserId = IdUtils.GenerateUniqueId(), | ||
Queries = [query] | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Get, $"{Constants.Endpoint}/users/{request.UserId}/logs") | ||
.ExpectedHeaders() | ||
.WithQueryString($"queries[]={query.GetQueryString()}") | ||
.Respond(Constants.AppJson, Constants.LogsListResponse); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.ListUserLogs(request); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task ListUserLogs_ShouldHandleException_WhenApiCallFails() | ||
{ | ||
// Arrange | ||
var request = new ListUserLogsRequest | ||
{ | ||
UserId = IdUtils.GenerateUniqueId() | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Get, $"{Constants.Endpoint}/users/{request.UserId}/logs") | ||
.ExpectedHeaders() | ||
.Respond(HttpStatusCode.BadRequest, Constants.AppJson, Constants.AppwriteError); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.ListUserLogs(request); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsAppwriteError); | ||
} | ||
|
||
[Fact] | ||
public async Task ListUserLogs_ShouldReturnErrorResponse_WhenExceptionOccurs() | ||
{ | ||
// Arrange | ||
var request = new ListUserLogsRequest | ||
{ | ||
UserId = IdUtils.GenerateUniqueId() | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Get, $"{Constants.Endpoint}/users/{request.UserId}/logs") | ||
.ExpectedHeaders() | ||
.Throw(new HttpRequestException("An error occurred")); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.ListUserLogs(request); | ||
|
||
// Assert | ||
Assert.False(result.Success); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal("An error occurred", result.Result.AsT2.Message); | ||
} | ||
} |