blob: f9c029d726131eb1875e377c7434f279dfec1779 (
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
|
#!/bin/bash
## Include utility functions.
. "$XDG_TEST_DIR/include/testassertions.sh"
. "$XDG_TEST_DIR/include/testcontrol.sh"
## Test function
test_icon_svg_user_uninstall() {
ICON="red-SVG.svg"
test_start "$FUNCNAME: verify $ICON is uninstalled correctly"
## Begin the test.
userpath="$HOME/.icons:$HOME/.local:$XDG_DATA_HOME"
# Dependencies section
test_init
set_no_display
use_file "$XDG_TEST_DIR/icons/$ICON" ICONFILE
assert_file "$ICONFILE"
# Verify the test icon is not installed already.
assert_exit 0 xdg-icon-resource install --mode user "$ICONFILE"
assert_file_in_path "$ICONFILE" "$userpath"
# Test steps section
test_procedure
assert_exit 0 xdg-icon-resource uninstall --mode user "$ICONFILE"
assert_nostdout
assert_nostderr
assert_file_not_in_path "$ICONFILE" "$userpath"
test_result
}
run_test test_icon_svg_user_uninstall
|