stela ops usage fixes roles propagation and timoeut, one account to support multi tenants, migrations consolidation, search to support documentation, doctor and open api vector db search

This commit is contained in:
master
2026-02-22 19:27:54 +02:00
parent a29f438f53
commit bd8fee6ed8
373 changed files with 832097 additions and 3369 deletions

View File

@@ -56,21 +56,21 @@ public sealed class MessagingTransportIntegrationTests
var tlsServer = new TlsTransportServer(tlsOptions, NullLogger<TlsTransportServer>.Instance);
var transportClient = new GatewayTransportClient(
NullLogger<GatewayTransportClient>.Instance,
tcpServer,
tlsServer,
NullLogger<GatewayTransportClient>.Instance,
messagingServer);
// Act & Assert - construction should succeed with messaging server
var hostedService = new GatewayHostedService(
tcpServer,
tlsServer,
routingState.Object,
transportClient,
claimsStore.Object,
gatewayOptions,
new GatewayServiceStatus(),
NullLogger<GatewayHostedService>.Instance,
tcpServer: tcpServer,
tlsServer: tlsServer,
openApiCache: null,
messagingServer: messagingServer);
@@ -92,21 +92,21 @@ public sealed class MessagingTransportIntegrationTests
var tlsServer = new TlsTransportServer(tlsOptions, NullLogger<TlsTransportServer>.Instance);
var transportClient = new GatewayTransportClient(
NullLogger<GatewayTransportClient>.Instance,
tcpServer,
tlsServer,
NullLogger<GatewayTransportClient>.Instance,
messagingServer: null);
// Act & Assert - construction should succeed without messaging server
var hostedService = new GatewayHostedService(
tcpServer,
tlsServer,
routingState.Object,
transportClient,
claimsStore.Object,
gatewayOptions,
new GatewayServiceStatus(),
NullLogger<GatewayHostedService>.Instance,
tcpServer: tcpServer,
tlsServer: tlsServer,
openApiCache: null,
messagingServer: null);
@@ -132,9 +132,9 @@ public sealed class MessagingTransportIntegrationTests
// Act
var transportClient = new GatewayTransportClient(
NullLogger<GatewayTransportClient>.Instance,
tcpServer,
tlsServer,
NullLogger<GatewayTransportClient>.Instance,
messagingServer);
// Assert
@@ -152,9 +152,9 @@ public sealed class MessagingTransportIntegrationTests
// No messaging server provided
var transportClient = new GatewayTransportClient(
NullLogger<GatewayTransportClient>.Instance,
tcpServer,
tlsServer,
NullLogger<GatewayTransportClient>.Instance,
messagingServer: null);
var connection = new ConnectionState
@@ -193,6 +193,7 @@ public sealed class MessagingTransportIntegrationTests
Assert.Equal("localhost:6379", options.ConnectionString);
Assert.Null(options.Database);
Assert.Equal("router:requests:{service}", options.RequestQueueTemplate);
Assert.Equal("gateway-control", options.GatewayControlQueueServiceName);
Assert.Equal("router:responses", options.ResponseQueueName);
Assert.Equal("router-gateway", options.ConsumerGroup);
Assert.Equal("30s", options.RequestTimeout);