Skip to content

Commit

Permalink
added tests for update phone verifiation
Browse files Browse the repository at this point in the history
  • Loading branch information
pingu2k4 committed Oct 12, 2024
1 parent c3b4ada commit 3c3d67c
Showing 1 changed file with 77 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
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
{
[Fact]
public async Task UpdatePhoneVerification_ShouldReturnSuccess_WhenApiCallSucceeds()
{
// Arrange
var request = new UpdatePhoneVerificationRequest
{
UserId = IdUtils.GenerateUniqueId()
};

_mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/users/{request.UserId}/verification/phone")
.ExpectedHeaders()
.WithJsonContent(request)
.Respond(Constants.AppJson, Constants.UserResponse);

// Act
var result = await _appwriteClient.Users.UpdatePhoneVerification(request);

// Assert
Assert.True(result.Success);
}

[Fact]
public async Task UpdatePhoneVerification_ShouldHandleException_WhenApiCallFails()
{
// Arrange
var request = new UpdatePhoneVerificationRequest
{
UserId = IdUtils.GenerateUniqueId(),
// Add other properties as needed
};

_mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/users/{request.UserId}/verification/phone")
.ExpectedHeaders()
.WithJsonContent(request)
.Respond(HttpStatusCode.BadRequest, Constants.AppJson, Constants.AppwriteError);

// Act
var result = await _appwriteClient.Users.UpdatePhoneVerification(request);

// Assert
Assert.True(result.IsError);
Assert.True(result.IsAppwriteError);
}

[Fact]
public async Task UpdatePhoneVerification_ShouldReturnErrorResponse_WhenExceptionOccurs()
{
// Arrange
var request = new UpdatePhoneVerificationRequest
{
UserId = IdUtils.GenerateUniqueId(),
// Add other properties as needed
};

_mockHttp.Expect(HttpMethod.Patch, $"{Constants.Endpoint}/users/{request.UserId}/verification/phone")
.ExpectedHeaders()
.WithJsonContent(request)
.Throw(new HttpRequestException("An error occurred"));

// Act
var result = await _appwriteClient.Users.UpdatePhoneVerification(request);

// Assert
Assert.False(result.Success);
Assert.True(result.IsInternalError);
Assert.Equal("An error occurred", result.Result.AsT2.Message);
}
}

0 comments on commit 3c3d67c

Please sign in to comment.