mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-21 16:05:40 +00:00
cli.test: failing test on stdin manifest
behavior ought to be, when `-f <file>` is not provided, then expect the manifest to be provided on stdin. Currently gomtree just fails if there is no `-f` (and it is not `-c`) Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
b9e743fdf0
commit
b7967864aa
1 changed files with 22 additions and 0 deletions
22
test/cli/0008.sh
Normal file
22
test/cli/0008.sh
Normal file
|
@ -0,0 +1,22 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
name=$(basename $0)
|
||||
root="$(dirname $(dirname $(dirname $0)))"
|
||||
gomtree=$(readlink -f ${root}/gomtree)
|
||||
t=$(mktemp -d /tmp/go-mtree.XXXXXX)
|
||||
|
||||
echo "[${name}] Running in ${t}"
|
||||
|
||||
pushd ${root}
|
||||
mkdir -p ${t}/extract
|
||||
git archive --format=tar HEAD^{tree} . | tar -C ${t}/extract/ -x
|
||||
|
||||
${gomtree} -K sha256digest -c -p ${t}/extract/ > ${t}/${name}.mtree
|
||||
|
||||
## This is a use-case for checking a directory, but by reading the manifest from stdin
|
||||
## since the `-f` flag is not provided.
|
||||
cat ${t}/${name}.mtree | ${gomtree} -p ${t}/extract/
|
||||
|
||||
popd
|
||||
rm -rf ${t}
|
Loading…
Reference in a new issue