@@ -13,20 +13,20 @@ test_launch_ipfs_daemon
13
13
14
14
test_expect_success " 'ipfs add afile' succeeds" '
15
15
echo "some text" >afile &&
16
- HASH=`ipfs add -q afile` &&
17
- printf "$HASH" >hashfile
16
+ HASH=`ipfs add -q afile`
18
17
'
19
18
20
19
test_expect_success " added file was pinned" '
21
- ipfs pin ls -type=recursive | grep "$HASH"
20
+ ipfs pin ls -type=recursive >actual &&
21
+ grep "$HASH" actual
22
22
'
23
23
24
24
test_expect_success " 'ipfs repo gc' succeeds" '
25
25
ipfs repo gc >gc_out_actual
26
26
'
27
27
28
28
test_expect_success " 'ipfs repo gc' looks good (empty)" '
29
- printf "" >empty &&
29
+ true >empty &&
30
30
test_cmp empty gc_out_actual
31
31
'
32
32
@@ -36,18 +36,22 @@ test_expect_success "'ipfs repo gc' doesnt remove file" '
36
36
'
37
37
38
38
test_expect_success " 'ipfs pin rm' succeeds" '
39
+ ipfs pin rm -r "$HASH" >actual1
40
+ '
41
+
42
+ test_expect_success " 'ipfs pin rm' output looks good" '
39
43
echo "unpinned $HASH" >expected1 &&
40
- ipfs pin rm -r "$HASH" >actual1 &&
41
44
test_cmp expected1 actual1
42
45
'
43
46
44
47
test_expect_success " file no longer pinned" '
45
48
# we expect the welcome files to show up here
46
49
echo "$HASH_WELCOME_DOCS" >expected2 &&
47
50
ipfs refs -r "$HASH_WELCOME_DOCS" >>expected2 &&
48
- cat expected2 | sort >expected_sorted2 &&
49
- ipfs pin ls -type=recursive | sort >actual2 &&
50
- test_cmp expected_sorted2 actual2
51
+ sort expected2 >expected_sorted2 &&
52
+ ipfs pin ls -type=recursive >actual2 &&
53
+ sort actual2 >actual_sorted2 &&
54
+ test_cmp expected_sorted2 actual_sorted2
51
55
'
52
56
53
57
test_expect_success " recursively pin afile" '
@@ -56,13 +60,13 @@ test_expect_success "recursively pin afile" '
56
60
57
61
test_expect_success " pinning directly should fail now" '
58
62
echo "Error: pin: $HASH already pinned recursively" >expected3 &&
59
- !( ipfs pin add "$HASH" 2>actual3) &&
63
+ test_must_fail ipfs pin add "$HASH" 2>actual3 &&
60
64
test_cmp expected3 actual3
61
65
'
62
66
63
67
test_expect_success " 'ipfs pin rm <hash>' should fail" '
64
68
echo "Error: $HASH is pinned recursively" >expected4 &&
65
- !( ipfs pin rm "$HASH" 2>actual4) &&
69
+ test_must_fail ipfs pin rm "$HASH" 2>actual4 &&
66
70
test_cmp expected4 actual4
67
71
'
68
72
@@ -89,9 +93,10 @@ test_expect_success "'ipfs refs local' no longer shows file" '
89
93
echo QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn >expected8 &&
90
94
echo "$HASH_WELCOME_DOCS" >>expected8 &&
91
95
ipfs refs -r "$HASH_WELCOME_DOCS" >>expected8 &&
92
- cat expected8 | sort >expected_sorted8 &&
93
- ipfs refs local | sort >actual8 &&
94
- test_cmp expected_sorted8 actual8
96
+ sort expected8 >expected_sorted8 &&
97
+ ipfs refs local >actual8 &&
98
+ sort actual8 >actual_sorted8 &&
99
+ test_cmp expected_sorted8 actual_sorted8
95
100
'
96
101
97
102
test_expect_success " adding multiblock random file succeeds" '
@@ -102,9 +107,10 @@ test_expect_success "adding multiblock random file succeeds" '
102
107
test_expect_success " 'ipfs pin ls -type=indirect' is correct" '
103
108
ipfs refs "$MBLOCKHASH" >refsout &&
104
109
ipfs refs -r "$HASH_WELCOME_DOCS" >>refsout &&
105
- cat refsout | sort >refsout_sorted &&
106
- ipfs pin ls -type=indirect | sort >indirectpins &&
107
- test_cmp refsout_sorted indirectpins
110
+ sort refsout >refsout_sorted &&
111
+ ipfs pin ls -type=indirect >indirectpins &&
112
+ sort indirectpins >indirectpins_sorted &&
113
+ test_cmp refsout_sorted indirectpins_sorted
108
114
'
109
115
110
116
test_expect_success " pin something directly" '
@@ -122,27 +128,30 @@ test_expect_success "pin something directly" '
122
128
test_expect_success " 'ipfs pin ls -type=direct' is correct" '
123
129
echo "$DIRECTPIN" >directpinexpected &&
124
130
echo QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn >>directpinexpected &&
125
- cat directpinexpected | sort >dp_exp_sorted &&
126
- ipfs pin ls -type=direct | sort >directpinout &&
127
- test_cmp dp_exp_sorted directpinout
131
+ sort directpinexpected >dp_exp_sorted &&
132
+ ipfs pin ls -type=direct >directpinout &&
133
+ sort directpinout >dp_out_sorted &&
134
+ test_cmp dp_exp_sorted dp_out_sorted
128
135
'
129
136
130
137
test_expect_success " 'ipfs pin ls -type=recursive' is correct" '
131
138
echo "$MBLOCKHASH" >rp_expected &&
132
139
echo "$HASH_WELCOME_DOCS" >>rp_expected &&
133
140
ipfs refs -r "$HASH_WELCOME_DOCS" >>rp_expected &&
134
- cat rp_expected | sort >rp_exp_sorted &&
135
- ipfs pin ls -type=recursive | sort >rp_actual &&
136
- test_cmp rp_exp_sorted rp_actual
141
+ sort rp_expected >rp_exp_sorted &&
142
+ ipfs pin ls -type=recursive >rp_actual &&
143
+ sort rp_actual >rp_act_sorted &&
144
+ test_cmp rp_exp_sorted rp_act_sorted
137
145
'
138
146
139
147
test_expect_success " 'ipfs pin ls -type=all' is correct" '
140
148
cat directpinout >allpins &&
141
149
cat rp_actual >>allpins &&
142
150
cat indirectpins >>allpins &&
143
- cat allpins | sort >allpins_sorted &&
144
- ipfs pin ls -type=all | sort >actual_allpins &&
145
- test_cmp allpins_sorted actual_allpins
151
+ sort allpins >allpins_sorted &&
152
+ ipfs pin ls -type=all >actual_allpins &&
153
+ sort actual_allpins >actual_allpins_sorted &&
154
+ test_cmp allpins_sorted actual_allpins_sorted
146
155
'
147
156
148
157
test_kill_ipfs_daemon
0 commit comments