diff-so-fancy icon indicating copy to clipboard operation
diff-so-fancy copied to clipboard

CI: display ansi codes when an assert-line fails

Open webstech opened this issue 1 year ago • 4 comments

During test development, the ansi codes may not always be well understood. The current bats default error display does not help with determining the actual sequence of codes since the drivers are eating the codes. The bats framework uses cat to display the failing line in assertion tests.

What would be useful is to display the ansi codes in the error message. This could be done in a couple of ways to make the escape character not an escape character.

  1. change the generic run printf "%s" "$output" in tests to run printf "%s" "${output//\e/E}". Tests would need to check for E[ instead of \e[.
  2. introduce a mock for the cat command that does the escape character change. The test cases would need to set/unset the mock but the asserts would not change.

Any interest in this? There may be other options but these both work (have been tested) and are simple to implement.

webstech avatar Jan 29 '23 06:01 webstech