feat: create chat message

This commit is contained in:
Stevan Freeborn
2024-06-27 23:26:53 -05:00
parent 68b359163d
commit 4c2cee643a
77 changed files with 3860 additions and 0 deletions
@@ -0,0 +1,74 @@
namespace AnthropicClient.Tests.Unit.Models;
public class ImageContentTests : SerializationTest
{
private readonly string _testJson = @"{
""source"": {
""media_type"": ""image/png"",
""data"": ""data""
},
""type"": ""image""
}";
[Fact]
public void Constructor_WhenCalled_ItShouldInitializeSource()
{
var expectedMediaType = "image/png";
var expectedData = "data";
var result = new ImageContent(expectedMediaType, expectedData);
result.Source.Should().BeEquivalentTo(new ImageSource(expectedMediaType, expectedData));
}
[Fact]
public void Constructor_WhenCalledAndMediaTypeIsNull_ItShouldThrowArgumentNullException()
{
var expectedData = "data";
var action = () => new ImageContent(null!, expectedData);
action.Should().Throw<ArgumentNullException>();
}
[Fact]
public void Constructor_WhenCalledAndDataIsNull_ItShouldThrowArgumentNullException()
{
var expectedMediaType = "image/png";
var action = () => new ImageContent(expectedMediaType, null!);
action.Should().Throw<ArgumentNullException>();
}
[Fact]
public void Constructor_WhenCalledWithInvalidMediaType_ItShouldThrowArgumentException()
{
var expectedMediaType = "invalid";
var expectedData = "data";
var action = () => new ImageContent(expectedMediaType, expectedData);
action.Should().Throw<ArgumentException>();
}
[Fact]
public void JsonSerialization_WhenSerialized_ItShouldHaveExpectedShape()
{
var content = new ImageContent("image/png", "data");
var actual = Serialize(content);
JsonAssert.Equal(_testJson, actual);
}
[Fact]
public void JsonDeserialization_WhenDeserialized_ItShouldHaveExpectedShape()
{
var expected = new ImageContent("image/png", "data");
var actual = Deserialize<ImageContent>(_testJson);
actual.Should().BeEquivalentTo(expected);
}
}