t0280-plugin-git.sh 1.26 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#!/bin/sh
#
# Copyright (c) 2016 Jakub Sztandera
# MIT Licensed; see the LICENSE file in this repository.
#

test_description="Test git plugin"

. lib/test-lib.sh

# if in travis CI, dont test mount (no fuse)
if ! test_have_prereq PLUGIN; then
	skip_all='skipping git plugin tests, plugins not available'

	test_done
fi

test_init_ipfs

test_expect_success "copy plugin" '
	mkdir -p "$IPFS_PATH/plugins" &&
	cp ../plugins/git.so "$IPFS_PATH/plugins/"
'

Łukasz Magiera's avatar
Łukasz Magiera committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
# from https://github.com/ipfs/go-ipld-git/blob/master/make-test-repo.sh
test_expect_success "prepare test data" '
	tar xzf ../t0280-plugin-git-data/git.tar.gz
'

test_dag_git() {
	test_expect_success "add objects via dag put" '
		find objects -type f -exec ipfs dag put --format=git --input-enc=zlib {} \; -exec echo \; > hashes
	'

	test_expect_success "successfully get added objects" '
		cat hashes | xargs -i ipfs dag get -- {} > /dev/null
	'

	test_expect_success "path traversals work" '
		echo \"YmxvYiA3ACcsLnB5Zgo=\" > file1 &&
		ipfs dag get z8mWaJh5RLq16Zwgtd8gZxd63P4hgwNNx/object/parents/0/tree/dir2/hash/f3/hash > out1
	'

	test_expect_success "outputs look correct" '
		test_cmp file1 out1
	'
}

# should work offline
#test_dag_git

# should work online
test_launch_ipfs_daemon
test_dag_git
test_kill_ipfs_daemon
56 57

test_done