Files
server/test/Api.Test/Tools/Models/Request/SendRequestModelTests.cs
John Harrington 44b818acc6 [PM-3836] Tools - Make Controllers, Services and API Models nullable (#7212)
* enable nullable on AzureSendFileStorageService

* LocalSendStorageService nullable

* revert primary constructor and begin updating some models

* SendRequestModel > nullable

* SendAccessResponseModel SendFileDownloadDataResponseModel SendFileUploadDataResponseModel > nullable

* SendResponseModel SendFileModel SendTextModel > nullable

* ImportCiphersController > nullable
2026-04-02 10:15:18 -07:00

190 lines
5.9 KiB
C#

using System.Text.Json;
using Bit.Api.Tools.Models;
using Bit.Api.Tools.Models.Request;
using Bit.Core.Exceptions;
using Bit.Core.Tools.Entities;
using Bit.Core.Tools.Enums;
using Bit.Core.Tools.Services;
using Bit.Test.Common.Helpers;
using NSubstitute;
using Xunit;
namespace Bit.Api.Test.Models.Request;
public class SendRequestModelTests
{
[Fact]
public void ToSend_Text_Success()
{
var deletionDate = DateTime.UtcNow.AddDays(5);
var sendRequest = new SendRequestModel
{
AuthType = AuthType.Password,
DeletionDate = deletionDate,
Disabled = false,
ExpirationDate = null,
HideEmail = false,
Key = "encrypted_key",
MaxAccessCount = null,
Name = "encrypted_name",
Notes = null,
Password = "Password",
Text = new SendTextModel()
{
Hidden = false,
Text = "encrypted_text"
},
Type = SendType.Text,
};
var sendAuthorizationService = Substitute.For<ISendAuthorizationService>();
sendAuthorizationService.HashPassword(Arg.Any<string>())
.Returns((info) => $"hashed_{(string)info[0]}");
var send = sendRequest.ToSend(Guid.NewGuid(), sendAuthorizationService);
Assert.Equal(deletionDate, send.DeletionDate);
Assert.False(send.Disabled);
Assert.Null(send.ExpirationDate);
Assert.False(send.HideEmail);
Assert.Equal("encrypted_key", send.Key);
Assert.Equal("hashed_Password", send.Password);
using var jsonDocument = JsonDocument.Parse(send.Data);
var root = jsonDocument.RootElement;
var text = AssertHelper.AssertJsonProperty(root, "Text", JsonValueKind.String).GetString();
Assert.Equal("encrypted_text", text);
AssertHelper.AssertJsonProperty(root, "Hidden", JsonValueKind.False);
Assert.False(root.TryGetProperty("Notes", out var _));
var name = AssertHelper.AssertJsonProperty(root, "Name", JsonValueKind.String).GetString();
Assert.Equal("encrypted_name", name);
}
[Fact]
public void ValidateEdit_DeletionDateInPast_ThrowsBadRequestException()
{
var send = new SendRequestModel
{
Key = "test_key",
DeletionDate = DateTime.UtcNow.AddMinutes(-5)
};
Assert.Throws<BadRequestException>(() => send.ValidateEdit());
}
[Fact]
public void ValidateEdit_DeletionDateTooFarInFuture_ThrowsBadRequestException()
{
var send = new SendRequestModel
{
Key = "test_key",
DeletionDate = DateTime.UtcNow.AddDays(32)
};
Assert.Throws<BadRequestException>(() => send.ValidateEdit());
}
[Fact]
public void ValidateEdit_ExpirationDateInPast_ThrowsBadRequestException()
{
var send = new SendRequestModel
{
Key = "test_key",
ExpirationDate = DateTime.UtcNow.AddMinutes(-5)
};
Assert.Throws<BadRequestException>(() => send.ValidateEdit());
}
[Fact]
public void ValidateEdit_ExpirationDateGreaterThanDeletionDate_ThrowsBadRequestException()
{
var send = new SendRequestModel
{
Key = "test_key",
DeletionDate = DateTime.UtcNow.AddDays(1),
ExpirationDate = DateTime.UtcNow.AddDays(2)
};
Assert.Throws<BadRequestException>(() => send.ValidateEdit());
}
[Fact]
public void ValidateEdit_ValidDates_Success()
{
var send = new SendRequestModel
{
Key = "test_key",
DeletionDate = DateTime.UtcNow.AddDays(10),
ExpirationDate = DateTime.UtcNow.AddDays(5)
};
Exception ex = Record.Exception(() => send.ValidateEdit());
Assert.Null(ex);
}
[Fact]
public void UpdateSend_WithExistingAndRequestPasswordAuth_PreservesExistingPasswordHash()
{
var deletionDate = DateTime.UtcNow.AddDays(5);
var sendRequest = new SendRequestModel
{
AuthType = AuthType.Password,
DeletionDate = deletionDate,
Disabled = false,
Key = "encrypted_key",
Name = "encrypted_name",
Text = new SendTextModel { Hidden = false, Text = "encrypted_text" },
Type = SendType.Text,
};
var existingSend = new Send
{
Type = SendType.Text,
Password = "existing_hashed_password",
AuthType = AuthType.Password,
Emails = null,
};
var sendAuthorizationService = Substitute.For<ISendAuthorizationService>();
var updatedSend = sendRequest.UpdateSend(existingSend, sendAuthorizationService);
Assert.Equal(AuthType.Password, updatedSend.AuthType);
Assert.Equal("existing_hashed_password", updatedSend.Password);
Assert.Null(updatedSend.Emails);
}
[Fact]
public void UpdateSend_ChangingFromEmailToNone_ClearsEmailsAndSetsAuthTypeNone()
{
var deletionDate = DateTime.UtcNow.AddDays(5);
var sendRequest = new SendRequestModel
{
AuthType = AuthType.None,
DeletionDate = deletionDate,
Disabled = false,
Key = "encrypted_key",
Name = "encrypted_name",
Text = new SendTextModel { Hidden = false, Text = "encrypted_text" },
Type = SendType.Text,
};
var existingSend = new Send
{
Type = SendType.Text,
Emails = "old@example.com",
AuthType = AuthType.Email,
Password = null,
};
var sendAuthorizationService = Substitute.For<ISendAuthorizationService>();
var updatedSend = sendRequest.UpdateSend(existingSend, sendAuthorizationService);
Assert.Equal(AuthType.None, updatedSend.AuthType);
Assert.Null(updatedSend.Emails);
Assert.Null(updatedSend.Password);
}
}