在容器中运行 .NET 测试

先决条件

完成本指南的前面所有部分,从 容器化 .NET 应用程序 开始。

概述

测试是现代软件开发的重要组成部分。测试对于不同的开发团队来说可能意味着很多不同的东西。有单元测试、集成测试和端到端测试。在本指南中,我们将看看在开发和构建时如何在 Docker 中运行单元测试。

在本地开发时运行测试

示例应用程序已经在 tests 目录中包含了一个 xUnit 测试。在本地开发时,可以使用 Compose 运行测试。

docker-dotnet-sample 目录中运行以下命令,在容器中运行测试。

$ docker compose run --build --rm server dotnet test /source/tests

你应该看到包含以下内容的输出。

Starting test execution, please wait...
A total of 1 test files matched the specified pattern.

Passed!  - Failed:     0, Passed:     1, Skipped:     0, Total:     1, Duration: < 1 ms - /source/tests/bin/Debug/net6.0/tests.dll (net6.0)

要了解有关该命令的更多信息,请参阅 docker compose run

在构建时运行测试

要在构建时运行测试,你需要更新 Dockerfile。你可以创建一个新的测试阶段来运行测试,或者在现有的构建阶段运行测试。在本指南中,我们将更新 Dockerfile 以在构建阶段运行测试。

以下是更新后的 Dockerfile。

# syntax=docker/dockerfile:1

FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:6.0-alpine AS build
ARG TARGETARCH
COPY . /source
WORKDIR /source/src
RUN --mount=type=cache,id=nuget,target=/root/.nuget/packages \
    dotnet publish -a ${TARGETARCH/amd64/x64} --use-current-runtime --self-contained false -o /app
RUN dotnet test /source/tests

FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine AS development
COPY . /source
WORKDIR /source/src
CMD dotnet run --no-launch-profile

FROM mcr.microsoft.com/dotnet/aspnet:6.0-alpine AS final
WORKDIR /app
COPY --from=build /app .
ARG UID=10001
RUN adduser \
    --disabled-password \
    --gecos "" \
    --home "/nonexistent" \
    --shell "/sbin/nologin" \
    --no-create-home \
    --uid "${UID}" \
    appuser
USER appuser
ENTRYPOINT ["dotnet", "myWebApp.dll"]

运行以下命令,使用构建阶段作为目标构建镜像,并查看测试结果。包含 --progress=plain 以查看构建输出,--no-cache 以确保测试始终运行,以及 --target build 以将目标设置为构建阶段。

$ docker build -t dotnet-docker-image-test --progress=plain --no-cache --target build .

你应该看到包含以下内容的输出。

#11 [build 5/5] RUN dotnet test /source/tests
#11 1.564   Determining projects to restore...
#11 3.421   Restored /source/src/myWebApp.csproj (in 1.02 sec).
#11 19.42   Restored /source/tests/tests.csproj (in 17.05 sec).
#11 27.91   myWebApp -> /source/src/bin/Debug/net6.0/myWebApp.dll
#11 28.47   tests -> /source/tests/bin/Debug/net6.0/tests.dll
#11 28.49 Test run for /source/tests/bin/Debug/net6.0/tests.dll (.NETCoreApp,Version=v6.0)
#11 28.67 Microsoft (R) Test Execution Command Line Tool Version 17.3.3 (x64)
#11 28.67 Copyright (c) Microsoft Corporation.  All rights reserved.
#11 28.68
#11 28.97 Starting test execution, please wait...
#11 29.03 A total of 1 test files matched the specified pattern.
#11 32.07
#11 32.08 Passed!  - Failed:     0, Passed:     1, Skipped:     0, Total:     1, Duration: < 1 ms - /source/tests/bin/Debug/net6.0/tests.dll (net6.0)
#11 DONE 32.2s

要了解有关构建和运行测试的更多信息,请参阅 使用 Docker 构建指南

总结

在本节中,你学习了如何在本地开发时使用 Compose 运行测试,以及如何在构建镜像时运行测试。

相关信息

下一步

接下来,你将学习如何使用 GitHub Actions 设置 CI/CD 管道。