t0010-basic-commands.sh 1.16 KB
Newer Older
Christian Couder's avatar
Christian Couder committed
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 installation and some basic commands"

9
. lib/test-lib.sh
Christian Couder's avatar
Christian Couder committed
10 11 12 13 14 15 16 17 18 19

test_expect_success "current dir is writable" '
	echo "It works!" >test.txt
'

test_expect_success "ipfs version succeeds" '
	ipfs version >version.txt
'

test_expect_success "ipfs version output looks good" '
20
	cat version.txt | egrep "^ipfs version [0-9]+\.[0-9]+\.[0-9]" >/dev/null ||
21
	test_fsh cat version.txt
Christian Couder's avatar
Christian Couder committed
22 23 24 25 26 27 28
'

test_expect_success "ipfs help succeeds" '
	ipfs help >help.txt
'

test_expect_success "ipfs help output looks good" '
29 30
	cat help.txt | egrep -i "^Usage:" >/dev/null &&
	cat help.txt | egrep "ipfs .* <command>" >/dev/null ||
31
	test_fsh cat help.txt
Christian Couder's avatar
Christian Couder committed
32 33
'

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
test_expect_success "'ipfs commands' succeeds" '
	ipfs commands >commands.txt
'

test_expect_success "'ipfs commands' output looks good" '
	grep "ipfs add" commands.txt &&
	grep "ipfs daemon" commands.txt &&
	grep "ipfs update" commands.txt
'

test_expect_success "All commands accept --help" '
	while read -r cmd
	do
		echo "running: $cmd --help"
		$cmd --help </dev/null >/dev/null || return
	done <commands.txt
'

Christian Couder's avatar
Christian Couder committed
52
test_done