feat: add serialization tests for CharacterLocationCitation, CitationDelta, ContentBlockLocationCitation, PageLocationCitation, and DocumentContent classes
This commit is contained in:
@@ -1,7 +1,19 @@
|
||||
namespace AnthropicClient.Tests.Unit.Models;
|
||||
|
||||
public class CitationDeltaTests
|
||||
public class CitationDeltaTests : SerializationTest
|
||||
{
|
||||
private readonly string _testJson = @"{
|
||||
""type"": ""citations_delta"",
|
||||
""citation"": {
|
||||
""type"": ""content_block_location"",
|
||||
""cited_text"": ""cited text"",
|
||||
""document_index"": 1,
|
||||
""document_title"": ""document title"",
|
||||
""start_block_index"": 2,
|
||||
""end_block_index"": 3
|
||||
}
|
||||
}";
|
||||
|
||||
[Fact]
|
||||
public void Constructor_WhenCalled_ItShouldSetProperties()
|
||||
{
|
||||
@@ -28,4 +40,39 @@ public class CitationDeltaTests
|
||||
|
||||
act.Should().Throw<ArgumentNullException>();
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void JsonSerialization_WhenSerialized_ItShouldHaveExpectedShape()
|
||||
{
|
||||
var citation = new ContentBlockLocationCitation
|
||||
{
|
||||
Type = "content_block_location",
|
||||
CitedText = "cited text",
|
||||
DocumentIndex = 1,
|
||||
DocumentTitle = "document title",
|
||||
StartBlockIndex = 2,
|
||||
EndBlockIndex = 3
|
||||
};
|
||||
|
||||
var citationDelta = new CitationDelta(citation);
|
||||
var result = Serialize<ContentDelta>(citationDelta);
|
||||
|
||||
JsonAssert.Equal(_testJson, result);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void JsonDeserialization_WhenDeserialized_ItShouldHaveExpectedShape()
|
||||
{
|
||||
var citation = Deserialize<ContentDelta>(_testJson);
|
||||
|
||||
var citationDelta = citation.As<CitationDelta>();
|
||||
citationDelta!.Type.Should().Be("citations_delta");
|
||||
|
||||
var contentBlockLocationCitation = citationDelta.Citation.As<ContentBlockLocationCitation>();
|
||||
contentBlockLocationCitation!.CitedText.Should().Be("cited text");
|
||||
contentBlockLocationCitation.DocumentIndex.Should().Be(1);
|
||||
contentBlockLocationCitation.DocumentTitle.Should().Be("document title");
|
||||
contentBlockLocationCitation.StartBlockIndex.Should().Be(2);
|
||||
contentBlockLocationCitation.EndBlockIndex.Should().Be(3);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user