Add docker.#Command tests
Tests : - docker version with ssh - docker version with ssh and key passphrase - docker version with ass and wrong key passphrase Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
26
stdlib/.dagger/env/docker-command-ssh-wrong-key-passphrase/plan/command.cue
vendored
Normal file
26
stdlib/.dagger/env/docker-command-ssh-wrong-key-passphrase/plan/command.cue
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
package docker
|
||||
|
||||
import (
|
||||
"dagger.io/dagger"
|
||||
"dagger.io/docker"
|
||||
)
|
||||
|
||||
TestConfig: {
|
||||
host: string @dagger(input)
|
||||
user: string @dagger(input)
|
||||
key: dagger.#Secret @dagger(input)
|
||||
keyPassphrase: dagger.#Secret @dagger(input)
|
||||
}
|
||||
|
||||
TestSSH: client: docker.#Command & {
|
||||
command: #"""
|
||||
docker $CMD
|
||||
"""#
|
||||
ssh: {
|
||||
host: TestConfig.host
|
||||
user: TestConfig.user
|
||||
key: TestConfig.key
|
||||
keyPassphrase: TestConfig.keyPassphrase
|
||||
}
|
||||
env: CMD: "version"
|
||||
}
|
Reference in New Issue
Block a user