~dricottone/my-utils

ref: b701c9dbf213ffad7dad40fe5001180d17c2c5b0 my-utils/core/test/debom.bats -rw-r--r-- 5.9 KiB
b701c9dbDominic Ricottone Update usage message 2 years ago
                                                                                
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#!/usr/bin/env bats
bats_require_minimum_version 1.5.0

setup() {
  mkdir -p test/static/
  printf "\xEF\xBB\xBFfoo bar\n" > test/static/with_bom.txt
  printf "foo bar\n" > test/static/without_bom.txt
}

teardown() {
  rm -rf test/static/
}

@test "debom usage" {
  run --separate-stderr debom
  [ "$status" -eq 1 ]
  [ "$output" = "" ]
  [ "$stderr" = "Usage: debom TARGET [OPTIONS]" ]
}

@test "debom version" {
  run --separate-stderr debom --version
  [ "$status" -eq 0 ]
  [ "$output" = "debom 1.1" ]
  [ "$stderr" = "" ]
}

@test "debom version - quiet" {
  run --separate-stderr debom --version --quiet
  [ "$status" -eq 0 ]
  [ "$output" = "debom 1.1" ]
  [ "$stderr" = "" ]
}

@test "debom version - quiet short" {
  run --separate-stderr debom --version -q
  [ "$status" -eq 0 ]
  [ "$output" = "debom 1.1" ]
  [ "$stderr" = "" ]
}

@test "debom version short" {
  run --separate-stderr debom -V
  [ "$status" -eq 0 ]
  [ "$output" = "debom 1.1" ]
  [ "$stderr" = "" ]
}

@test "debom version short - quiet" {
  run --separate-stderr debom -V --quiet
  [ "$status" -eq 0 ]
  [ "$output" = "debom 1.1" ]
  [ "$stderr" = "" ]
}

@test "debom version short - quiet short" {
  run --separate-stderr debom -V -q
  [ "$status" -eq 0 ]
  [ "$output" = "debom 1.1" ]
  [ "$stderr" = "" ]
}

@test "debom help" {
  run --separate-stderr debom --help
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Remove BOM from a target file" ]
  [ "${lines[1]}" = "Usage: debom TARGET [OPTIONS]" ]
  [ "${lines[2]}" = "Options:" ]
  [ "${lines[3]}" = " -h, --help            print this message" ]
  [ "${lines[4]}" = " -q, --quiet           suppress error messages and prompts" ]
  [ "${lines[5]}" = " -v, --verbose         show additional messages" ]
  [ "${lines[6]}" = " -V, --version         print version number and exit" ]
  [ "$stderr" = "" ]
}

@test "debom help - quiet" {
  run --separate-stderr debom --help --quiet
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Remove BOM from a target file" ]
  [ "${lines[1]}" = "Usage: debom TARGET [OPTIONS]" ]
  [ "${lines[2]}" = "Options:" ]
  [ "${lines[3]}" = " -h, --help            print this message" ]
  [ "${lines[4]}" = " -q, --quiet           suppress error messages and prompts" ]
  [ "${lines[5]}" = " -v, --verbose         show additional messages" ]
  [ "${lines[6]}" = " -V, --version         print version number and exit" ]
  [ "$stderr" = "" ]
}

@test "debom help - quiet short" {
  run --separate-stderr debom --help -q
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Remove BOM from a target file" ]
  [ "${lines[1]}" = "Usage: debom TARGET [OPTIONS]" ]
  [ "${lines[2]}" = "Options:" ]
  [ "${lines[3]}" = " -h, --help            print this message" ]
  [ "${lines[4]}" = " -q, --quiet           suppress error messages and prompts" ]
  [ "${lines[5]}" = " -v, --verbose         show additional messages" ]
  [ "${lines[6]}" = " -V, --version         print version number and exit" ]
  [ "$stderr" = "" ]
}

@test "debom help short" {
  run --separate-stderr debom -h
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Remove BOM from a target file" ]
  [ "${lines[1]}" = "Usage: debom TARGET [OPTIONS]" ]
  [ "${lines[2]}" = "Options:" ]
  [ "${lines[3]}" = " -h, --help            print this message" ]
  [ "${lines[4]}" = " -q, --quiet           suppress error messages and prompts" ]
  [ "${lines[5]}" = " -v, --verbose         show additional messages" ]
  [ "${lines[6]}" = " -V, --version         print version number and exit" ]
  [ "$stderr" = "" ]
}

@test "debom help short - quiet" {
  run --separate-stderr debom -h --quiet
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Remove BOM from a target file" ]
  [ "${lines[1]}" = "Usage: debom TARGET [OPTIONS]" ]
  [ "${lines[2]}" = "Options:" ]
  [ "${lines[3]}" = " -h, --help            print this message" ]
  [ "${lines[4]}" = " -q, --quiet           suppress error messages and prompts" ]
  [ "${lines[5]}" = " -v, --verbose         show additional messages" ]
  [ "${lines[6]}" = " -V, --version         print version number and exit" ]
  [ "$stderr" = "" ]
}

@test "debom help short - quiet short" {
  run --separate-stderr debom -h -q
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Remove BOM from a target file" ]
  [ "${lines[1]}" = "Usage: debom TARGET [OPTIONS]" ]
  [ "${lines[2]}" = "Options:" ]
  [ "${lines[3]}" = " -h, --help            print this message" ]
  [ "${lines[4]}" = " -q, --quiet           suppress error messages and prompts" ]
  [ "${lines[5]}" = " -v, --verbose         show additional messages" ]
  [ "${lines[6]}" = " -V, --version         print version number and exit" ]
  [ "$stderr" = "" ]
}

@test "debom single" {
  run --separate-stderr debom test/static/with_bom.txt
  [ "$status" -eq 0 ]
  [ "$output" = "foo bar" ]
  [ "$stderr" = "" ]
}

@test "debom no such file" {
  run --separate-stderr debom foobarbaz
  [ "$status" -eq 1 ]
  [ "$output" = "" ]
  [ "$stderr" = "debom: No such file 'foobarbaz'" ]
}

@test "debom no such file - verbose" {
  run --separate-stderr debom --verbose foobarbaz
  [ "$status" -eq 1 ]
  [ "$output" = "DEBUG:debom:Argument 'foobarbaz' added to positional array" ]
  [ "$stderr" = "ERROR:debom:No such file 'foobarbaz'" ]
}

@test "debom multiple" {
  run --separate-stderr debom test/static/with_bom.txt test/static/with_bom.txt
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "foo bar" ]
  [ "${lines[1]}" = "foo bar" ]
  [ "$stderr" = "" ]
}

@test "debom multiple error" {
  run --separate-stderr debom test/static/with_bom.txt foobarbaz
  [ "$status" -eq 1 ]
  [ "$output" = "foo bar" ]
  [ "$stderr" = "debom: No such file 'foobarbaz'" ]
}

@test "debom multiple error - verbose" {
  run --separate-stderr debom --verbose test/static/with_bom.txt foobarbaz
  [ "$status" -eq 1 ]
  [ "${lines[0]}" = "DEBUG:debom:Argument 'test/static/with_bom.txt' added to positional array" ]
  [ "${lines[1]}" = "DEBUG:debom:Argument 'foobarbaz' added to positional array" ]
  [ "${lines[2]}" = "foo bar" ]
  [ "$stderr" = "ERROR:debom:No such file 'foobarbaz'" ]
}