Continuous Testing と Datadog CI Azure DevOps 拡張機能
Datadog Continuous Testing Azure DevOps 拡張機能を使用すると、Azure パイプラインの構成内で Synthetic テストを実行し、Azure DevOps を使用しているすべてのチームが、ソフトウェアライフサイクルの各段階で Synthetic テストの恩恵を受けられるようにすることができます。タスクとして SyntheticsRunTests
を実行することができます。
Datadog サイト に接続するために、Datadog は Synthetic Run Test タスクの構成時にカスタムサービス接続を設定することを推奨しています。
以下の入力が必要です。
Datadog site: どの Datadog サイト に接続し、データを送信するか。 Custom subdomain (デフォルト: app
): Datadog アプリケーションにアクセスするために設定されたカスタムサブドメインの名前。Datadog へのアクセスに使用する URL が myorg.datadoghq.com
の場合、この値は myorg
にする必要があります。 API Key: Datadog API キー。このキーは、Datadog 組織 によって作成されます。 Application key: Datadog アプリケーションキー。このキーは、Datadog 組織 によって作成されます。 API Key: Datadog API キー。このキーは Datadog 組織 によって作成され、環境変数としてアクセスされます。 Application key: Datadog アプリケーションキー。このキーは Datadog 組織 によって作成され、環境変数としてアクセスされます。 Datadog site: 接続し、データを送信する Datadog サイト 。 Custom subdomain (オプション): Datadog アプリケーションにアクセスするために設定されたカスタムサブドメインの名前。Datadog へのアクセスに使用する URL が myorg.datadoghq.com
の場合、この値は myorg
にする必要があります。 Datadog アカウントに接続するために、Azure パイプラインプロジェクトで Datadog CI サービス接続を作成 します。一度作成すれば、あとはタスクにサービス接続の名前を入れるだけです。
Azure Organization に Visual Studio Marketplace から Datadog Continuous Testing 拡張機能 をインストールします。 Datadog CI サービス接続 に、または Azure パイプラインプロジェクトのシークレット として Datadog API キーとアプリケーションキーを追加します。Azure DevOps パイプラインで、SyntheticsRunTests
タスクを使用します。 タスクはシンプル または複雑 にすることができます。
注 : 最近、タスクのメジャーバージョンを SyntheticsRunTests@0
から SyntheticsRunTests@1
に変更しました。
これは重大な変更ではありません が、タスクバージョンと拡張機能バージョンの間の調整です。
- task : SyntheticsRunTests@1
displayName : Run Datadog Synthetic tests
inputs :
authenticationType : 'connectedService'
connectedService : 'my-datadog-ci-connected-service'
publicIds : |
abc-d3f-ghi
jkl-mn0-pqr
Copy
- task : SyntheticsRunTests@1
displayName : Run Datadog Synthetic tests
inputs :
authenticationType : 'connectedService'
connectedService : 'my-datadog-ci-connected-service'
files : 'e2e-tests/*.synthetics.json'
Copy
テストファイルの例としては、この test.synthetics.json
ファイル を参照してください。
- task : SyntheticsRunTests@1
inputs :
authenticationType : 'apiAppKeys'
apiKey : '$(DatadogApiKey)'
appKey : '$(DatadogAppKey)'
datadogSite : '$(DatadogSite)'
subdomain : 'myorg'
Copy
注 : 最近、タスクのメジャーバージョンを SyntheticsRunTests@0
から SyntheticsRunTests@1
に変更しました。
これは重大な変更ではありません が、タスクバージョンと拡張機能バージョンの間の調整です。
- task : SyntheticsRunTests@1
displayName : Run Datadog Synthetic tests
inputs :
authenticationType : 'connectedService'
connectedService : 'my-datadog-ci-connected-service'
testSearchQuery : 'tag:e2e-tests'
Copy
- task : SyntheticsRunTests@1
displayName : Run Datadog Synthetic tests
inputs :
authenticationType : 'connectedService'
connectedService : 'my-datadog-ci-connected-service'
testSearchQuery : 'tag:e2e-tests'
variables : |
START_URL=https://staging.website.com
PASSWORD=$(StagingPassword)
Copy
By default, the path to the global configuration file is datadog-ci.json
. You can override this path with the config_path
input.
- task : SyntheticsRunTests@1
displayName : Run Datadog Synthetic tests
inputs :
authenticationType : 'connectedService'
configPath : './global.config.json'
connectedService : 'my-datadog-ci-connected-service'
Copy
For an example of a global configuration file, see this global.config.json
file .
名前 要件 説明 apiKey
required apiAppKeys
認証タイプを使用する際の Datadog API キー。このキーは Datadog 組織 によって作成され、シークレット として保存される必要があります。appKey
必須 apiAppKeys
認証タイプを使用する際の Datadog アプリケーションキー。このキーは Datadog 組織 によって作成され、シークレット として保存される必要があります。authenticationType
必須 Datadog に使用させたい認証のタイプで、connectedService
または apiAppKeys
のどちらか。 connectedService
必須 Datadog CI サービス接続 で、connectedService
認証タイプを使用する際に使用する名前。configPath
オプション The global JSON configuration used when launching tests. For more information, see the example configuration . Default: datadog-ci.json
. datadogSite
オプション apiAppKeys
認証タイプを使用する場合の Datadog サイト 。デフォルト: datadoghq.com
。failOnCriticalErrors
オプション テストがトリガーされなかったり、Datadog から結果を取得できなかったりした場合に、CI ジョブを失敗させます。デフォルト: false
failOnMissingTests
オプション パブリック ID (publicIds
を使用するか、テストファイル にリストされている) を持つ指定されたテストが少なくとも 1 つ実行中に見つからない場合 (例えば、プログラム上または Datadog サイトで削除された場合)、CI ジョブを失敗させます。デフォルト: false
failOnTimeout
オプション 少なくとも 1 つのテストがデフォルトのテストタイムアウトを超えた場合、CI ジョブを失敗させます。デフォルト: true
files
オプション Synthetic テストの構成ファイルを検出するための Glob パターン。デフォルト: {,!(node_modules)/**/}*.synthetics.json
。 jUnitReport
オプション JUnit レポートを生成したい場合のファイル名。 pollingTimeout
オプション DEPRECATED : The duration (in milliseconds) after which the task stops polling for test results. At the CI level, test results completed after this duration are considered failed. Default: 30 minutes.publicIds
オプション トリガーしたい Synthetic テストの ID を、改行またはカンマで区切ったリスト。値を指定しない場合、タスクは synthetics.json
という名前のファイルを探します。 subdomain
オプション apiAppKeys
認証タイプを使用する際に、Datadog アプリケーションにアクセスするために設定するカスタムサブドメインの名前。Datadog にアクセスするための URL が myorg.datadoghq.com
である場合、この値は myorg
に設定する必要があります。デフォルト: app
。testSearchQuery
オプション 検索 クエリに対応するテストをトリガーします。これは、テストの構成にタグを付けている場合に便利です。詳しくは、タグの命名規則とベストプラクティス を参照してください。variables
オプション Synthetic テストに使用するグローバル変数のリストで、改行またはカンマで区切って指定します。例: START_URL=https://example.org,MY_VARIABLE=My title
。デフォルト: []
。
お役に立つドキュメント、リンクや記事: