summaryrefslogtreecommitdiff
path: root/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_dir.test.fish
blob: 676cadfffc3a06b4a53228a8a559110ab925c53f (plain)
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
source $DIRNAME/spacefish_test_setup.fish

function setup
	spacefish_test_setup
	mkdir -p ~/.tmp-spacefish/dir1/dir2
	mkdir -p /tmp/tmp-spacefish/dir1/dir2/dir3
	mkdir -p /tmp/tmp-spacefish/writeProtected
	chmod 500 /tmp/tmp-spacefish/writeProtected
	# disabling SPACEFISH_DIR_LOCK_SYMBOL to avoid breaking old tests
	set SPACEFISH_DIR_LOCK_SHOW false
end

function teardown
	rm -rf ~/.tmp-spacefish
	rm -rf /tmp/tmp-spacefish
end

#
# Home directory
#

test "Correctly truncates home directory"
	(
		cd ~

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "~"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Correctly truncates a home subdirectory"
	(
		cd ~/.tmp-spacefish/dir1/

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "~/.tmp-spacefish/dir1"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Correctly truncates a deeply nested home subdirectory"
	(
		cd ~/.tmp-spacefish/dir1/dir2

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n ".tmp-spacefish/dir1/dir2"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

#
# Root directory
#

test "Correctly truncates root directory"
	(
		cd /

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "/"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Correctly truncates a root subdirectory"
	(
		cd /usr

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "/usr"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Correctly truncates a deeply nested root subdirectory"
	(
		cd /tmp/tmp-spacefish/dir1/dir2

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "tmp-spacefish/dir1/dir2"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

#
# Git directory
#

test "Correctly truncates the root of a git directory"
	(
		cd /tmp/tmp-spacefish
		command git init >/dev/null

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "tmp-spacefish"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Correctly truncates a git subdirectory"
	(
		cd /tmp/tmp-spacefish
		command git init >/dev/null
		cd /tmp/tmp-spacefish/dir1

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "tmp-spacefish/dir1"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Correctly truncates a deeply nested git subdirectory"
	(
		cd /tmp/tmp-spacefish
		command git init >/dev/null
		cd /tmp/tmp-spacefish/dir1/dir2/dir3

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "dir1/dir2/dir3"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Correctly truncates the root of a git directory within another"
	(
		cd /tmp/tmp-spacefish
		command git init >/dev/null

		cd /tmp/tmp-spacefish/dir1
		command git init >/dev/null

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "dir1"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Doesn't throw an error when in a .git directory"
	(
		cd /tmp/tmp-spacefish
		command git init >/dev/null

		cd /tmp/tmp-spacefish/.git

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "tmp/tmp-spacefish/.git"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)

#
# Configuration
#

test "Doesn't show if SPACEFISH_DIR_SHOW is false"
	(
		set SPACEFISH_DIR_SHOW false
	) = (__sf_section_dir)
end

test "Changing SPACEFISH_DIR_PREFIX changes the dir prefix"
	(
		set SPACEFISH_DIR_PREFIX ·
		cd ~

		set_color --bold
		echo -n "·"
		set_color normal
		set_color --bold cyan
		echo -n "~"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Changing SPACEFISH_DIR_SUFFIX changes the dir prefix"
	(
		set SPACEFISH_DIR_SUFFIX ·
		cd ~

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "~"
		set_color normal
		set_color --bold
		echo -n "·"
		set_color normal
	) = (__sf_section_dir)
end

# SPACEFISH_DIR_TRUNC functionality is further tested in:
# __sf_util_truncate_dir.test.fish
test "Changing SPACEFISH_DIR_TRUNC changes the dir length"
	(
		set SPACEFISH_DIR_TRUNC 1
		cd /tmp/tmp-spacefish/dir1/dir2/dir3

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "dir3"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Disabling SPACEFISH_DIR_TRUNC_REPO stops repo dir truncation"
	(
		set SPACEFISH_DIR_TRUNC_REPO false
		cd ~/.tmp-spacefish
		command git init >/dev/null

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "~/.tmp-spacefish"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Changing SPACEFISH_DIR_COLOR changes the dir color"
	(
		set SPACEFISH_DIR_COLOR red
		cd ~

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold red
		echo -n "~"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end


#
# SPACEFISH_DIR_LOCK_SYMBOL
#

test "Shows DIR_LOCK_SYMBOL if in a dir with no write permissions and SPACEFISH_DIR_LOCK_SHOW is true"
	(
		cd /tmp/tmp-spacefish/writeProtected

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "tmp/tmp-spacefish/writeProtected"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Doesn't show DIR_LOCK_SYMBOL if SPACEFISH_DIR_LOCK_SHOW is false"
	(
		cd /tmp/tmp-spacefish/writeProtected

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "tmp/tmp-spacefish/writeProtected"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Doesn't show DIR_LOCK_SYMBOL if current directory is not write protected for this user"
	(
		cd ~

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "~"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end

test "Changing SPACEFISH_DIR_LOCK_SYMBOL changes the symbol"
	(
		set SPACEFISH_DIR_LOCK_SYMBOL "😀"
		cd /tmp/tmp-spacefish/writeProtected

		set_color --bold
		echo -n "in "
		set_color normal
		set_color --bold cyan
		echo -n "tmp/tmp-spacefish/writeProtected"
		set_color normal
		set_color --bold
		echo -n " "
		set_color normal
	) = (__sf_section_dir)
end