mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
The new client intro test mimics the Consul and Vault compat tests and uses local agents to perform the required setup. This method allows us the flexibility moving forward to test when enforcement mode is in strict. The test suite will now be triggered from the test-e2e CI run and can also be called by a make target.
13 lines
565 B
Go
13 lines
565 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
// Package clientintro provides end-to-end tests for Nomad's client introduction
|
|
// feature. This does not involve running jobs and does not run against the
|
|
// nightly cluster. Instead it uses local agents to verify client introduction
|
|
// behavior.
|
|
//
|
|
// In order to run this test suite only, from the e2e directory you can trigger
|
|
// 'go test -v -run '^TestClientIntro$' ./client_intro' or from the top
|
|
// level you can use the 'integration-test-client-intro' make target.
|
|
package clientintro
|