-
Notifications
You must be signed in to change notification settings - Fork 7
/
RunModTestAndExamples.ksh
490 lines (382 loc) · 11.3 KB
/
RunModTestAndExamples.ksh
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
#! C:/mksnt/sh.exe
echo this script is deprecated...use RunModTestAndExamples.bash under cygwin instead!
exit 1
###############################################################################
#
# $Id$ $Name$
#
# The contents of this file are subject to the AAF SDK Public Source
# License Agreement Version 2.0 (the "License"); You may not use this
# file except in compliance with the License. The License is available
# in AAFSDKPSL.TXT, or you may obtain a copy of the License from the
# Advanced Media Workflow Association, Inc., or its successor.
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
# the License for the specific language governing rights and limitations
# under the License. Refer to Section 3.3 of the License for proper use
# of this Exhibit.
#
# WARNING: Please contact the Advanced Media Workflow Association,
# Inc., for more information about any additional licenses to
# intellectual property covering the AAF Standard that may be required
# to create and distribute AAF compliant products.
# (http://www.amwa.tv/policies).
#
# Copyright Notices:
# The Original Code of this file is Copyright 1998-2009, licensor of the
# Advanced Media Workflow Association. All rights reserved.
#
# The Initial Developer of the Original Code of this file and the
# licensor of the Advanced Media Workflow Association is
# Avid Technology.
# All rights reserved.
#
###############################################################################
# Terry Skotz
# modified by Tom Ransdell 15-DEC-1999, 05-JAN-2000.
CHECK_DEBUG=0
CHECK_RELEASE=0
ESSENCETEST=0
MODULETEST=0
TIMDUMP=0
CLIENTTEST=0
CUTSTEST=0
PROPDIRECTDUMP=0
PROPDIRECTACCESS=0
CREATESEQUENCE=0
ESSENCEACCESS=0
AAFINFO=0
AAFOMFTEST=0
EXPORTAUDIOEXAMPLE=0
EXPORTSIMPLECOMPOSITION=0
IMPORTAUDIOEXAMPLE=0
PERSONNELEXTENSIONTEST=0
PERSONNELEXTENSIONDIFF=0
ALL=0
PRINTPATH=0
AAFWATCHDOG=0
PrintHelp ()
{
echo "\nTo run module test and all examples for specified target, use either:"
echo "-r = Release"
echo "-d = Debug"
echo "\nTo specify which tests to run, add any of the following:"
echo "-a = Run ALL Tests"
echo "-ao = AafOmf"
echo "-i = ComAAFInfo"
echo "-cl = ComClientTest"
echo "-cu = ComCutsTest"
echo "-e = ComEssenceDataTest"
echo "-m = ComModAAF"
echo "-pd = ComPropDirectDump"
echo "-pa = ComPropDirectAccess"
echo "-ea = EssenceAccess"
echo "-cs = CreateSequence"
echo "-pe = Personnel Extension tests"
echo "-eae = ExportAudioExample"
echo "-esc = ExportSimpleComposition"
echo "-iae = ImportAudioExample"
echo "-t = dump\n\n"
echo "-s = update AAFWatchDog.log with exit code results"
echo "-pp = Print PATH variable\n\n"
}
#####################
# Parse Command Line
#####################
if [ $# -eq 0 ]; then
PrintHelp
exit 1
elif [ $# -eq 1 ]; then
if [ $1 = "-d" ] || [ $1 = "-r" ]; then
ALL=1;
fi
fi
until [ $# = 0 ]
do
case $1 in
-a ) ALL=1;;
-r ) CHECK_RELEASE=1 ;;
-d ) CHECK_DEBUG=1 ;;
-e ) ESSENCETEST=1;;
-m ) MODULETEST=1;;
-t ) TIMDUMP=1;;
-cl ) CLIENTTEST=1;;
-cu ) CUTSTEST=1;;
-pd ) PROPDIRECTDUMP=1;;
-pa ) PROPDIRECTACCESS=1;;
-ea) ESSENCEACCESS=1;;
-cs ) CREATESEQUENCE=1;;
-i ) AAFINFO=1;;
-ao ) AAFOMFTEST=1;;
-pe ) PERSONNELEXTENSIONTEST=1;;
-eae ) EXPORTAUDIOEXAMPLE=1;;
-esc ) EXPORTSIMPLECOMPOSITION=1;;
-iae ) IMPORTAUDIOEXAMPLE=1;;
-p ) PRINTPATH=1;;
-s ) AAFWATCHDOG=1;;
-h ) PrintHelp
exit 1 ;;
esac
shift
done
DEBUG="AAFWinSDK/Debug"
RELEASE="AAFWinSDK/Release"
OLD_PATH=""
STATUS=0
RESULTS=""
CheckExitCode ()
{
ExitCode=$1
PROGRAM=$2
#Generate list of all the results
RESULTS="${RESULTS}$ExitCode $PROGRAM\n"
if [ $ExitCode -ne 0 ]; then
STATUS=1
fi
}
SetPath ()
{
Target=$1
print "\nSetting PATH $Target \n"
OLD_PATH=$PATH
PATH="`PWD`/AAFWINSDK/${Target}/RefImpl;$PATH"
}
ResetPath ()
{
print "\nResetting PATH\n"
PATH=$OLD_PATH
}
PrintSeparator ()
{
TEXT=$1
print "\n\n"
print "****************************************************************************"
print "$TEXT"
print "****************************************************************************\n\n"
}
VerifyFiles ()
{
FileList=$1
RemoveIfExists ()
{
FileToBeRemove=$1
if [ -a FileToBeRemove ]; then
rm FileToBeRemove
fi
}
print "\nRunning Files thru validation suite"
for File in $FileList; do
print "\n ${File}"
RemoveIfExists ${File}.Info.log
${ExamplesDir}/ComAAFInfo "$File" > tempdump.log
Stat=$?
print " $Stat ComAAFInfo.exe"
if [ $Stat -ne 0 ]; then
CheckExitCode $Stat " $File <- ComAAFInfo.exe reported error. See ${File}.Info.log"
mv tempdump.log ${File}.Info.log
fi
RemoveIfExists ${File}.dump.log
${DumpDir}/dump -s -p "$File" > tempdump.log
Stat=$?
print " $Stat dump.exe"
if [ $Stat -ne 0 ]; then
CheckExitCode $Stat " $File <- dump.exe reported error. See ${File}.dump.log"
mv tempdump.log ${File}.dump.log
fi
RemoveIfExists ${File}.CPDDump.log
${ExamplesDir}/ComPropDirectDump "$File" > tempdump.log
Stat=$?
print " $Stat ComPropDirectDump.exe"
if [ $Stat -ne 0 ]; then
CheckExitCode $Stat " $File <- ComPropDirectDump.exe reported error. See ${File}.CPDDump.log"
mv tempdump.log ${File}.CPDDump.log
fi
# RemoveIfExists ${File}.CPDAccess.log
# ${ExamplesDir}/ComPropDirectAccess "$File" > tempdump.log
# Stat=$?
# print " $Stat ComPropDirectAccess.exe"
# if [ $Stat -ne 0 ]; then
# CheckExitCode $Stat " $File <- ComPropDirectAccess.exe reported error. See ${File}.CPDAccess.log"
# mv tempdump.log ${File}.CPDAccess.log
# fi
done
RemoveIfExists tempdump.log
}
RunMainScript ()
{
Target=$1
print "\n\nTarget: $Target"
SetPath "$Target"
if [ PRINTPATH -eq 1 ]; then
print "PATH = $PATH"
print "\n\n"
fi
START_DIR="`PWD`"
cd AAFWinSDK/$Target
TargetDir="`PWD`"
DumpDir="`PWD`/DevUtils"
ExamplesDir="`PWD`/Examples/Com"
UtilitiesDir="`PWD`/Utilities"
if [ MODULETEST -eq 1 ] || [ ALL -eq 1 ]; then
cd Test
cp ../../Test/Com/ComModTestAAF/Laser.wav .
ComModAAF
CheckExitCode $? "ComModAAF"
VerifyFiles "`ls *.aaf`"
cd $TargetDir
fi
if [ AAFOMFTEST -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "AafOmf Convertor Test 1 - AAF -> OMF"
cd Utilities
cp ../Test/AAFSequenceTest.aaf .
# Copy the correct omf dll if necessary.
if [ CHECK_DEBUG -eq 1 ]; then
OMFTOOLKITDLL="omfToolkitd.dll"
else
OMFTOOLKITDLL="omfToolkit.dll"
fi
if [ ! -f $OMFTOOLKITDLL ] || [ $OMFTOOLKITDLL -ot "../../../Omf/$OMFTOOLKITDLL" ]; then
#echo "cp ../../../Omf/$OMFTOOLKITDLL `PWD`"
cp "../../../Omf/$OMFTOOLKITDLL" .
#else
#echo "$OMFTOOLKITDLL is up-to-date"
fi
AafOmf -omf AAFSequenceTest.aaf
CheckExitCode $? "AafOmf Convertor Test 1 - AAF -> OMF"
VerifyFiles "AAFSequenceTest.aaf"
PrintSeparator "AafOmf Convertor Test 2 - OMF -> AAF"
cp ../../Utilities/AafOmf/Debug/Complx2x.omf .
AafOmf Complx2x.omf
CheckExitCode $? "AafOmf Convertor Test 2 - OMF -> AAF"
cd $TargetDir
fi
if [ CLIENTTEST -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "Running COMClientAAF"
cd Examples/com
COMClientAAF
CheckExitCode $? "COMClientAAF"
VerifyFiles "`ls *.aaf`"
cd $TargetDir
fi
if [ CUTSTEST -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "Running ComCutsTestAAF"
cd Examples/com
ComCutsTestAAF
CheckExitCode $? "ComCutsTestAAF"
VerifyFiles "CutsOnly.aaf"
cd $TargetDir
fi
if [ PROPDIRECTACCESS -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "Running ComPropDirectAccess"
cd Examples/com
ComPropDirectAccess
CheckExitCode $? "ComPropDirectAccess"
VerifyFiles "PropAccess.aaf"
cd $TargetDir
fi
if [ ESSENCETEST -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "Running ComEssenceDataTest"
cd Examples/com
cp ../../../examples/com-api/ComEssenceDataTest/Laser.wav .
ComEssenceDataTest
CheckExitCode $? "ComEssenceDataTest"
VerifyFiles "EssenceTest.aaf"
VerifyFiles "ExternalAAFEssence.aaf"
cd $TargetDir
fi
if [ CREATESEQUENCE -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "Running CreateSequence"
cd Test
CreateSequence 10 CreateSequence10
CheckExitCode $? "CreateSequence"
VerifyFiles "CreateSequence10.aaf"
cd $TargetDir
fi
if [ ESSENCEACCESS -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "Running EssenceAccess"
cd Test
EssenceAccess 10
CheckExitCode $? "EssenceAccess"
VerifyFiles "ExternalAAFEssence.aaf"
VerifyFiles "ExternalStandardAAF.aaf"
VerifyFiles "InternalMulti.aaf"
VerifyFiles "InternalStandard.aaf"
cd $TargetDir
fi
if [ PERSONNELEXTENSIONTEST -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "Running ComExtensionWrite"
cd Examples/com
ComExtensionWrite > ComExtensionWrite.txt
CheckExitCode $? "ComExtensionWrite"
cat ComExtensionWrite.txt
VerifyFiles "extension.aaf"
PrintSeparator "Running ComPersonnelPluginWrite"
ComPersonnelPluginWrite > ComPersonnelPluginWrite.txt
CheckExitCode $? "ComPersonnelPluginWrite"
cat ComPersonnelPluginWrite.txt
VerifyFiles "extensionPlugin.aaf"
PrintSeparator "Comparing the output from ComExtensionWrite and ComPersonnelPluginWrite"
# Strip off the ONLY lines that should be different between the output
# of ComExtensionWrite and ComPersonnelPluginWrite.
cat ComExtensionWrite.txt | grep -v 'extension\.aaf' > ComExtensionWrite1.txt
cat ComPersonnelPluginWrite.txt | grep -v 'extensionPlugin\.aaf' > ComPersonnelPluginWrite1.txt
diff ComExtensionWrite1.txt ComPersonnelPluginWrite1.txt
Stat=$?
if [ Stat -ne 0 ]; then
CheckExitCode $Stat "diff ComExtensionWrite1.txt ComPersonnelPluginWrite1.txt"
echo "Edit sources in ComExtensionWrite and ComPersonnelPluginWrite"
echo "until diff ComExtensionWrite1.txt ComPersonnelPluginWrite1.txt"
echo "detects no differences."
else
echo "Succeeded."
fi
cd $TargetDir
fi
if [ EXPORTAUDIOEXAMPLE -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "Running ExportAudioExample"
cd Examples/Com
ExportAudioExample
CheckExitCode $? "ExportAudioExample"
VerifyFiles "ExportAudioExample.aaf"
cd $TargetDir
fi
if [ EXPORTSIMPLECOMPOSITION -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "Running ExportSimpleComposition"
cd Examples/Com
ExportSimpleComposition
CheckExitCode $? "ExportSimpleComposition"
VerifyFiles "ExportSimpleComposition.aaf"
cd $TargetDir
fi
if [ IMPORTAUDIOEXAMPLE -eq 1 ] || [ ALL -eq 1 ]; then
PrintSeparator "Running ImportAudioExample"
cd Examples/Com
ImportAudioExample
CheckExitCode $? "ImportAudioExample"
VerifyFiles "ExportAudioExample.aaf"
cd $TargetDir
fi
cd $START_DIR
ResetPath
}
PrintExitCodes ()
{
ExTarget=$1
print "\nPrinting $ExTarget Test Exit Codes:\n$RESULTS"
if [ AAFWATCHDOG -eq 1 ]; then
print "\nPrinting $ExTarget Test Exit Codes:\n$RESULTS" >> D:/AAFWatchDog/AAFWatchDog.log
print "\nAll Generated Test and Example files have been run thru the following programs:" >> D:/AAFWatchDog/AAFWatchDog.log
print "ComAAFInfo, dump, ComPropDirectDump" >> D:/AAFWatchDog/AAFWatchDog.log
# print "ComAAFInfo, dump, ComPropDirectDump, ComPropDirectAccess" >> D:/AAFWatchDog/AAFWatchDog.log
fi
}
if [ CHECK_DEBUG -eq 1 ]; then
RunMainScript "Debug"
PrintExitCodes "Debug"
fi
if [ CHECK_RELEASE -eq 1 ]; then
RunMainScript "Release"
PrintExitCodes "Release"
fi
exit $STATUS