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