| *Title* | _SO12 Tool testing framework_ \\ |
| *Detailed description* | _A testing framework, to ease the evaluation and measurement of tools. Furthermore, it allows us to test the effects of new versions and modifications_ |
| *[Solution Champion|SP:Responsibilities of the roles described on these pages]* \\ | _Asger Askov Blekinge (SB)_ |
| *Corresponding Issue(s)* \\ | \\ |
| *myExperiment Link* \\ | \\ |
| *Tool Registry Link* \\ | The tool testing framework is hosted here: https://github.com/openplanets/Scape-Tool-Tester |
| *Evaluation* \\ | |
h3. Test dataset
The jhove2 project provides a fair dataset, which can be downloaded. Use this script to download the data.
{code:language=bash}#!/bin/bash
mkdir -p "$1"
FILEDIR="`cd $1; pwd`"
pushd "$FILEDIR" > /dev/null
wget -N -c "http://jhove.cvs.sourceforge.net/viewvc/jhove/jhove/examples/?view=tar"
if [ -e "index.html?view=tar" ]; then
tar -xvzf "index.html?view=tar"
else
echo "Archive not downloaded..."
fi
popd > /dev/null{code}
| *Detailed description* | _A testing framework, to ease the evaluation and measurement of tools. Furthermore, it allows us to test the effects of new versions and modifications_ |
| *[Solution Champion|SP:Responsibilities of the roles described on these pages]* \\ | _Asger Askov Blekinge (SB)_ |
| *Corresponding Issue(s)* \\ | \\ |
| *myExperiment Link* \\ | \\ |
| *Tool Registry Link* \\ | The tool testing framework is hosted here: https://github.com/openplanets/Scape-Tool-Tester |
| *Evaluation* \\ | |
h3. Test dataset
The jhove2 project provides a fair dataset, which can be downloaded. Use this script to download the data.
{code:language=bash}#!/bin/bash
mkdir -p "$1"
FILEDIR="`cd $1; pwd`"
pushd "$FILEDIR" > /dev/null
wget -N -c "http://jhove.cvs.sourceforge.net/viewvc/jhove/jhove/examples/?view=tar"
if [ -e "index.html?view=tar" ]; then
tar -xvzf "index.html?view=tar"
else
echo "Archive not downloaded..."
fi
popd > /dev/null{code}