os/mm/mmtestenv/mmtesttools/Build/buildutils/testDataMbcUtils.py
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
sl@0
     2
# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
# All rights reserved.
sl@0
     4
# This component and the accompanying materials are made available
sl@0
     5
# under the terms of "Eclipse Public License v1.0"
sl@0
     6
# which accompanies this distribution, and is available
sl@0
     7
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
#
sl@0
     9
# Initial Contributors:
sl@0
    10
# Nokia Corporation - initial contribution.
sl@0
    11
#
sl@0
    12
# Contributors:
sl@0
    13
#
sl@0
    14
# Description:
sl@0
    15
#
sl@0
    16
"""Data used by testMbcUtils - give as python strings etc. Separated out to make the test code easier to understand"""
sl@0
    17
sl@0
    18
# the following is taken from misc.mbc. Contains all features we seem to use. Specific contents not really important
sl@0
    19
import1 = r"""
sl@0
    20
// Misc.mbc
sl@0
    21
//
sl@0
    22
// Copyright (c) Symbian Software Ltd 2004 - 2008.  All rights reserved.
sl@0
    23
//
sl@0
    24
// non-optional modules for misc components
sl@0
    25
sl@0
    26
SECTION_DIRS
sl@0
    27
sl@0
    28
..\..\ECam\framework\group
sl@0
    29
..\..\ECam\plugins\group
sl@0
    30
..\..\mmcommon\group
sl@0
    31
..\..\openmax\il\group
sl@0
    32
..\..\mdf\group
sl@0
    33
..\..\mobiletv\hai\dvbh\group
sl@0
    34
..\..\a3f\traces\group
sl@0
    35
..\..\a3f\refmmrc\group
sl@0
    36
..\..\a3f\a3fserverstart\group
sl@0
    37
..\..\a3f\a3fdevsound\group
sl@0
    38
..\..\a3f\acf\group
sl@0
    39
..\..\a3f\acl\group
sl@0
    40
..\..\a3f\refacladaptation\group
sl@0
    41
..\..\a3f\devsoundadaptationinfo\group
sl@0
    42
..\..\packetvideo\group
sl@0
    43
..\..\3gplibrary\group
sl@0
    44
sl@0
    45
SECTION_OPTIONALDIRS
sl@0
    46
sl@0
    47
..\..\xvidpu\group
sl@0
    48
sl@0
    49
SECTION_COMMANDS
sl@0
    50
sl@0
    51
// oneoff - TImageViewer
sl@0
    52
oneoff ..\..\ICL\group abld -k test export
sl@0
    53
oneoff ..\..\ICL\group abld -k test build arm4 timageviewer
sl@0
    54
oneoff ..\..\ICL\group abld -k test build winscw timageviewer
sl@0
    55
"""
sl@0
    56
sl@0
    57
result1 = (
sl@0
    58
None, # will be filled in runtime with the filename
sl@0
    59
['..\\..\\ECam\\framework\\group',
sl@0
    60
'..\\..\\ECam\\plugins\\group',
sl@0
    61
'..\\..\\mmcommon\\group',
sl@0
    62
'..\\..\\openmax\\il\\group',
sl@0
    63
'..\\..\\mdf\\group',
sl@0
    64
'..\\..\\mobiletv\\hai\\dvbh\\group',
sl@0
    65
'..\\..\\a3f\\traces\\group',
sl@0
    66
'..\\..\\a3f\\refmmrc\\group',
sl@0
    67
'..\\..\\a3f\\a3fserverstart\\group',
sl@0
    68
'..\\..\\a3f\\a3fdevsound\\group',
sl@0
    69
'..\\..\\a3f\\acf\\group',
sl@0
    70
'..\\..\\a3f\\acl\\group',
sl@0
    71
'..\\..\\a3f\\refacladaptation\\group',
sl@0
    72
'..\\..\\a3f\\devsoundadaptationinfo\\group',
sl@0
    73
'..\\..\\packetvideo\\group',
sl@0
    74
'..\\..\\3gplibrary\\group'],
sl@0
    75
['..\\..\\xvidpu\\group'],
sl@0
    76
[('..\\..\\ICL\\group', 'abld -k test export'),
sl@0
    77
('..\\..\\ICL\\group', 'abld -k test build arm4 timageviewer'),
sl@0
    78
('..\\..\\ICL\\group', 'abld -k test build winscw timageviewer')])
sl@0
    79
