Files
microsoft--semantic-kernel/dotnet/test/VectorData/CosmosNoSql.ConformanceTests/ModelTests/CosmosNoSqlDynamicModelTests.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

27 lines
1.0 KiB
C#

// Copyright (c) Microsoft. All rights reserved.
using CosmosNoSql.ConformanceTests.Support;
using Microsoft.Azure.Cosmos;
using Microsoft.Extensions.VectorData;
using VectorData.ConformanceTests.ModelTests;
using VectorData.ConformanceTests.Support;
using Xunit;
namespace CosmosNoSql.ConformanceTests.ModelTests;
public class CosmosNoSqlDynamicModelTests(CosmosNoSqlDynamicModelTests.Fixture fixture)
: DynamicModelTests<string>(fixture), IClassFixture<CosmosNoSqlDynamicModelTests.Fixture>
{
public override async Task GetAsync_with_filter_and_multiple_OrderBys()
{
// CosmosException: The order by query does not have a corresponding composite index that it can be served from.
var exception = await Assert.ThrowsAsync<VectorStoreException>(base.GetAsync_with_filter_and_multiple_OrderBys);
Assert.IsType<CosmosException>(exception.InnerException);
}
public new class Fixture : DynamicModelTests<string>.Fixture
{
public override TestStore TestStore => CosmosNoSqlTestStore.Instance;
}
}