awesome-compose/lib/bats-support/test/50-output-17-batslib_prefix.bats
Chad Metcalf 6565a1f745
Vendoring bats libraries.
Signed-off-by: Chad Metcalf <chad@docker.com>
2020-08-08 14:27:13 -07:00

44 lines
1.3 KiB
Bash
Executable File

#!/usr/bin/env bats
load test_helper
@test 'batslib_prefix() <prefix>: prefixes each line of the input with <prefix>' {
run bash -c "source '${TEST_MAIN_DIR}/load.bash'
printf 'a\nb\nc\n' | batslib_prefix '_'"
[ "$status" -eq 0 ]
[ "${#lines[@]}" -eq 3 ]
[ "${lines[0]}" == '_a' ]
[ "${lines[1]}" == '_b' ]
[ "${lines[2]}" == '_c' ]
}
@test 'batslib_prefix() <prefix>: prefixes the last line when it is not terminated by a newline' {
run bash -c "source '${TEST_MAIN_DIR}/load.bash'
printf 'a\nb\nc' | batslib_prefix '_'"
[ "$status" -eq 0 ]
[ "${#lines[@]}" -eq 3 ]
[ "${lines[0]}" == '_a' ]
[ "${lines[1]}" == '_b' ]
[ "${lines[2]}" == '_c' ]
}
@test 'batslib_prefix() <prefix>: prefixes empty lines' {
run bash -c "source '${TEST_MAIN_DIR}/load.bash'
printf '\n\n\n' | batslib_prefix '_'"
[ "$status" -eq 0 ]
[ "${#lines[@]}" -eq 3 ]
[ "${lines[0]}" == '_' ]
[ "${lines[1]}" == '_' ]
[ "${lines[2]}" == '_' ]
}
@test 'batslib_prefix(): <prefix> default to two spaces' {
run bash -c "source '${TEST_MAIN_DIR}/load.bash'
printf 'a\nb\nc\n' | batslib_prefix"
[ "$status" -eq 0 ]
[ "${#lines[@]}" -eq 3 ]
[ "${lines[0]}" == ' a' ]
[ "${lines[1]}" == ' b' ]
[ "${lines[2]}" == ' c' ]
}