blob: 82ed408f21c467954ff4f0176dff67b196a12c71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#!/bin/bash -e
#
# Run our test suite, which (amongst other things)
# builds a couple of DCPs.
# The outputs are compared against the ones
# in test/ref/DCP, and an error is given
# if anything is different.
private=../libdcp-test-private
work=build/test
dcpinfo=build/tools/dcpinfo
export LD_LIBRARY_PATH=build/src:build/asdcplib/src:$LD_LIBRARY_PATH
# Run the unit tests in test/
if [ "$1" == "--debug" ]; then
shift
gdb --args $work/tests $private
elif [ "$1" == "--valgrind" ]; then
shift
valgrind --tool="memcheck" $work/tests $private
else
$work/tests $private $*
fi
# Check a MXF written by the unit tests
diff $work/baz/video1.mxf $work/baz/video2.mxf
if [ "$?" != "0" ]; then
echo "FAIL: MXFs from recovery incorrect"
exit 1
fi
# Check the first DCP written by the unit tests
diff -ur test/ref/DCP/foo $work/DCP/foo
if [ "$?" != "0" ]; then
echo "FAIL: files differ"
exit 1
fi
# Check the second DCP written by the unit tests
diff -ur test/ref/DCP/bar $work/DCP/bar
if [ "$?" != "0" ]; then
echo "FAIL: files differ"
exit 1
fi
# Everything beyond this point needs $private to exist
if [ ! -e "$private/info.log" ]; then
echo ""
echo "Private data not found: some tests will not run."
exit 1
fi
# Run dcpinfo on all the DCPs in private/metadata, writing $work/info.log
rm -f $work/info.log
for d in `find $private/metadata -mindepth 1 -maxdepth 1 -type d | sort -fd`; do
if [ `basename $d` != ".git" ]; then
$dcpinfo -s $d >> $work/info.log
if [ "$?" != "0" ]; then
echo "FAIL: dcpinfo failed for $d"
exit 1
fi
fi
done
# Check info.log is what it should be
diff -q $work/info.log $private/info.log
if [ "$?" != "0" ]; then
echo "FAIL: dcpinfo output incorrect"
exit 1
fi
# Copy test/private into build/ then re-write the subtitles of every DCP using
# $work/rewrite_subs. This tests round-trip of subtitle reading/writing.
rm -f $work/info2.log
rm -rf $work/private
mkdir $work/private
cp -r $private/* $work/private
for d in `find $work/private/metadata -mindepth 1 -maxdepth 1 -type d | sort -fd`; do
if [ `basename $d` != ".git" ]; then
$work/rewrite_subs $d
$dcpinfo -s $d >> $work/info2.log
fi
done
# Fudge the output
sed -i "s/DCP: build\/test/DCP: test/g" $work/info2.log
# And check it
diff -q $work/info2.log $private/info.log
if [ "$?" != "0" ]; then
echo "FAIL: dcpinfo output from rewrite incorrect"
exit 1
fi
# Dump the subs of JourneyToJah... (which has MXF-wrapped subtitles)
# and check that they are right
$dcpinfo -s $private/JourneyToJah_TLR-1_F_EN-DE-FR_CH_51_2K_LOK_20140225_DGL_SMPTE_OV >> $work/jah.log
echo "PASS"
|