-
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 #131 from PinguApps/98-list-sessions
Implemented list sessions
- Loading branch information
Showing
10 changed files
with
326 additions
and
16 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
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,14 @@ | ||
using System.Collections.Generic; | ||
using System.Text.Json.Serialization; | ||
|
||
namespace PinguApps.Appwrite.Shared.Responses; | ||
|
||
/// <summary> | ||
/// An Appwrite Sessions List object | ||
/// </summary> | ||
/// <param name="Total">Total number of sessions documents that matched your query</param> | ||
/// <param name="Sessions">List of sessions. Can be one of: <see cref="Session"/></param> | ||
public record SessionsList( | ||
[property: JsonPropertyName("total")] int Total, | ||
[property: JsonPropertyName("sessions")] IReadOnlyList<Session> Sessions | ||
); |
74 changes: 74 additions & 0 deletions
74
tests/PinguApps.Appwrite.Client.Tests/Clients/Account/AccountClientTests.ListSessions.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,74 @@ | ||
using System.Net; | ||
using PinguApps.Appwrite.Client.Clients; | ||
using PinguApps.Appwrite.Shared.Tests; | ||
using RichardSzalay.MockHttp; | ||
|
||
namespace PinguApps.Appwrite.Client.Tests.Clients.Account; | ||
public partial class AccountClientTests | ||
{ | ||
[Fact] | ||
public async Task ListSessions_ShouldReturnSuccess_WhenApiCallSucceeds() | ||
{ | ||
// Arrange | ||
_mockHttp.Expect(HttpMethod.Get, $"{Constants.Endpoint}/account/sessions") | ||
.ExpectedHeaders(true) | ||
.Respond(Constants.AppJson, Constants.SessionsListResponse); | ||
|
||
_appwriteClient.SetSession(Constants.Session); | ||
|
||
// Act | ||
var result = await _appwriteClient.Account.ListSessions(); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task ListSessions_ShouldReturnError_WhenSessionIsNull() | ||
{ | ||
// Act | ||
var result = await _appwriteClient.Account.ListSessions(); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal(ISessionAware.SessionExceptionMessage, result.Result.AsT2.Message); | ||
} | ||
|
||
[Fact] | ||
public async Task ListSessions_ShouldHandleException_WhenApiCallFails() | ||
{ | ||
// Arrange | ||
_mockHttp.Expect(HttpMethod.Get, $"{Constants.Endpoint}/account/sessions") | ||
.ExpectedHeaders(true) | ||
.Respond(HttpStatusCode.BadRequest, Constants.AppJson, Constants.AppwriteError); | ||
|
||
_appwriteClient.SetSession(Constants.Session); | ||
|
||
// Act | ||
var result = await _appwriteClient.Account.ListSessions(); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsAppwriteError); | ||
} | ||
|
||
[Fact] | ||
public async Task ListSessions_ShouldReturnErrorResponse_WhenExceptionOccurs() | ||
{ | ||
// Arrange | ||
_mockHttp.Expect(HttpMethod.Get, $"{Constants.Endpoint}/account/sessions") | ||
.ExpectedHeaders(true) | ||
.Throw(new HttpRequestException("An error occurred")); | ||
|
||
_appwriteClient.SetSession(Constants.Session); | ||
|
||
// Act | ||
var result = await _appwriteClient.Account.ListSessions(); | ||
|
||
// Assert | ||
Assert.False(result.Success); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal("An error occurred", result.Result.AsT2.Message); | ||
} | ||
} |
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 |
---|---|---|
|
@@ -188,4 +188,45 @@ public static class Constants | |
"recoveryCode": true | ||
} | ||
"""; | ||
|
||
public const string SessionsListResponse = """ | ||
{ | ||
"total": 5, | ||
"sessions": [ | ||
{ | ||
"$id": "5e5ea5c16897e", | ||
"$createdAt": "2020-10-15T06:38:00.000+00:00", | ||
"$updatedAt": "2020-10-15T06:38:00.000+00:00", | ||
"userId": "5e5bb8c16897e", | ||
"expire": "2020-10-15T06:38:00.000+00:00", | ||
"provider": "email", | ||
"providerUid": "[email protected]", | ||
"providerAccessToken": "MTQ0NjJkZmQ5OTM2NDE1ZTZjNGZmZjI3", | ||
"providerAccessTokenExpiry": "2020-10-15T06:38:00.000+00:00", | ||
"providerRefreshToken": "MTQ0NjJkZmQ5OTM2NDE1ZTZjNGZmZjI3", | ||
"ip": "127.0.0.1", | ||
"osCode": "Mac", | ||
"osName": "Mac", | ||
"osVersion": "Mac", | ||
"clientType": "browser", | ||
"clientCode": "CM", | ||
"clientName": "Chrome Mobile iOS", | ||
"clientVersion": "84.0", | ||
"clientEngine": "WebKit", | ||
"clientEngineVersion": "605.1.15", | ||
"deviceName": "smartphone", | ||
"deviceBrand": "Google", | ||
"deviceModel": "Nexus 5", | ||
"countryCode": "US", | ||
"countryName": "United States", | ||
"current": true, | ||
"factors": [ | ||
"email" | ||
], | ||
"secret": "5e5bb8c16897e", | ||
"mfaUpdatedAt": "2020-10-15T06:38:00.000+00:00" | ||
} | ||
] | ||
} | ||
"""; | ||
} |
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
Oops, something went wrong.