sl@0
    80
# import2 is a list of three possible files - misc.mbc is actually curtailed. miscopt.mbc is just comment
sl@0
    81
import2 = [
sl@0
    82
r"""// Misc.mbc
sl@0
    83
//
sl@0
    84
// Copyright (c) Symbian Software Ltd 2004 - 2008.  All rights reserved.
sl@0
    85
//
sl@0
    86
// non-optional modules for misc components
sl@0
    87
sl@0
    88
SECTION_DIRS
sl@0
    89
sl@0
    90
..\..\ECam\framework\group
sl@0
    91
..\..\ECam\plugins\group
sl@0
    92
..\..\mmcommon\group
sl@0
    93
..\..\openmax\il\group""",
sl@0
    94
r"""// MiscOpt.mbc
sl@0
    95
//
sl@0
    96
// Copyright (c) Symbian Software Ltd 2004 - 2007.  All rights reserved.
sl@0
    97
//
sl@0
    98
// Optional misc components
sl@0
    99
sl@0
   100
SECTION_DIRS
sl@0
   101
sl@0
   102
//..\..\mm3plane\mm-tech\mmrc\mmrcfw\group""",
sl@0
   103
r"""// icl.mbc
sl@0
   104
//
sl@0
   105
// Copyright (c) Symbian Software Ltd 2004 - 2007.  All rights reserved.
sl@0
   106
//
sl@0
   107
// non-optional ICL modules
sl@0
   108
sl@0
   109
SECTION_DIRS
sl@0
   110
sl@0
   111
..\..\ICL\group
sl@0
   112
..\..\ICL\plugins\group
sl@0
   113
"""]
sl@0
   114
sl@0
   115
result2 = [
sl@0
   116
    (None, ['..\\..\\ECam\\framework\\group',
sl@0
   117
    '..\\..\\ECam\\plugins\\group',
sl@0
   118
    '..\\..\\mmcommon\\group',
sl@0
   119
    '..\\..\\openmax\\il\\group'], [], []),
sl@0
   120
    (None, [], [], []),
sl@0
   121
    (None, ['..\\..\\ICL\\group', '..\\..\\ICL\\plugins\\group'], [], [])]
sl@0
   122
sl@0
   123
badImport1 = r"""
sl@0
   124
sl@0
   125
SECTION_DIRS
sl@0
   126
this is a bad dir
sl@0
   127
"""
sl@0
   128
sl@0
   129
badImport2 = r"""
sl@0
   130
sl@0
   131
SECTION_COMMANDS
sl@0
   132
sl@0
   133
// oneoff - TImageViewer
sl@0
   134
oneoffbad ..\..\ICL\group abld -k test export
sl@0
   135
"""
sl@0
   136
sl@0
   137
# .mbc file used for intTest
sl@0
   138
intTestMbcFile = r"""
sl@0
   139
// intTestMbc
sl@0
   140
sl@0
   141
SECTION_DIRS
sl@0
   142
sl@0
   143
.\x
sl@0
   144
.\y
sl@0
   145
sl@0
   146
SECTION_OPTIONALDIRS
sl@0
   147
sl@0
   148
.\z
sl@0
   149
"""
sl@0
   150
sl@0
   151
testFolderList1 = [
sl@0
   152
    (False, None, "Hello there"),
sl@0
   153
    (True, None, "Something missing"),
sl@0
   154
    (True, "foo", "XX"),
sl@0
   155
    (True, "bar", "XX"),
sl@0
   156
    ]
sl@0
   157
sl@0
   158
testXmlFile1 = """<SystemDefinition name="BLAH" schema="2.0.0">
sl@0
   159
  <systemModel>
sl@0
   160
    <layer name="NEW_CUSTOM_LAYER">
sl@0
   161
      <collection name="Fake Collection">
sl@0
   162
        <component name="Fake Multimedia">
sl@0
   163
          <!-- Something missing -->
sl@0
   164
          <unit bldFile="foo" /><!-- XX -->
sl@0
   165
          <unit bldFile="bar" /><!-- XX -->
sl@0
   166
        </component>
sl@0
   167
      </collection>
sl@0
   168
    </layer>
sl@0
   169
  </systemModel>
sl@0
   170
</SystemDefinition>
sl@0
   171
"""