~dricottone/my-utils

ref: b701c9dbf213ffad7dad40fe5001180d17c2c5b0 my-utils/core/test/rebom.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 "rebom usage" {
  run --separate-stderr rebom
  [ "$status" -eq 1 ]
  [ "$output" = "" ]
  [ "$stderr" = "Usage: rebom TARGET [OPTIONS]" ]
}

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

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

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

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

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

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

@test "rebom help" {
  run --separate-stderr rebom --help
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Add BOM to a target file" ]
  [ "${lines[1]}" = "Usage: rebom 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 "rebom help - quiet" {
  run --separate-stderr rebom --help --quiet
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Add BOM to a target file" ]
  [ "${lines[1]}" = "Usage: rebom 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 "rebom help - quiet short" {
  run --separate-stderr rebom --help -q
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Add BOM to a target file" ]
  [ "${lines[1]}" = "Usage: rebom 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 "rebom help short" {
  run --separate-stderr rebom -h
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Add BOM to a target file" ]
  [ "${lines[1]}" = "Usage: rebom 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 "rebom help short - quiet" {
  run --separate-stderr rebom -h --quiet
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Add BOM to a target file" ]
  [ "${lines[1]}" = "Usage: rebom 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 "rebom help short - quiet short" {
  run --separate-stderr rebom -h -q
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = "Add BOM to a target file" ]
  [ "${lines[1]}" = "Usage: rebom 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 "rebom single" {
  run --separate-stderr rebom test/static/without_bom.txt
  [ "$status" -eq 0 ]
  [ "$output" = $'\xEF\xBB\xBFfoo bar' ]
  [ "$stderr" = "" ]
}

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

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

@test "rebom multiple" {
  run --separate-stderr rebom test/static/without_bom.txt test/static/without_bom.txt
  [ "$status" -eq 0 ]
  [ "${lines[0]}" = $'\xEF\xBB\xBFfoo bar' ]
  [ "${lines[1]}" = "foo bar" ]
  [ "$stderr" = "" ]
}

@test "rebom multiple error" {
  run --separate-stderr rebom test/static/without_bom.txt foobarbaz
  [ "$status" -eq 1 ]
  [ "$output" = $'\xEF\xBB\xBFfoo bar' ]
  [ "$stderr" = "rebom: No such file 'foobarbaz'" ]
}

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