-
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 #239 from PinguApps/190-create-user-with-scrypt-pa…
…ssword Implemented create user with scrypt password
- Loading branch information
Showing
5 changed files
with
114 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,13 +17,18 @@ public App(Client.IAppwriteClient client, Server.Clients.IAppwriteClient server, | |
|
||
public async Task Run(string[] args) | ||
{ | ||
var request = new CreateUserWithPhpassPasswordRequest() | ||
var request = new CreateUserWithScryptPasswordRequest() | ||
{ | ||
Email = "[email protected]", | ||
Password = "$P$5ZDzPE45Ci.QxPaPz.03z6TYbakcSQ0" | ||
Password = "dbb97714c09bad417bb51288abd2c049c557e5e617839a7bc8c615492db859b57624366de72f04b9d4c3e6452a497a67a36f1afcc481d6d69f6da9e5f03598d7", | ||
PasswordSalt = "MySuperSalt", | ||
PasswordCpu = 16384, | ||
PasswordMemory = 8, | ||
PasswordParallel = 1, | ||
PasswordLength = 64 | ||
}; | ||
|
||
var response = await _server.Users.CreateUserWithPhpassPassword(request); | ||
var response = await _server.Users.CreateUserWithScryptPassword(request); | ||
|
||
Console.WriteLine(response.Result.Match( | ||
result => result.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
80 changes: 80 additions & 0 deletions
80
...Apps.Appwrite.Server.Tests/Clients/Users/UsersClientTests.CreateUserWithScryptPassword.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,80 @@ | ||
using System.Net; | ||
using PinguApps.Appwrite.Shared.Requests.Users; | ||
using PinguApps.Appwrite.Shared.Tests; | ||
using RichardSzalay.MockHttp; | ||
|
||
namespace PinguApps.Appwrite.Server.Tests.Clients.Users; | ||
public partial class UsersClientTests | ||
{ | ||
[Fact] | ||
public async Task CreateUserWithScryptPassword_ShouldReturnSuccess_WhenApiCallSucceeds() | ||
{ | ||
// Arrange | ||
var request = new CreateUserWithScryptPasswordRequest | ||
{ | ||
Email = "[email protected]", | ||
Password = "password123", | ||
PasswordSalt = "MySalt" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Post, $"{Constants.Endpoint}/users/scrypt") | ||
.WithJsonContent(request) | ||
.ExpectedHeaders() | ||
.Respond(Constants.AppJson, Constants.UserResponse); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.CreateUserWithScryptPassword(request); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task CreateUserWithScryptPassword_ShouldHandleException_WhenApiCallFails() | ||
{ | ||
// Arrange | ||
var request = new CreateUserWithScryptPasswordRequest | ||
{ | ||
Email = "[email protected]", | ||
Password = "password123", | ||
PasswordSalt = "MySalt" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Post, $"{Constants.Endpoint}/users/scrypt") | ||
.WithJsonContent(request) | ||
.ExpectedHeaders() | ||
.Respond(HttpStatusCode.BadRequest, Constants.AppJson, Constants.AppwriteError); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.CreateUserWithScryptPassword(request); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsAppwriteError); | ||
} | ||
|
||
[Fact] | ||
public async Task CreateUserWithScryptPassword_ShouldReturnErrorResponse_WhenExceptionOccurs() | ||
{ | ||
// Arrange | ||
var request = new CreateUserWithScryptPasswordRequest | ||
{ | ||
Email = "[email protected]", | ||
Password = "password123", | ||
PasswordSalt = "MySalt" | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Post, $"{Constants.Endpoint}/users/scrypt") | ||
.WithJsonContent(request) | ||
.ExpectedHeaders() | ||
.Throw(new HttpRequestException("An error occurred")); | ||
|
||
// Act | ||
var result = await _appwriteClient.Users.CreateUserWithScryptPassword(request); | ||
|
||
// Assert | ||
Assert.False(result.Success); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal("An error occurred", result.Result.AsT2.Message); | ||
} | ||
} |