-
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 #149 from PinguApps/146-create-email-password-session
Added create email password session server implementation
- Loading branch information
Showing
6 changed files
with
123 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
using Microsoft.Extensions.Configuration; | ||
using PinguApps.Appwrite.Client; | ||
using PinguApps.Appwrite.Server.Servers; | ||
using PinguApps.Appwrite.Shared.Requests; | ||
|
||
namespace PinguApps.Appwrite.Playground; | ||
internal class App | ||
|
@@ -20,7 +21,14 @@ public async Task Run(string[] args) | |
{ | ||
//_client.SetSession(_session); | ||
|
||
var response = await _server.Account.CreateAnonymousSession(); | ||
var request = new CreateEmailPasswordSessionRequest() | ||
{ | ||
Email = "[email protected]", | ||
Password = "REDACTED" | ||
}; | ||
|
||
|
||
var response = await _server.Account.CreateEmailPasswordSession(request); | ||
|
||
Console.WriteLine(response.Result.Match( | ||
account => account.ToString(), | ||
|
@@ -29,7 +37,7 @@ public async Task Run(string[] args) | |
|
||
await Task.Delay(5000); | ||
|
||
var response2 = await _server.Account.CreateAnonymousSession(); | ||
var response2 = await _server.Account.CreateEmailPasswordSession(request); | ||
|
||
Console.WriteLine(response2.Result.Match( | ||
account => account.ToString(), | ||
|
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
77 changes: 77 additions & 0 deletions
77
...ps.Appwrite.Server.Tests/Servers/Account/AccountServerTests.CreateEmailPasswordSession.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,77 @@ | ||
using System.Net; | ||
using PinguApps.Appwrite.Shared.Requests; | ||
using PinguApps.Appwrite.Shared.Tests; | ||
using RichardSzalay.MockHttp; | ||
|
||
namespace PinguApps.Appwrite.Server.Tests.Servers.Account; | ||
public partial class AccountServerTests | ||
{ | ||
[Fact] | ||
public async Task CreateEmailPasswordSession_ShouldReturnSuccess_WhenApiCallSucceeds() | ||
{ | ||
// Arrange | ||
var request = new CreateEmailPasswordSessionRequest() | ||
{ | ||
Email = "[email protected]", | ||
Password = "Password" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Post, $"{Constants.Endpoint}/account/sessions/email") | ||
.ExpectedHeaders() | ||
.WithJsonContent(request) | ||
.Respond(Constants.AppJson, Constants.SessionResponse); | ||
|
||
// Act | ||
var result = await _appwriteServer.Account.CreateEmailPasswordSession(request); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task CreateEmailPasswordSession_ShouldHandleException_WhenApiCallFails() | ||
{ | ||
// Arrange | ||
var request = new CreateEmailPasswordSessionRequest() | ||
{ | ||
Email = "[email protected]", | ||
Password = "Password" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Post, $"{Constants.Endpoint}/account/sessions/email") | ||
.ExpectedHeaders() | ||
.WithJsonContent(request) | ||
.Respond(HttpStatusCode.BadRequest, Constants.AppJson, Constants.AppwriteError); | ||
|
||
// Act | ||
var result = await _appwriteServer.Account.CreateEmailPasswordSession(request); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsAppwriteError); | ||
} | ||
|
||
[Fact] | ||
public async Task CreateEmailPasswordSession_ShouldReturnErrorResponse_WhenExceptionOccurs() | ||
{ | ||
// Arrange | ||
var request = new CreateEmailPasswordSessionRequest() | ||
{ | ||
Email = "[email protected]", | ||
Password = "Password" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Post, $"{Constants.Endpoint}/account/sessions/email") | ||
.ExpectedHeaders() | ||
.WithJsonContent(request) | ||
.Throw(new HttpRequestException("An error occurred")); | ||
|
||
// Act | ||
var result = await _appwriteServer.Account.CreateEmailPasswordSession(request); | ||
|
||
// Assert | ||
Assert.False(result.Success); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal("An error occurred", result.Result.AsT2.Message); | ||
} | ||
} |