sl@0: sl@0: # Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: # All rights reserved. sl@0: # This component and the accompanying materials are made available sl@0: # under the terms of "Eclipse Public License v1.0" sl@0: # which accompanies this distribution, and is available sl@0: # at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: # sl@0: # Initial Contributors: sl@0: # Nokia Corporation - initial contribution. sl@0: # sl@0: # Contributors: sl@0: # sl@0: # Description: sl@0: # sl@0: """Data used by testMbcUtils - give as python strings etc. Separated out to make the test code easier to understand""" sl@0: sl@0: # the following is taken from misc.mbc. Contains all features we seem to use. Specific contents not really important sl@0: import1 = r""" sl@0: // Misc.mbc sl@0: // sl@0: // Copyright (c) Symbian Software Ltd 2004 - 2008. All rights reserved. sl@0: // sl@0: // non-optional modules for misc components sl@0: sl@0: SECTION_DIRS sl@0: sl@0: ..\..\ECam\framework\group sl@0: ..\..\ECam\plugins\group sl@0: ..\..\mmcommon\group sl@0: ..\..\openmax\il\group sl@0: ..\..\mdf\group sl@0: ..\..\mobiletv\hai\dvbh\group sl@0: ..\..\a3f\traces\group sl@0: ..\..\a3f\refmmrc\group sl@0: ..\..\a3f\a3fserverstart\group sl@0: ..\..\a3f\a3fdevsound\group sl@0: ..\..\a3f\acf\group sl@0: ..\..\a3f\acl\group sl@0: ..\..\a3f\refacladaptation\group sl@0: ..\..\a3f\devsoundadaptationinfo\group sl@0: ..\..\packetvideo\group sl@0: ..\..\3gplibrary\group sl@0: sl@0: SECTION_OPTIONALDIRS sl@0: sl@0: ..\..\xvidpu\group sl@0: sl@0: SECTION_COMMANDS sl@0: sl@0: // oneoff - TImageViewer sl@0: oneoff ..\..\ICL\group abld -k test export sl@0: oneoff ..\..\ICL\group abld -k test build arm4 timageviewer sl@0: oneoff ..\..\ICL\group abld -k test build winscw timageviewer sl@0: """ sl@0: sl@0: result1 = ( sl@0: None, # will be filled in runtime with the filename sl@0: ['..\\..\\ECam\\framework\\group', sl@0: '..\\..\\ECam\\plugins\\group', sl@0: '..\\..\\mmcommon\\group', sl@0: '..\\..\\openmax\\il\\group', sl@0: '..\\..\\mdf\\group', sl@0: '..\\..\\mobiletv\\hai\\dvbh\\group', sl@0: '..\\..\\a3f\\traces\\group', sl@0: '..\\..\\a3f\\refmmrc\\group', sl@0: '..\\..\\a3f\\a3fserverstart\\group', sl@0: '..\\..\\a3f\\a3fdevsound\\group', sl@0: '..\\..\\a3f\\acf\\group', sl@0: '..\\..\\a3f\\acl\\group', sl@0: '..\\..\\a3f\\refacladaptation\\group', sl@0: '..\\..\\a3f\\devsoundadaptationinfo\\group', sl@0: '..\\..\\packetvideo\\group', sl@0: '..\\..\\3gplibrary\\group'], sl@0: ['..\\..\\xvidpu\\group'], sl@0: [('..\\..\\ICL\\group', 'abld -k test export'), sl@0: ('..\\..\\ICL\\group', 'abld -k test build arm4 timageviewer'), sl@0: ('..\\..\\ICL\\group', 'abld -k test build winscw timageviewer')]) sl@0: sl@0: # import2 is a list of three possible files - misc.mbc is actually curtailed. miscopt.mbc is just comment sl@0: import2 = [ sl@0: r"""// Misc.mbc sl@0: // sl@0: // Copyright (c) Symbian Software Ltd 2004 - 2008. All rights reserved. sl@0: // sl@0: // non-optional modules for misc components sl@0: sl@0: SECTION_DIRS sl@0: sl@0: ..\..\ECam\framework\group sl@0: ..\..\ECam\plugins\group sl@0: ..\..\mmcommon\group sl@0: ..\..\openmax\il\group""", sl@0: r"""// MiscOpt.mbc sl@0: // sl@0: // Copyright (c) Symbian Software Ltd 2004 - 2007. All rights reserved. sl@0: // sl@0: // Optional misc components sl@0: sl@0: SECTION_DIRS sl@0: sl@0: //..\..\mm3plane\mm-tech\mmrc\mmrcfw\group""", sl@0: r"""// icl.mbc sl@0: // sl@0: // Copyright (c) Symbian Software Ltd 2004 - 2007. All rights reserved. sl@0: // sl@0: // non-optional ICL modules sl@0: sl@0: SECTION_DIRS sl@0: sl@0: ..\..\ICL\group sl@0: ..\..\ICL\plugins\group sl@0: """] sl@0: sl@0: result2 = [ sl@0: (None, ['..\\..\\ECam\\framework\\group', sl@0: '..\\..\\ECam\\plugins\\group', sl@0: '..\\..\\mmcommon\\group', sl@0: '..\\..\\openmax\\il\\group'], [], []), sl@0: (None, [], [], []), sl@0: (None, ['..\\..\\ICL\\group', '..\\..\\ICL\\plugins\\group'], [], [])] sl@0: sl@0: badImport1 = r""" sl@0: sl@0: SECTION_DIRS sl@0: this is a bad dir sl@0: """ sl@0: sl@0: badImport2 = r""" sl@0: sl@0: SECTION_COMMANDS sl@0: sl@0: // oneoff - TImageViewer sl@0: oneoffbad ..\..\ICL\group abld -k test export sl@0: """ sl@0: sl@0: # .mbc file used for intTest sl@0: intTestMbcFile = r""" sl@0: // intTestMbc sl@0: sl@0: SECTION_DIRS sl@0: sl@0: .\x sl@0: .\y sl@0: sl@0: SECTION_OPTIONALDIRS sl@0: sl@0: .\z sl@0: """ sl@0: sl@0: testFolderList1 = [ sl@0: (False, None, "Hello there"), sl@0: (True, None, "Something missing"), sl@0: (True, "foo", "XX"), sl@0: (True, "bar", "XX"), sl@0: ] sl@0: sl@0: testXmlFile1 = """ sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: """