Files
microsoft--semantic-kernel/dotnet/test/VectorData/Weaviate.UnitTests/WeaviateVectorStoreTests.cs
T
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

81 lines
2.3 KiB
C#

// Copyright (c) Microsoft. All rights reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text.Json;
using System.Threading.Tasks;
using Microsoft.SemanticKernel.Connectors.Weaviate;
using Xunit;
namespace SemanticKernel.Connectors.Weaviate.UnitTests;
/// <summary>
/// Unit tests for <see cref="WeaviateVectorStore"/> class.
/// </summary>
public sealed class WeaviateVectorStoreTests : IDisposable
{
private readonly HttpMessageHandlerStub _messageHandlerStub = new();
private readonly HttpClient _mockHttpClient;
public WeaviateVectorStoreTests()
{
this._mockHttpClient = new(this._messageHandlerStub, false) { BaseAddress = new Uri("http://test") };
}
[Fact]
public void GetCollectionWithNotSupportedKeyThrowsException()
{
// Arrange
using var sut = new WeaviateVectorStore(this._mockHttpClient);
// Act & Assert
Assert.Throws<NotSupportedException>(() => sut.GetCollection<string, WeaviateHotel>("Collection"));
}
[Fact]
public void GetCollectionWithSupportedKeyReturnsCollection()
{
// Arrange
using var sut = new WeaviateVectorStore(this._mockHttpClient);
// Act
var collection = sut.GetCollection<Guid, WeaviateHotel>("Collection1");
// Assert
Assert.NotNull(collection);
}
[Fact]
public async Task ListCollectionNamesReturnsCollectionNamesAsync()
{
// Arrange
var expectedCollectionNames = new List<string> { "Collection1", "Collection2", "Collection3" };
var response = new WeaviateGetCollectionsResponse
{
Collections = expectedCollectionNames.Select(name => new WeaviateCollectionSchema(name)).ToList()
};
this._messageHandlerStub.ResponseToReturn = new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StringContent(JsonSerializer.Serialize(response))
};
using var sut = new WeaviateVectorStore(this._mockHttpClient);
// Act
var actualCollectionNames = await sut.ListCollectionNamesAsync().ToListAsync();
// Assert
Assert.Equal(expectedCollectionNames, actualCollectionNames);
}
public void Dispose()
{
this._mockHttpClient.Dispose();
this._messageHandlerStub.Dispose();
}
}