sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32test.h>
|
sl@0
|
17 |
#include <e32panic.h>
|
sl@0
|
18 |
#include <f32file.h>
|
sl@0
|
19 |
#include <bautils.h>
|
sl@0
|
20 |
#include <babackup.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <ecom/ecom.h>
|
sl@0
|
23 |
#include "EComUidCodes.h"
|
sl@0
|
24 |
#include "Interface.h" // interface to Plugins
|
sl@0
|
25 |
//Test utils for copying the resolver to C
|
sl@0
|
26 |
#include "../EcomTestUtils/EcomTestUtils.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
REComSession EComSess;
|
sl@0
|
29 |
|
sl@0
|
30 |
LOCAL_D RTest TEST(_L("ECom BUR Test"));
|
sl@0
|
31 |
|
sl@0
|
32 |
_LIT(KEComExDllOnZ, "Z:\\ramonly\\EComSwiExample.dll");
|
sl@0
|
33 |
_LIT(KEComExDllOnC, "C:\\sys\\bin\\EComSwiExample.dll");
|
sl@0
|
34 |
_LIT(KEComRscFileOnC, "C:\\resource\\plugins\\EComSwiExample.rsc");
|
sl@0
|
35 |
_LIT(KEComRscFileOnZ, "Z:\\ramonly\\EComSwiExample.rsc");
|
sl@0
|
36 |
|
sl@0
|
37 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
38 |
inline LOCAL_C TInt DeleteTestPlugin()
|
sl@0
|
39 |
{
|
sl@0
|
40 |
TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
|
sl@0
|
41 |
if((err == KErrNone)||(err == KErrNotFound))
|
sl@0
|
42 |
{
|
sl@0
|
43 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
|
sl@0
|
44 |
}
|
sl@0
|
45 |
if(err == KErrNotFound)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
err = KErrNone;
|
sl@0
|
48 |
}
|
sl@0
|
49 |
return err;
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
Copies the Resolver Plugins to C:\ drive
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
LOCAL_C TInt CopyPluginsL()
|
sl@0
|
56 |
{
|
sl@0
|
57 |
// Copy the dlls and .rsc files on to RAM
|
sl@0
|
58 |
TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
|
sl@0
|
59 |
TEST(err==KErrNone, __LINE__);
|
sl@0
|
60 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
|
sl@0
|
61 |
TEST(err==KErrNone, __LINE__);
|
sl@0
|
62 |
User::After(1000000);
|
sl@0
|
63 |
return err;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
LOCAL_C void FindImplementationsL(TInt aExpected)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
REComSession& ecomSession = REComSession::OpenL();
|
sl@0
|
70 |
CleanupClosePushL(ecomSession);
|
sl@0
|
71 |
|
sl@0
|
72 |
//Get a list of available implementations
|
sl@0
|
73 |
TUid interfaceUid={0x10009DD9};
|
sl@0
|
74 |
RImplInfoPtrArray ifArray;
|
sl@0
|
75 |
|
sl@0
|
76 |
ecomSession.ListImplementationsL(interfaceUid,ifArray);
|
sl@0
|
77 |
|
sl@0
|
78 |
//Verify that the expected number of implementations were found
|
sl@0
|
79 |
TInt count = ifArray.Count();
|
sl@0
|
80 |
TEST(count == aExpected);
|
sl@0
|
81 |
|
sl@0
|
82 |
TEST.Printf(_L("%d Implementations found...\n"),count);
|
sl@0
|
83 |
|
sl@0
|
84 |
//cleanup
|
sl@0
|
85 |
ifArray.ResetAndDestroy();
|
sl@0
|
86 |
ecomSession.Close();
|
sl@0
|
87 |
CleanupStack::PopAndDestroy();
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
LOCAL_C TInt SetupTest()
|
sl@0
|
91 |
{
|
sl@0
|
92 |
//Ensure plugin files are not on C:
|
sl@0
|
93 |
TInt res = DeleteTestPlugin();
|
sl@0
|
94 |
TEST.Printf(_L("Deleting test plugin...\n"));
|
sl@0
|
95 |
|
sl@0
|
96 |
//Wait to ensure files are deleted
|
sl@0
|
97 |
User::After(2000000);
|
sl@0
|
98 |
|
sl@0
|
99 |
//Create an ECom session to ensure ECom is up and running
|
sl@0
|
100 |
EComSess = REComSession::OpenL();
|
sl@0
|
101 |
|
sl@0
|
102 |
//Wait to ensure ECom startup has occurred
|
sl@0
|
103 |
//Wait here for 20s as it takes 15s for the server to register its backup notification
|
sl@0
|
104 |
User::After(20000000);
|
sl@0
|
105 |
|
sl@0
|
106 |
return res;
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
/**
|
sl@0
|
110 |
@SYMTestCaseID SYSLIB-ECOM-CT-4003
|
sl@0
|
111 |
@SYMTestCaseDesc Tests that notifications will not be ignored during a backup/restore.
|
sl@0
|
112 |
@SYMTestActions Uses P&S variables to simulate backup/restore
|
sl@0
|
113 |
Simulates a backup operation, which should suspend the scanning timer
|
sl@0
|
114 |
Copy plugin to the relevant directory and check to see that this is discovered
|
sl@0
|
115 |
after the scanning timer is resumed (after backup is complete)
|
sl@0
|
116 |
@SYMTestExpectedResults Notification of a directory change should occur during backup/restore, but not processed until afterwards
|
sl@0
|
117 |
@SYMDEF DEF103909
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
LOCAL_C void RunTestL()
|
sl@0
|
120 |
{
|
sl@0
|
121 |
__UHEAP_MARK;
|
sl@0
|
122 |
|
sl@0
|
123 |
//ensure that ecom server is already running
|
sl@0
|
124 |
TInt res = SetupTest();
|
sl@0
|
125 |
TEST(res == KErrNone);
|
sl@0
|
126 |
|
sl@0
|
127 |
//use the backup client to initiate a backup
|
sl@0
|
128 |
CBaBackupSessionWrapper* backupClient= CBaBackupSessionWrapper::NewL();
|
sl@0
|
129 |
|
sl@0
|
130 |
//emulate start of backup/restore
|
sl@0
|
131 |
TBackupOperationAttributes attribs;
|
sl@0
|
132 |
attribs.iFileFlag=MBackupObserver::EReleaseLockReadOnly;
|
sl@0
|
133 |
attribs.iOperation=MBackupOperationObserver::EStart;
|
sl@0
|
134 |
backupClient->NotifyBackupOperationL(attribs);
|
sl@0
|
135 |
|
sl@0
|
136 |
TEST(backupClient->IsBackupOperationRunning());
|
sl@0
|
137 |
|
sl@0
|
138 |
User::After(2000000);
|
sl@0
|
139 |
|
sl@0
|
140 |
//now do copying of some plugin files
|
sl@0
|
141 |
CopyPluginsL();
|
sl@0
|
142 |
|
sl@0
|
143 |
User::After(2000000);
|
sl@0
|
144 |
|
sl@0
|
145 |
// check ecom has not discovered the plugins as idle scanning timer is disabled
|
sl@0
|
146 |
FindImplementationsL(0);
|
sl@0
|
147 |
|
sl@0
|
148 |
//emulate end of backup/restore
|
sl@0
|
149 |
attribs.iFileFlag=MBackupObserver::EReleaseLockReadOnly;
|
sl@0
|
150 |
attribs.iOperation=MBackupOperationObserver::EEnd;
|
sl@0
|
151 |
backupClient->NotifyBackupOperationL(attribs);
|
sl@0
|
152 |
|
sl@0
|
153 |
User::After(2000000);
|
sl@0
|
154 |
|
sl@0
|
155 |
//now check whether our plugins that is installed during the backup is registered
|
sl@0
|
156 |
FindImplementationsL(1);
|
sl@0
|
157 |
|
sl@0
|
158 |
//Cleanup
|
sl@0
|
159 |
EComSess.Close();
|
sl@0
|
160 |
REComSession::FinalClose();
|
sl@0
|
161 |
|
sl@0
|
162 |
//Ensure plugin files are not on C:
|
sl@0
|
163 |
res = DeleteTestPlugin();
|
sl@0
|
164 |
TEST(res == KErrNone);
|
sl@0
|
165 |
|
sl@0
|
166 |
delete backupClient;
|
sl@0
|
167 |
|
sl@0
|
168 |
__UHEAP_MARKEND;
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
GLDEF_C TInt E32Main()
|
sl@0
|
172 |
{
|
sl@0
|
173 |
__UHEAP_MARK;
|
sl@0
|
174 |
|
sl@0
|
175 |
TEST.Title();
|
sl@0
|
176 |
TEST.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-4003 ECom BUR tests. "));
|
sl@0
|
177 |
|
sl@0
|
178 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
179 |
CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
180 |
CActiveScheduler::Install(scheduler);
|
sl@0
|
181 |
|
sl@0
|
182 |
TRAPD(err,RunTestL());
|
sl@0
|
183 |
TEST(err==KErrNone, __LINE__);
|
sl@0
|
184 |
|
sl@0
|
185 |
delete scheduler;
|
sl@0
|
186 |
delete cleanup;
|
sl@0
|
187 |
|
sl@0
|
188 |
TEST.End();
|
sl@0
|
189 |
TEST.Close();
|
sl@0
|
190 |
|
sl@0
|
191 |
__UHEAP_MARKEND;
|
sl@0
|
192 |
return(0);
|
sl@0
|
193 |
}
|