50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
#!/usr/bin/env bats
|
|
# Copyright (c) 2012-2019 Red Hat, Inc.
|
|
# This program and the accompanying materials are made
|
|
# available under the terms of the Eclipse Public License 2.0
|
|
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
#
|
|
# SPDX-License-Identifier: EPL-2.0
|
|
#
|
|
# Contributors:
|
|
# Marian Labuda - Initial Implementation
|
|
|
|
load '/bats-support/load.bash'
|
|
load '/bats-assert/load.bash'
|
|
source /dockerfiles/cli/tests/test_base.sh
|
|
|
|
@test "test CLI prompt to provide volume for docker sock" {
|
|
#GIVEN
|
|
prompt_substring="-v /var/run/docker.sock:/var/run/docker.sock"
|
|
|
|
#WHEN
|
|
run execute_cli_command --che-cli-mount-scripts=false --che-cli-use-docker-sock=false --che-cli-command=start
|
|
|
|
#THEN
|
|
assert_failure
|
|
assert_output --partial ${prompt_substring}
|
|
}
|
|
|
|
@test "test CLI prompt to provide directory for user data" {
|
|
#GIVEN
|
|
prompt_substring="-v <YOUR_LOCAL_PATH>:/data"
|
|
|
|
#WHEN
|
|
run execute_cli_command --che-cli-command=start
|
|
|
|
#THEN
|
|
assert_failure
|
|
assert_output --partial ${prompt_substring}
|
|
}
|
|
|
|
@test "test CLI 'usage' when running container without command" {
|
|
#GIVEN
|
|
expected_output="USAGE:"
|
|
|
|
#WHEN
|
|
result=$(execute_cli_command || true)
|
|
|
|
#THEN
|
|
[[ $result == *${expected_output}* ]]
|
|
}
|