From 06f1202a9414d3d47d68b6072182aa3d6df08dec Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 13 Oct 2012 09:49:27 +0100 Subject: Add black box tests --- tests/find.script | 22 ++++++++++++++++++++++ tests/tag.script | 21 +++++++++++++++++++++ tests/untag.script | 21 +++++++++++++++++++++ 3 files changed, 64 insertions(+) create mode 100755 tests/find.script create mode 100755 tests/tag.script create mode 100755 tests/untag.script diff --git a/tests/find.script b/tests/find.script new file mode 100755 index 0000000..b37949d --- /dev/null +++ b/tests/find.script @@ -0,0 +1,22 @@ +#!/bin/sh +# Copyright 2012 Lars Wirzenius +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +set -eu + +mkdir -p "$DATADIR/foo/bar/cache" +"$SRCDIR/cachedir" tag "$DATADIR/foo/bar/cache" +"$SRCDIR/cachedir" find "$DATADIR" + diff --git a/tests/tag.script b/tests/tag.script new file mode 100755 index 0000000..c07f24d --- /dev/null +++ b/tests/tag.script @@ -0,0 +1,21 @@ +#!/bin/sh +# Copyright 2012 Lars Wirzenius +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +set -eu + +"$SRCDIR/cachedir" tag "$DATADIR" +cat "$DATADIR/CACHEDIR.TAG" + diff --git a/tests/untag.script b/tests/untag.script new file mode 100755 index 0000000..3334b54 --- /dev/null +++ b/tests/untag.script @@ -0,0 +1,21 @@ +#!/bin/sh +# Copyright 2012 Lars Wirzenius +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +set -eu + +"$SRCDIR/cachedir" tag "$DATADIR" +"$SRCDIR/cachedir" untag "$DATADIR" +! [ -e "$DATADIR/CACHEDIR.TAG" ] -- cgit v1.2.1