File: test_changes.bats

package info (click to toggle)
git-secret 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,724 kB
  • sloc: sh: 4,580; makefile: 162; xml: 31; python: 22
file content (216 lines) | stat: -rw-r--r-- 5,655 bytes parent folder | download
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#!/usr/bin/env bats

load _test_base

FILE_TO_HIDE="$TEST_DEFAULT_FILENAME"
SECOND_FILE_TO_HIDE="$TEST_SECOND_FILENAME"
THIRD_FILE_TO_HIDE="$TEST_THIRD_FILENAME"
FILE_NON_EXISTENT="NO-SUCH-FILE"
FILE_CONTENTS="hidden content юникод"

FINGERPRINT=""


function setup {
  FINGERPRINT=$(install_fixture_full_key "$TEST_DEFAULT_USER")

  set_state_initial
  set_state_git
  set_state_secret_init
  set_state_secret_tell "$TEST_DEFAULT_USER"
  set_state_secret_add "$FILE_TO_HIDE" "$FILE_CONTENTS"
  set_state_secret_add "$SECOND_FILE_TO_HIDE" "$FILE_CONTENTS"
  set_state_secret_hide
}


function teardown {
  rm "$FILE_TO_HIDE" "$SECOND_FILE_TO_HIDE"

  uninstall_fixture_full_key "$TEST_DEFAULT_USER" "$FINGERPRINT"
  unset_current_state
}


@test "run 'changes' on one file with no file changed" {
  local password
  password=$(test_user_password "$TEST_DEFAULT_USER")

  run git secret changes -d "$TEST_GPG_HOMEDIR" -p "$password" "$FILE_TO_HIDE"
  [ "$status" -eq 0 ]

  local num_lines
  num_lines=$(echo "$output" | wc -l)
  [[ "$num_lines" -eq 1 ]]
}


@test "run 'changes' with one file changed" {
  local new_content='new content'
  echo "$new_content" >> "$FILE_TO_HIDE"

  local password
  password=$(test_user_password "$TEST_DEFAULT_USER")

  run git secret changes -d "$TEST_GPG_HOMEDIR" -p "$password" "$FILE_TO_HIDE"
  [ "$status" -eq 0 ]

  # Testing that output has both filename and changes:
  local fullpath
  fullpath=$(_prepend_root_path "$FILE_TO_HIDE")
  [[ "$output" == *"changes in $fullpath"* ]]
  [[ "$output" == *"hidden content юникод"* ]]
  [[ "$output" == *"+$new_content"* ]]

  local num_lines
  num_lines=$(echo "$output" | wc -l)
  [[ "$num_lines" -eq 6 ]]

}


@test "run 'changes' with source file missing" {
  local password
  password=$(test_user_password "$TEST_DEFAULT_USER")
  rm "$FILE_TO_HIDE" || _abort "error removing: $FILE_TO_HIDE"

  run git secret changes -d "$TEST_GPG_HOMEDIR" -p "$password" "$FILE_TO_HIDE"
  [ "$status" -ne 0 ]
}


@test "run 'changes' with hidden file missing" {
  local password
  local encrypted_file
  password=$(test_user_password "$TEST_DEFAULT_USER")
  encrypted_file=$(_get_encrypted_filename "$FILE_TO_HIDE")
  rm "$encrypted_file" || _abort "error removing: $encrypted_file"

  run git secret changes -d "$TEST_GPG_HOMEDIR" -p "$password" "$FILE_TO_HIDE"
  [ "$status" -ne 0 ]
}


@test "run 'changes' with one file changed (with deletions)" {
  local new_content='replace'
  local password
  password=$(test_user_password "$TEST_DEFAULT_USER")
  echo "$new_content" > "$FILE_TO_HIDE"

  run git secret changes -d "$TEST_GPG_HOMEDIR" -p "$password" "$FILE_TO_HIDE"
  [ "$status" -eq 0 ]

  # Testing that output has both filename and changes:
  local fullpath
  fullpath=$(_prepend_root_path "$FILE_TO_HIDE")
  [[ "$output" == *"changes in $fullpath"* ]]
  [[ "$output" == *"-$FILE_CONTENTS"* ]]
  [[ "$output" == *"+$new_content"* ]]
}


@test "run 'changes' on two files with no file changed" {
  local password
  password=$(test_user_password "$TEST_DEFAULT_USER")

  run git secret changes -d "$TEST_GPG_HOMEDIR" -p "$password"


  [ "$status" -eq 0 ]

  local num_lines
  num_lines=$(echo "$output" | wc -l)
  [[ "$num_lines" -eq 2 ]]
}


@test "run 'changes' with multiple files changed" {
  local new_content='new content'
  local second_new_content='something different'
  local password
  password=$(test_user_password "$TEST_DEFAULT_USER")
  echo "$new_content" >> "$FILE_TO_HIDE"
  echo "$second_new_content" >> "$SECOND_FILE_TO_HIDE"

  run git secret changes -d "$TEST_GPG_HOMEDIR" -p "$password"
  [ "$status" -eq 0 ]

  # Testing that output has both filename and changes:
  local fullpath
  fullpath=$(_prepend_root_path "$FILE_TO_HIDE")

  [[ "$output" == *"changes in $fullpath"* ]]
  [[ "$output" == *"+$new_content"* ]]

  local second_path
  second_path=$(_prepend_root_path "$SECOND_FILE_TO_HIDE")
  [[ "$output" == *"changes in $second_path"* ]]
  [[ "$output" == *"+$second_new_content"* ]]
}


@test "run 'changes' with multiple selected files changed" {
  local new_content='new content'
  local second_new_content='something different'
  echo "$new_content" >> "$FILE_TO_HIDE"
  echo "$second_new_content" >> "$SECOND_FILE_TO_HIDE"

  local password
  password=$(test_user_password "$TEST_DEFAULT_USER")

  run git secret changes -d "$TEST_GPG_HOMEDIR" -p "$password" \
    "$FILE_TO_HIDE" "$SECOND_FILE_TO_HIDE"

  [ "$status" -eq 0 ]

  # Testing that output has both filename and changes:
  local fullpath
  fullpath=$(_prepend_root_path "$FILE_TO_HIDE")
  [[ "$output" == *"changes in $fullpath"* ]]
  [[ "$output" == *"+$new_content"* ]]

  local second_path
  second_path=$(_prepend_root_path "$SECOND_FILE_TO_HIDE")
  [[ "$output" == *"changes in $second_path"* ]]
  [[ "$output" == *"+$second_new_content"* ]]
}


@test "run 'changes' on file that does not exist" {
  local password
  password=$(test_user_password "$TEST_DEFAULT_USER")

  run git secret changes \
    -d "$TEST_GPG_HOMEDIR" \
    -p "$password" \
    "$FILE_NON_EXISTENT"

  [ "$status" -ne 0 ]
}


@test "run 'changes' on one file without newlines" {
  set_state_secret_add_without_newline "$THIRD_FILE_TO_HIDE" "$FILE_CONTENTS"
  set_state_secret_hide

  local password
  password=$(test_user_password "$TEST_DEFAULT_USER")

  run git secret changes \
    -d "$TEST_GPG_HOMEDIR" \
    -p "$password" \
    "$THIRD_FILE_TO_HIDE"
  [ "$status" -eq 0 ]

  local num_lines
  num_lines=$(echo "$output" | wc -l)
  [[ "$num_lines" -eq 1 ]]

  rm -f "$THIRD_FILE_TO_HIDE"
}

@test "run 'changes' with bad arg" {
  run git secret changes -Z
  [ "$status" -ne 0 ]
}