t0040-add-and-cat.sh 3.79 KB
Newer Older
1 2 3 4 5 6 7 8
#!/bin/sh
#
# Copyright (c) 2014 Christian Couder
# MIT Licensed; see the LICENSE file in this repository.
#

test_description="Test add and cat commands"

9
. lib/test-lib.sh
10

11
test_launch_ipfs_daemon_and_mount
12

13 14 15 16 17
test_expect_success "'ipfs add --help' succeeds" '
	ipfs add --help >actual
'

test_expect_success "'ipfs add --help' output looks good" '
18 19
	egrep "ipfs add.*<path>" actual >/dev/null ||
	fsh cat actual
20 21 22 23 24 25 26
'

test_expect_success "'ipfs cat --help' succeeds" '
	ipfs cat --help >actual
'

test_expect_success "'ipfs cat --help' output looks good" '
27 28
	egrep "ipfs cat.*<ipfs-path>" actual >/dev/null ||
	fsh cat actual
29 30
'

31 32
test_expect_success "ipfs add succeeds" '
	echo "Hello Worlds!" >mountdir/hello.txt &&
33
	ipfs add mountdir/hello.txt >actual
34 35 36 37
'

test_expect_success "ipfs add output looks good" '
	HASH="QmVr26fY1tKyspEJBniVhqxQeEjhF78XerGiqWAwraVLQH" &&
38
	echo "added $HASH mountdir/hello.txt" >expected &&
39 40 41 42
	test_cmp expected actual
'

test_expect_success "ipfs cat succeeds" '
43
	ipfs cat $HASH >actual
44 45 46 47 48 49 50
'

test_expect_success "ipfs cat output looks good" '
	echo "Hello Worlds!" >expected &&
	test_cmp expected actual
'

51
test_expect_success FUSE "cat ipfs/stuff succeeds" '
52 53 54
	cat ipfs/$HASH >actual
'

55
test_expect_success FUSE "cat ipfs/stuff looks good" '
56 57 58
	test_cmp expected actual
'

59 60 61 62 63 64 65 66 67 68 69
test_expect_success "'ipfs add -q' succeeds" '
	echo "Hello Venus!" >mountdir/venus.txt &&
	ipfs add -q mountdir/venus.txt >actual
'

test_expect_success "'ipfs add -q' output looks good" '
	HASH="QmU5kp3BH3B8tnWUU2Pikdb2maksBNkb92FHRr56hyghh4" &&
	echo "$HASH" >expected &&
	test_cmp expected actual
'

70 71 72 73
test_expect_success "go-random is installed" '
	type random
'

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
test_expect_success "generate 5MB file using go-random" '
	random 5242880 41 >mountdir/bigfile
'

test_expect_success "sha1 of the file looks ok" '
	echo "5620fb92eb5a49c9986b5c6844efda37e471660e  mountdir/bigfile" >sha1_expected &&
	shasum mountdir/bigfile >sha1_actual &&
	test_cmp sha1_expected sha1_actual
'

test_expect_success "'ipfs add bigfile' succeeds" '
	ipfs add mountdir/bigfile >actual
'

test_expect_success "'ipfs add bigfile' output looks good" '
	HASH="Qmf2EnuvFQtpFnMJb5aoVPnMx9naECPSm8AGyktmEB5rrR" &&
	echo "added $HASH mountdir/bigfile" >expected &&
	test_cmp expected actual
'

test_expect_success "'ipfs cat' succeeds" '
	ipfs cat $HASH >actual
'

test_expect_success "'ipfs cat' output looks good" '
	test_cmp mountdir/bigfile actual
'

test_expect_success FUSE "cat ipfs/bigfile succeeds" '
	cat ipfs/$HASH >actual
'

test_expect_success FUSE "cat ipfs/bigfile looks good" '
	test_cmp mountdir/bigfile actual
'

110
test_expect_success EXPENSIVE "generate 100MB file using go-random" '
111 112 113
	random 104857600 42 >mountdir/bigfile
'

114
test_expect_success EXPENSIVE "sha1 of the file looks ok" '
115
	echo "885b197b01e0f7ff584458dc236cb9477d2e736d  mountdir/bigfile" >sha1_expected &&
116
	shasum mountdir/bigfile >sha1_actual &&
117 118 119
	test_cmp sha1_expected sha1_actual
'

120
test_expect_success EXPENSIVE "ipfs add bigfile succeeds" '
121
	ipfs add mountdir/bigfile >actual
122 123
'

124
test_expect_success EXPENSIVE "ipfs add bigfile output looks good" '
125
	HASH="QmWXysX1oysyjTqd5xGM2T1maBaVXnk5svQv4GKo5PsGPo" &&
126
	echo "added $HASH mountdir/bigfile" >expected &&
127 128 129
	test_cmp expected actual
'

130
test_expect_success EXPENSIVE "ipfs cat succeeds" '
131
	ipfs cat $HASH | shasum >sha1_actual
132 133
'

134 135 136 137
test_expect_success EXPENSIVE "ipfs cat output looks good" '
	ipfs cat $HASH >actual &&
	test_cmp mountdir/bigfile actual
'
138

139
test_expect_success EXPENSIVE "ipfs cat output shasum looks good" '
140
	echo "885b197b01e0f7ff584458dc236cb9477d2e736d  -" >sha1_expected &&
141 142 143
	test_cmp sha1_expected sha1_actual
'

144
test_expect_success FUSE,EXPENSIVE "cat ipfs/bigfile succeeds" '
145
	cat ipfs/$HASH | shasum >sha1_actual
146 147
'

148
test_expect_success FUSE,EXPENSIVE "cat ipfs/bigfile looks good" '
149 150 151
	test_cmp sha1_expected sha1_actual
'

152
test_kill_ipfs_daemon
153 154

test_done