Page MenuHomeWickedGov Phorge

toolcheck.sh
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

toolcheck.sh

#!/bin/bash
# Perform a basic crash test.
# This used to be the
# `parsoidsvc-{repository}-parse-tool-check-trusty`
# test on jenkins. (T141481)
BIN=$(dirname $0)
# If any of these commands fail, something is wrong!
set -ev
php $BIN/parse.php --mock --version
echo "Foo" | php $BIN/parse.php --mock --wt2html
echo "Foo" | php $BIN/parse.php --mock --wt2html --pageBundle
echo "Foo" | php $BIN/parse.php --mock --wt2wt
echo "Foo" | php $BIN/parse.php --mock --html2wt
echo "Foo" | php $BIN/parse.php --mock --html2html
function tempfile () {
mktemp "${TMPDIR:-/tmp}/$1.XXXXXX"
}
# Check --selser too!
TMPWT=$(tempfile wt)
TMPORIG=$(tempfile orig)
TMPEDIT=$(tempfile edit)
TMPPB=$(tempfile pb)
# inline data-parsoid
echo "<p>foo</p><p>boo</p>" | tee $TMPWT | php $BIN/parse.php --mock | tee $TMPORIG |
sed -e "s/foo/bar/g" > $TMPEDIT
php $BIN/parse.php --mock --selser --revtextfile $TMPWT --revhtmlfile $TMPORIG < $TMPEDIT
# data-parsoid in separate files
php $BIN/parse.php --mock --pboutfile $TMPPB < $TMPWT |
tee $TMPORIG | sed -e "s/foo/bar/g" > $TMPEDIT
php $BIN/parse.php --mock --pbinfile $TMPPB --selser \
--revtextfile $TMPWT --revhtmlfile $TMPORIG < $TMPEDIT
# Linting
echo "<div>foo" | php $BIN/parse.php --mock --logLinterData
echo "<div>foo" | php $BIN/parse.php --mock --wt2lint
# Ensure lint output (exactly 1 line) is present!
x=`echo "<div>foo" | php $BIN/parse.php --mock --logLinterData 2>&1 > /dev/null | wc -l`
if [ ! $x -eq 1 ]
then
exit -1
fi
x=`echo "<div>foo" | php $BIN/parse.php --mock --wt2lint 2>&1 | wc -l`
if [ ! $x -eq 1 ]
then
exit -1
fi
# clean up
/bin/rm $TMPWT $TMPORIG $TMPEDIT $TMPPB

File Metadata

Mime Type
text/x-shellscript
Expires
Tue, Aug 18, 18:51 (3 w, 7 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
27/99/3cab9738c57e5d3b1ec1444b0115
Default Alt Text
toolcheck.sh (1 KB)

Event Timeline