Implemented interface member:
property
SocketPath
Aspire.Cli.Backchannel.IAppHostAuxiliaryBackchannel.SocketPath
11 writes to SocketPath
Aspire.Cli.Tests (11)
Backchannel\OrphanedAppHostCollectorTests.cs (1)
378SocketPath = socketPath,
Commands\PsCommandTests.cs (1)
138SocketPath = "/tmp/test2.sock",
Commands\StopCommandTests.cs (9)
199connection.SocketPath = CreateMatchingSocketFile(appHostPath, workspace, 5); 245primaryConnection.SocketPath = CreateMatchingSocketFile(primaryAppHost, workspace, 7); 250nestedConnection.SocketPath = CreateMatchingSocketFile(nestedAppHost, workspace, 8); 326connection.SocketPath = CreateMatchingSocketFile(appHostPath, workspace, 6); 365connection.SocketPath = CreateMatchingSocketFile(appHostPath, workspace, 6); 551connection.SocketPath = CreateMatchingSocketFile(runningAppHostFile.FullName, workspace, 11); 1132connection.SocketPath = CreateMatchingSocketFile(appHostFile.FullName, workspace, 10); 1195connection.SocketPath = socketPath; 1286SocketPath = $"socket.{processId.ToString(CultureInfo.InvariantCulture)}",
18 references to SocketPath
Aspire.Cli.Tests (18)
Commands\AgentMcpCommandTests.cs (5)
173ctx.BackchannelMonitor!.AddConnection(mockBackchannel.Hash, mockBackchannel.SocketPath, mockBackchannel); 246ctx.BackchannelMonitor!.AddConnection(mockBackchannel.Hash, mockBackchannel.SocketPath, mockBackchannel); 320ctx.BackchannelMonitor!.AddConnection(mockBackchannel.Hash, mockBackchannel.SocketPath, mockBackchannel); 426ctx.BackchannelMonitor!.AddConnection(mockBackchannel.Hash, mockBackchannel.SocketPath, mockBackchannel); 512ctx.BackchannelMonitor!.AddConnection(mockBackchannel.Hash, mockBackchannel.SocketPath, mockBackchannel);
Commands\StopCommandTests.cs (12)
200monitor.AddConnection("hash1", connection.SocketPath, connection); 251monitor.AddConnection("hash1", primaryConnection.SocketPath, primaryConnection); 252monitor.AddConnection("hash2", nestedConnection.SocketPath, nestedConnection); 270Assert.False(File.Exists(primaryConnection.SocketPath)); 271Assert.True(File.Exists(nestedConnection.SocketPath)); 327monitor.AddConnection("hash1", connection.SocketPath, connection); 348Assert.True(File.Exists(connection.SocketPath)); 366monitor.AddConnection("hash1", connection.SocketPath, connection); 388Assert.False(File.Exists(connection.SocketPath)); 552monitor.AddConnection("hash1", connection.SocketPath, connection); 1094monitor.AddConnection("hash1", connection.SocketPath, connection); 1133monitor.AddConnection("hash1", connection.SocketPath, connection);
Commands\TerminalCommandTests.cs (1)
672public string SocketPath => _inner.SocketPath;