Skip to content

Commit 4539b97

Browse files
committed
Merge pull request #716 from jbenet/improve_t0080
test/sharness: improve t0080
2 parents fbf1a50 + 83e88a8 commit 4539b97

File tree

1 file changed

+34
-25
lines changed

1 file changed

+34
-25
lines changed

test/sharness/t0080-repo.sh

+34-25
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ test_launch_ipfs_daemon
1313

1414
test_expect_success "'ipfs add afile' succeeds" '
1515
echo "some text" >afile &&
16-
HASH=`ipfs add -q afile` &&
17-
printf "$HASH" >hashfile
16+
HASH=`ipfs add -q afile`
1817
'
1918

2019
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
2222
'
2323

2424
test_expect_success "'ipfs repo gc' succeeds" '
2525
ipfs repo gc >gc_out_actual
2626
'
2727

2828
test_expect_success "'ipfs repo gc' looks good (empty)" '
29-
printf "" >empty &&
29+
true >empty &&
3030
test_cmp empty gc_out_actual
3131
'
3232

@@ -36,18 +36,22 @@ test_expect_success "'ipfs repo gc' doesnt remove file" '
3636
'
3737

3838
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" '
3943
echo "unpinned $HASH" >expected1 &&
40-
ipfs pin rm -r "$HASH" >actual1 &&
4144
test_cmp expected1 actual1
4245
'
4346

4447
test_expect_success "file no longer pinned" '
4548
# we expect the welcome files to show up here
4649
echo "$HASH_WELCOME_DOCS" >expected2 &&
4750
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
5155
'
5256

5357
test_expect_success "recursively pin afile" '
@@ -56,13 +60,13 @@ test_expect_success "recursively pin afile" '
5660

5761
test_expect_success "pinning directly should fail now" '
5862
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 &&
6064
test_cmp expected3 actual3
6165
'
6266

6367
test_expect_success "'ipfs pin rm <hash>' should fail" '
6468
echo "Error: $HASH is pinned recursively" >expected4 &&
65-
!(ipfs pin rm "$HASH" 2>actual4) &&
69+
test_must_fail ipfs pin rm "$HASH" 2>actual4 &&
6670
test_cmp expected4 actual4
6771
'
6872

@@ -89,9 +93,10 @@ test_expect_success "'ipfs refs local' no longer shows file" '
8993
echo QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn >expected8 &&
9094
echo "$HASH_WELCOME_DOCS" >>expected8 &&
9195
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
95100
'
96101

97102
test_expect_success "adding multiblock random file succeeds" '
@@ -102,9 +107,10 @@ test_expect_success "adding multiblock random file succeeds" '
102107
test_expect_success "'ipfs pin ls -type=indirect' is correct" '
103108
ipfs refs "$MBLOCKHASH" >refsout &&
104109
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
108114
'
109115

110116
test_expect_success "pin something directly" '
@@ -122,27 +128,30 @@ test_expect_success "pin something directly" '
122128
test_expect_success "'ipfs pin ls -type=direct' is correct" '
123129
echo "$DIRECTPIN" >directpinexpected &&
124130
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
128135
'
129136

130137
test_expect_success "'ipfs pin ls -type=recursive' is correct" '
131138
echo "$MBLOCKHASH" >rp_expected &&
132139
echo "$HASH_WELCOME_DOCS" >>rp_expected &&
133140
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
137145
'
138146

139147
test_expect_success "'ipfs pin ls -type=all' is correct" '
140148
cat directpinout >allpins &&
141149
cat rp_actual >>allpins &&
142150
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
146155
'
147156

148157
test_kill_ipfs_daemon

0 commit comments

Comments
 (0)