-
-
Notifications
You must be signed in to change notification settings - Fork 346
Expand file tree
/
Copy pathDockerContainerOperations.cs
More file actions
238 lines (198 loc) · 8.18 KB
/
DockerContainerOperations.cs
File metadata and controls
238 lines (198 loc) · 8.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
namespace DotNet.Testcontainers.Clients
{
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Docker.DotNet;
using Docker.DotNet.Models;
using DotNet.Testcontainers.Configurations;
using DotNet.Testcontainers.Containers;
using Microsoft.Extensions.Logging;
internal sealed class DockerContainerOperations : DockerApiClient, IDockerContainerOperations
{
public DockerContainerOperations(Guid sessionId, IDockerEndpointAuthenticationConfiguration dockerEndpointAuthConfig, ILogger logger)
: base(sessionId, dockerEndpointAuthConfig, logger)
{
}
public async Task<IEnumerable<ContainerListResponse>> GetAllAsync(CancellationToken ct = default)
{
return await DockerClient.Containers.ListContainersAsync(new ContainersListParameters { All = true }, ct)
.ConfigureAwait(false);
}
public async Task<IEnumerable<ContainerListResponse>> GetAllAsync(FilterByProperty filters, CancellationToken ct = default)
{
return await DockerClient.Containers.ListContainersAsync(new ContainersListParameters { All = true, Filters = filters }, ct)
.ConfigureAwait(false);
}
public async Task<ContainerInspectResponse> ByIdAsync(string id, CancellationToken ct = default)
{
return await DockerClient.Containers.InspectContainerAsync(id, ct)
.ConfigureAwait(false);
}
public async Task<bool> ExistsWithIdAsync(string id, CancellationToken ct = default)
{
try
{
_ = await ByIdAsync(id, ct)
.ConfigureAwait(false);
return true;
}
catch (DockerContainerNotFoundException)
{
return false;
}
}
public async Task<long> GetExitCodeAsync(string id, CancellationToken ct = default)
{
var response = await DockerClient.Containers.WaitContainerAsync(id, ct)
.ConfigureAwait(false);
return response.StatusCode;
}
public async Task<(string Stdout, string Stderr)> GetLogsAsync(string id, TimeSpan since, TimeSpan until, bool timestampsEnabled = true, CancellationToken ct = default)
{
var logsParameters = new ContainerLogsParameters
{
ShowStdout = true,
ShowStderr = true,
Since = Math.Max(0, Math.Floor(since.TotalSeconds)).ToString("0", CultureInfo.InvariantCulture),
Until = Math.Max(0, Math.Floor(until.TotalSeconds)).ToString("0", CultureInfo.InvariantCulture),
Timestamps = timestampsEnabled,
};
using (var stdOutAndErrStream = await DockerClient.Containers.GetContainerLogsAsync(id, logsParameters, ct)
.ConfigureAwait(false))
{
return await stdOutAndErrStream.ReadOutputToEndAsync(ct)
.ConfigureAwait(false);
}
}
public Task StartAsync(string id, CancellationToken ct = default)
{
Logger.StartDockerContainer(id);
return DockerClient.Containers.StartContainerAsync(id, new ContainerStartParameters(), ct);
}
public Task StopAsync(string id, CancellationToken ct = default)
{
Logger.StopDockerContainer(id);
return DockerClient.Containers.StopContainerAsync(id, new ContainerStopParameters(), ct);
}
public Task PauseAsync(string id, CancellationToken ct = default)
{
Logger.PauseDockerContainer(id);
return DockerClient.Containers.PauseContainerAsync(id, ct);
}
public Task UnpauseAsync(string id, CancellationToken ct = default)
{
Logger.UnpauseDockerContainer(id);
return DockerClient.Containers.UnpauseContainerAsync(id, ct);
}
public Task RemoveAsync(string id, CancellationToken ct = default)
{
Logger.DeleteDockerContainer(id);
return DockerClient.Containers.RemoveContainerAsync(id, new ContainerRemoveParameters { Force = true, RemoveVolumes = true }, ct);
}
public Task ExtractArchiveToContainerAsync(string id, string path, TarOutputMemoryStream tarStream, CancellationToken ct = default)
{
Logger.CopyArchiveToDockerContainer(id, tarStream.ContentLength);
var copyToContainerParameters = new CopyToContainerParameters
{
Path = path,
};
return DockerClient.Containers.ExtractArchiveToContainerAsync(id, copyToContainerParameters, tarStream, ct);
}
public async Task<Stream> GetArchiveFromContainerAsync(string id, string path, CancellationToken ct = default)
{
Logger.ReadArchiveFromDockerContainer(id, path);
var tarResponse = await DockerClient.Containers.GetArchiveFromContainerAsync(id, new ContainerPathStatParameters { Path = path }, false, ct)
.ConfigureAwait(false);
return tarResponse.Stream;
}
public async Task AttachAsync(string id, IOutputConsumer outputConsumer, CancellationToken ct = default)
{
if (!outputConsumer.Enabled)
{
return;
}
Logger.AttachToDockerContainer(id, outputConsumer.GetType());
var attachParameters = new ContainerAttachParameters
{
Stdout = true,
Stderr = true,
Stream = true,
};
var stream = await DockerClient.Containers.AttachContainerAsync(id, attachParameters, ct)
.ConfigureAwait(false);
_ = stream.CopyOutputToAsync(Stream.Null, outputConsumer.Stdout, outputConsumer.Stderr, ct)
.ConfigureAwait(false);
}
public async Task<ExecResult> ExecAsync(string id, IList<string> command, CancellationToken ct = default)
{
Logger.ExecuteCommandInDockerContainer(id, command);
var execCreateParameters = new ContainerExecCreateParameters
{
Cmd = command,
AttachStdout = true,
AttachStderr = true,
};
var execCreateResponse = await DockerClient.Exec.CreateContainerExecAsync(id, execCreateParameters, ct)
.ConfigureAwait(false);
using (var stdOutAndErrStream = await DockerClient.Exec.StartContainerExecAsync(execCreateResponse.ID, new ContainerExecStartParameters(), ct)
.ConfigureAwait(false))
{
var (stdout, stderr) = await stdOutAndErrStream.ReadOutputToEndAsync(ct)
.ConfigureAwait(false);
var execInspectResponse = await DockerClient.Exec.InspectContainerExecAsync(execCreateResponse.ID, ct)
.ConfigureAwait(false);
return new ExecResult(stdout, stderr, execInspectResponse.ExitCode);
}
}
public async Task<string> RunAsync(IContainerConfiguration configuration, CancellationToken ct = default)
{
var converter = new ContainerConfigurationConverter(configuration);
var hostConfig = new HostConfig
{
AutoRemove = configuration.AutoRemove.HasValue && configuration.AutoRemove.Value,
Privileged = configuration.Privileged.HasValue && configuration.Privileged.Value,
ExtraHosts = converter.ExtraHosts,
PortBindings = converter.PortBindings,
Mounts = converter.Mounts,
};
var networkingConfig = new NetworkingConfig
{
EndpointsConfig = converter.Networks,
};
var createParameters = new CreateContainerParameters
{
Image = configuration.Image.FullName,
Platform = configuration.Image.Platform,
Name = configuration.Name,
Hostname = configuration.Hostname,
WorkingDir = configuration.WorkingDirectory,
Entrypoint = converter.Entrypoint,
Cmd = converter.Command,
Env = converter.Environments,
Labels = converter.Labels,
ExposedPorts = converter.ExposedPorts,
HostConfig = hostConfig,
NetworkingConfig = networkingConfig,
};
if (configuration.Reuse.HasValue && configuration.Reuse.Value)
{
createParameters.Labels.Add(TestcontainersClient.TestcontainersReuseHashLabel, configuration.GetReuseHash());
}
if (configuration.ParameterModifiers != null)
{
foreach (var parameterModifier in configuration.ParameterModifiers)
{
parameterModifier(createParameters);
}
}
var createContainerResponse = await DockerClient.Containers.CreateContainerAsync(createParameters, ct)
.ConfigureAwait(false);
Logger.DockerContainerCreated(createContainerResponse.ID);
return createContainerResponse.ID;
}
}
}