1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmtestenv/mmtesttools/Build/buildutils/testDataMbcUtils.py Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,171 @@
1.4 +
1.5 +# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +# All rights reserved.
1.7 +# This component and the accompanying materials are made available
1.8 +# under the terms of "Eclipse Public License v1.0"
1.9 +# which accompanies this distribution, and is available
1.10 +# at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +#
1.12 +# Initial Contributors:
1.13 +# Nokia Corporation - initial contribution.
1.14 +#
1.15 +# Contributors:
1.16 +#
1.17 +# Description:
1.18 +#
1.19 +"""Data used by testMbcUtils - give as python strings etc. Separated out to make the test code easier to understand"""
1.20 +
1.21 +# the following is taken from misc.mbc. Contains all features we seem to use. Specific contents not really important
1.22 +import1 = r"""
1.23 +// Misc.mbc
1.24 +//
1.25 +// Copyright (c) Symbian Software Ltd 2004 - 2008. All rights reserved.
1.26 +//
1.27 +// non-optional modules for misc components
1.28 +
1.29 +SECTION_DIRS
1.30 +
1.31 +..\..\ECam\framework\group
1.32 +..\..\ECam\plugins\group
1.33 +..\..\mmcommon\group
1.34 +..\..\openmax\il\group
1.35 +..\..\mdf\group
1.36 +..\..\mobiletv\hai\dvbh\group
1.37 +..\..\a3f\traces\group
1.38 +..\..\a3f\refmmrc\group
1.39 +..\..\a3f\a3fserverstart\group
1.40 +..\..\a3f\a3fdevsound\group
1.41 +..\..\a3f\acf\group
1.42 +..\..\a3f\acl\group
1.43 +..\..\a3f\refacladaptation\group
1.44 +..\..\a3f\devsoundadaptationinfo\group
1.45 +..\..\packetvideo\group
1.46 +..\..\3gplibrary\group
1.47 +
1.48 +SECTION_OPTIONALDIRS
1.49 +
1.50 +..\..\xvidpu\group
1.51 +
1.52 +SECTION_COMMANDS
1.53 +
1.54 +// oneoff - TImageViewer
1.55 +oneoff ..\..\ICL\group abld -k test export
1.56 +oneoff ..\..\ICL\group abld -k test build arm4 timageviewer
1.57 +oneoff ..\..\ICL\group abld -k test build winscw timageviewer
1.58 +"""
1.59 +
1.60 +result1 = (
1.61 +None, # will be filled in runtime with the filename
1.62 +['..\\..\\ECam\\framework\\group',
1.63 +'..\\..\\ECam\\plugins\\group',
1.64 +'..\\..\\mmcommon\\group',
1.65 +'..\\..\\openmax\\il\\group',
1.66 +'..\\..\\mdf\\group',
1.67 +'..\\..\\mobiletv\\hai\\dvbh\\group',
1.68 +'..\\..\\a3f\\traces\\group',
1.69 +'..\\..\\a3f\\refmmrc\\group',
1.70 +'..\\..\\a3f\\a3fserverstart\\group',
1.71 +'..\\..\\a3f\\a3fdevsound\\group',
1.72 +'..\\..\\a3f\\acf\\group',
1.73 +'..\\..\\a3f\\acl\\group',
1.74 +'..\\..\\a3f\\refacladaptation\\group',
1.75 +'..\\..\\a3f\\devsoundadaptationinfo\\group',
1.76 +'..\\..\\packetvideo\\group',
1.77 +'..\\..\\3gplibrary\\group'],
1.78 +['..\\..\\xvidpu\\group'],
1.79 +[('..\\..\\ICL\\group', 'abld -k test export'),
1.80 +('..\\..\\ICL\\group', 'abld -k test build arm4 timageviewer'),
1.81 +('..\\..\\ICL\\group', 'abld -k test build winscw timageviewer')])
1.82 +
1.83 +# import2 is a list of three possible files - misc.mbc is actually curtailed. miscopt.mbc is just comment
1.84 +import2 = [
1.85 +r"""// Misc.mbc
1.86 +//
1.87 +// Copyright (c) Symbian Software Ltd 2004 - 2008. All rights reserved.
1.88 +//
1.89 +// non-optional modules for misc components
1.90 +
1.91 +SECTION_DIRS
1.92 +
1.93 +..\..\ECam\framework\group
1.94 +..\..\ECam\plugins\group
1.95 +..\..\mmcommon\group
1.96 +..\..\openmax\il\group""",
1.97 +r"""// MiscOpt.mbc
1.98 +//
1.99 +// Copyright (c) Symbian Software Ltd 2004 - 2007. All rights reserved.
1.100 +//
1.101 +// Optional misc components
1.102 +
1.103 +SECTION_DIRS
1.104 +
1.105 +//..\..\mm3plane\mm-tech\mmrc\mmrcfw\group""",
1.106 +r"""// icl.mbc
1.107 +//
1.108 +// Copyright (c) Symbian Software Ltd 2004 - 2007. All rights reserved.
1.109 +//
1.110 +// non-optional ICL modules
1.111 +
1.112 +SECTION_DIRS
1.113 +
1.114 +..\..\ICL\group
1.115 +..\..\ICL\plugins\group
1.116 +"""]
1.117 +
1.118 +result2 = [
1.119 + (None, ['..\\..\\ECam\\framework\\group',
1.120 + '..\\..\\ECam\\plugins\\group',
1.121 + '..\\..\\mmcommon\\group',
1.122 + '..\\..\\openmax\\il\\group'], [], []),
1.123 + (None, [], [], []),
1.124 + (None, ['..\\..\\ICL\\group', '..\\..\\ICL\\plugins\\group'], [], [])]
1.125 +
1.126 +badImport1 = r"""
1.127 +
1.128 +SECTION_DIRS
1.129 +this is a bad dir
1.130 +"""
1.131 +
1.132 +badImport2 = r"""
1.133 +
1.134 +SECTION_COMMANDS
1.135 +
1.136 +// oneoff - TImageViewer
1.137 +oneoffbad ..\..\ICL\group abld -k test export
1.138 +"""
1.139 +
1.140 +# .mbc file used for intTest
1.141 +intTestMbcFile = r"""
1.142 +// intTestMbc
1.143 +
1.144 +SECTION_DIRS
1.145 +
1.146 +.\x
1.147 +.\y
1.148 +
1.149 +SECTION_OPTIONALDIRS
1.150 +
1.151 +.\z
1.152 +"""
1.153 +
1.154 +testFolderList1 = [
1.155 + (False, None, "Hello there"),
1.156 + (True, None, "Something missing"),
1.157 + (True, "foo", "XX"),
1.158 + (True, "bar", "XX"),
1.159 + ]
1.160 +
1.161 +testXmlFile1 = """<SystemDefinition name="BLAH" schema="2.0.0">
1.162 + <systemModel>
1.163 + <layer name="NEW_CUSTOM_LAYER">
1.164 + <collection name="Fake Collection">
1.165 + <component name="Fake Multimedia">
1.166 + <!-- Something missing -->
1.167 + <unit bldFile="foo" /><!-- XX -->
1.168 + <unit bldFile="bar" /><!-- XX -->
1.169 + </component>
1.170 + </collection>
1.171 + </layer>
1.172 + </systemModel>
1.173 +</SystemDefinition>
1.174 +"""