toolbox/test/system/002-help.bats

353 lines
11 KiB
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# shellcheck shell=bats
#
# Copyright © 2020 2024 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
load 'libs/bats-support/load'
load 'libs/bats-assert/load'
load 'libs/helpers.bash'
setup() {
bats_require_minimum_version 1.10.0
_setup_environment
cleanup_all
}
teardown() {
cleanup_all
}
@test "help: Smoke test" {
run --keep-empty-lines --separate-stderr "$TOOLBX"
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: missing command"
assert_line --index 2 "create Create a new Toolbx container"
assert_line --index 3 "enter Enter an existing Toolbx container"
assert_line --index 4 "list List all existing Toolbx containers and images"
assert_line --index 6 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 7 ]
}
@test "help: Command 'help'" {
if ! command -v man 2>/dev/null; then
skip "not found man(1)"
fi
run --keep-empty-lines --separate-stderr "$TOOLBX" help
assert_success
assert_line --index 0 --partial "toolbox(1)"
assert_line --index 0 --partial "General Commands Manual"
assert_line --index 3 --regexp "^[[:blank:]]+toolbox [-] Tool for interactive command line environments on Linux$"
assert [ ${#lines[@]} -gt 4 ]
assert [ ${#stderr_lines[@]} -eq 0 ]
}
@test "help: Command 'help' with man(1) absent" {
if command -v man 2>/dev/null; then
skip "found man(1)"
fi
run --keep-empty-lines --separate-stderr "$TOOLBX" help
assert_success
assert_line --index 0 "toolbox - Tool for interactive command line environments on Linux"
assert_line --index 2 "Common commands are:"
assert_line --index 3 "create Create a new Toolbx container"
assert_line --index 4 "enter Enter an existing Toolbx container"
assert_line --index 5 "list List all existing Toolbx containers and images"
assert_line --index 7 "Go to https://github.com/containers/toolbox for further information."
assert [ ${#lines[@]} -eq 8 ]
assert [ ${#stderr_lines[@]} -eq 0 ]
}
@test "help: Flag '--help'" {
if ! command -v man 2>/dev/null; then
skip "not found man(1)"
fi
run --keep-empty-lines --separate-stderr "$TOOLBX" --help
assert_success
assert_line --index 0 --partial "toolbox(1)"
assert_line --index 0 --partial "General Commands Manual"
assert_line --index 3 --regexp "^[[:blank:]]+toolbox [-] Tool for interactive command line environments on Linux$"
assert [ ${#lines[@]} -gt 4 ]
assert [ ${#stderr_lines[@]} -eq 0 ]
}
@test "help: Flag '--help' with man(1) absent" {
if command -v man 2>/dev/null; then
skip "found man(1)"
fi
run --keep-empty-lines --separate-stderr "$TOOLBX" --help
assert_success
assert_line --index 0 "toolbox - Tool for interactive command line environments on Linux"
assert_line --index 2 "Common commands are:"
assert_line --index 3 "create Create a new Toolbx container"
assert_line --index 4 "enter Enter an existing Toolbx container"
assert_line --index 5 "list List all existing Toolbx containers and images"
assert_line --index 7 "Go to https://github.com/containers/toolbox for further information."
assert [ ${#lines[@]} -eq 8 ]
# shellcheck disable=SC2154
assert [ ${#stderr_lines[@]} -eq 0 ]
}
@test "help: Try unknown command" {
run --keep-empty-lines --separate-stderr "$TOOLBX" foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown command \"foo\" for \"toolbox\""
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try unknown command (forwarded to host)" {
create_default_container
run -1 --keep-empty-lines --separate-stderr "$TOOLBX" run toolbox foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown command \"foo\" for \"toolbox\""
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try unknown flag" {
run --keep-empty-lines --separate-stderr "$TOOLBX" --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try unknown flag (forwarded to host)" {
create_default_container
run -1 --keep-empty-lines --separate-stderr "$TOOLBX" run toolbox --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'create' with unknown flag" {
run --keep-empty-lines --separate-stderr "$TOOLBX" create --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'create' with unknown flag (forwarded to host)" {
create_default_container
run -1 --keep-empty-lines --separate-stderr "$TOOLBX" run toolbox create --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'enter' with unknown flag" {
run --keep-empty-lines --separate-stderr "$TOOLBX" enter --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'enter' with unknown flag (forwarded to host)" {
create_default_container
run -1 --keep-empty-lines --separate-stderr "$TOOLBX" run toolbox enter --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'help' with unknown flag" {
run --keep-empty-lines --separate-stderr "$TOOLBX" help --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'help' with unknown flag (forwarded to host)" {
create_default_container
run -1 --keep-empty-lines --separate-stderr "$TOOLBX" run toolbox help --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'init-container' with unknown flag" {
run --keep-empty-lines --separate-stderr "$TOOLBX" init-container --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'init-container' with unknown flag (forwarded to host)" {
create_default_container
run -1 --keep-empty-lines --separate-stderr "$TOOLBX" run toolbox init-container --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'list' with unknown flag" {
run --keep-empty-lines --separate-stderr "$TOOLBX" list --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'list' with unknown flag (forwarded to host)" {
create_default_container
run -1 --keep-empty-lines --separate-stderr "$TOOLBX" run toolbox list --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'rm' with unknown flag" {
run --keep-empty-lines --separate-stderr "$TOOLBX" rm --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'rm' with unknown flag (forwarded to host)" {
create_default_container
run -1 --keep-empty-lines --separate-stderr "$TOOLBX" run toolbox rm --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'rmi' with unknown flag" {
run --keep-empty-lines --separate-stderr "$TOOLBX" rmi --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'rmi' with unknown flag (forwarded to host)" {
create_default_container
run -1 --keep-empty-lines --separate-stderr "$TOOLBX" run toolbox rmi --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'run' with unknown flag" {
run --keep-empty-lines --separate-stderr "$TOOLBX" run --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}
@test "help: Try 'run' with unknown flag (forwarded to host)" {
create_default_container
run -1 --keep-empty-lines --separate-stderr "$TOOLBX" run toolbox run --foo
assert_failure
assert [ ${#lines[@]} -eq 0 ]
lines=("${stderr_lines[@]}")
assert_line --index 0 "Error: unknown flag: --foo"
assert_line --index 1 "Run 'toolbox --help' for usage."
assert [ ${#stderr_lines[@]} -eq 2 ]
}