sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1998-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 the License "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 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "tHardcodedTests.h"
|
sl@0
|
20 |
#include "Thardcodedsetup.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "t_input.h"
|
sl@0
|
23 |
#include "t_certstoreactionmemfail.h"
|
sl@0
|
24 |
#include "tcancel.h"
|
sl@0
|
25 |
#include "t_message.h"
|
sl@0
|
26 |
#include "t_output.h"
|
sl@0
|
27 |
#include "tTestSpec.h"
|
sl@0
|
28 |
#include "t_testactionspec.h"
|
sl@0
|
29 |
#include "t_logger.h"
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
EXPORT_C CHardcodedSetup* CHardcodedSetup::NewLC(void)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
CHardcodedSetup* self = new(ELeave) CHardcodedSetup();
|
sl@0
|
35 |
CleanupStack::PushL(self);
|
sl@0
|
36 |
self->ConstructL();
|
sl@0
|
37 |
return self;
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
EXPORT_C void CHardcodedSetup::SetupTestsL(RFs& aFs,
|
sl@0
|
41 |
CTestSpec& aTestSpec,
|
sl@0
|
42 |
THardcodedTests theHardcodedTests[],
|
sl@0
|
43 |
const CTestHandlerSettings& aCommandLineSettings)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
TInt err = KErrNone;
|
sl@0
|
46 |
for (TInt i = 0; theHardcodedTests[i].action!=NULL; i++)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
|
sl@0
|
49 |
TInt groupings= theHardcodedTests[i].groupings;
|
sl@0
|
50 |
TTestActionSpec actionSpec;
|
sl@0
|
51 |
actionSpec.HardcodedInit(theHardcodedTests[i].name);
|
sl@0
|
52 |
//Start off checking Exhaustive and Smoke flags, then calls groupings
|
sl@0
|
53 |
if (!CheckAllFlags(aCommandLineSettings, groupings))
|
sl@0
|
54 |
//The current test should not be run
|
sl@0
|
55 |
continue;
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
CTestAction* newAction = 0;
|
sl@0
|
59 |
TRAP(err,
|
sl@0
|
60 |
newAction = theHardcodedTests[i].action(aFs, *iConsole, *iLogFile, actionSpec));
|
sl@0
|
61 |
|
sl@0
|
62 |
if (err != KErrNone)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
// We warn the user that an error occured
|
sl@0
|
65 |
// IMPROVEMENT : we should give more details because this won't be enough
|
sl@0
|
66 |
PRINTANDLOG(_L("void CHardcoded::SetupTestsL(RPointerArray<CTestAction>& aTestActions)\n"));
|
sl@0
|
67 |
PRINTANDLOG1(_L("An error occurred while creating action %D\n"), i);
|
sl@0
|
68 |
User::Leave(err);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
CleanupStack::PushL(newAction);
|
sl@0
|
71 |
User::LeaveIfError(aTestSpec.AddNextTest(newAction));
|
sl@0
|
72 |
CleanupStack::Pop(newAction);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
|
sl@0
|
77 |
CHardcodedSetup::~CHardcodedSetup()
|
sl@0
|
78 |
{
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
CHardcodedSetup::CHardcodedSetup(void)
|
sl@0
|
82 |
: CTestSetup(NULL)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
EXPORT_C TBool CHardcodedSetup::InitialiseL(RFs &aFs, const TDesC& aDefaultLog)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
TRAPD(err, OpenLogFileL(aFs, 0, aDefaultLog));
|
sl@0
|
89 |
|
sl@0
|
90 |
if (err != KErrNone)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
// We warn the user that an error occured
|
sl@0
|
93 |
// IMPROVEMENT : we should give more details because this won't be enough
|
sl@0
|
94 |
PRINTANDLOG1(_L("void CHardcodedSetup::InitialiseL: Failed to open log file: %D\n"), err);
|
sl@0
|
95 |
User::Leave(err);
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
return(ETrue);
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
|
sl@0
|
102 |
|