2023-07-04 13:56:32 +00:00
|
|
|
|
# shellcheck shell=bats
|
2022-11-29 12:54:13 +00:00
|
|
|
|
#
|
2023-06-13 08:11:49 +00:00
|
|
|
|
# Copyright © 2019 – 2023 Red Hat, Inc.
|
2022-11-29 12:54:13 +00:00
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
#
|
2019-08-07 09:48:27 +00:00
|
|
|
|
|
2020-07-27 13:35:17 +00:00
|
|
|
|
load 'libs/bats-support/load'
|
|
|
|
|
load 'libs/bats-assert/load'
|
2021-05-26 20:12:18 +00:00
|
|
|
|
load 'libs/helpers.bash'
|
2019-08-07 09:48:27 +00:00
|
|
|
|
|
2021-11-11 00:46:21 +00:00
|
|
|
|
setup() {
|
2023-06-13 08:11:49 +00:00
|
|
|
|
bats_require_minimum_version 1.7.0
|
2021-11-11 00:46:21 +00:00
|
|
|
|
_setup_environment
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-27 13:35:17 +00:00
|
|
|
|
@test "version: Check version using option --version" {
|
2023-07-04 13:42:57 +00:00
|
|
|
|
run --separate-stderr "$TOOLBOX" --version
|
2020-07-27 13:35:17 +00:00
|
|
|
|
|
2022-11-17 09:50:43 +00:00
|
|
|
|
assert_success
|
2021-02-24 20:23:49 +00:00
|
|
|
|
assert_output --regexp '^toolbox version [0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?$'
|
2022-11-17 09:50:43 +00:00
|
|
|
|
assert [ ${#lines[@]} -eq 1 ]
|
2023-07-04 13:48:37 +00:00
|
|
|
|
|
|
|
|
|
# shellcheck disable=SC2154
|
2022-11-17 09:50:43 +00:00
|
|
|
|
assert [ ${#stderr_lines[@]} -eq 0 ]
|
2019-08-07 09:48:27 +00:00
|
|
|
|
}
|