File: 61-assert-11-size_not_zero.bats

package info (click to toggle)
bats-file 0.3.0%2Bgit20230131-gbba751f-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 408 kB
  • sloc: sh: 566; makefile: 2
file content (67 lines) | stat: -rw-r--r-- 2,130 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env bats

load 'test_helper'
fixtures 'exist'

setup () {
  readonly ZERO_FILE="${TEST_FIXTURE_ROOT}/dir/zerobyte"
  touch "$ZERO_FILE"
  readonly NOTZERO_FILE="${TEST_FIXTURE_ROOT}/dir/notzerobyte"
  echo "not empty" > "$NOTZERO_FILE"
}

teardown () {  
  rm -f "$ZERO_FILE" "$NOTZERO_FILE"
}


# Correctness
@test 'assert_size_not_zero() <file>: returns 0 if <file> file is greater than 0 byte' {
  run assert_size_not_zero "$NOTZERO_FILE"
  [ "$status" -eq 0 ]
  [ "${#lines[@]}" -eq 0 ]
}

@test 'assert_size_not_zero() <file>: returns 1 and displays path if <file> file is 0 byte, but it was expected not to be' {
  run assert_size_not_zero "$ZERO_FILE"
  [ "$status" -eq 1 ]
  [ "${#lines[@]}" -eq 3 ]
  [ "${lines[0]}" == '-- file is 0 byte, but it was expected not to be --' ]
  [ "${lines[1]}" == "path : $ZERO_FILE" ]
  [ "${lines[2]}" == '--' ]
}


# Transforming path
@test 'assert_size_not_zero() <file>: replace prefix of displayed path' {
  local -r BATSLIB_FILE_PATH_REM="#${TEST_FIXTURE_ROOT}"
  local -r BATSLIB_FILE_PATH_ADD='..'
  run assert_size_not_zero "$ZERO_FILE"
  [ "$status" -eq 1 ]
  [ "${#lines[@]}" -eq 3 ]
  [ "${lines[0]}" == '-- file is 0 byte, but it was expected not to be --' ]
  [ "${lines[1]}" == "path : ../dir/zerobyte" ]
  [ "${lines[2]}" == '--' ]
}

@test 'assert_size_not_zero() <file>: replace suffix of displayed path' {
  local -r BATSLIB_FILE_PATH_REM='%dir/zerobyte'
  local -r BATSLIB_FILE_PATH_ADD='..'
  run assert_size_not_zero "$ZERO_FILE"
  [ "$status" -eq 1 ]
  [ "${#lines[@]}" -eq 3 ]
  [ "${lines[0]}" == '-- file is 0 byte, but it was expected not to be --' ]
  [ "${lines[1]}" == "path : ${TEST_FIXTURE_ROOT}/.." ]
  [ "${lines[2]}" == '--' ]
}

@test 'assert_size_not_zero() <file>: replace infix of displayed path' {
  local -r BATSLIB_FILE_PATH_REM='dir/zerobyte'
  local -r BATSLIB_FILE_PATH_ADD='..'
  run assert_size_not_zero "$ZERO_FILE"
  [ "$status" -eq 1 ]
  [ "${#lines[@]}" -eq 3 ]
  [ "${lines[0]}" == '-- file is 0 byte, but it was expected not to be --' ]
  [ "${lines[1]}" == "path : ${TEST_FIXTURE_ROOT}/.." ]
  [ "${lines[2]}" == '--' ]
}