os/ossrv/lowlevellibsandfws/apputils/bsul/test/t_cacheddriveinfo/t_cacheddriveinfo.cpp
Update contrib.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include <bsul/bsul.h>
20 LOCAL_D RTest theTest(_L("t_cacheddriveinfo"));
22 // Valid Paths / Folder Name
23 const TPtrC KValidPathNameCSystem1Data1=_L("C:\\System1\\Data1\\");
24 const TPtrC KValidDriveZ=_L("Z:\\");
25 const TPtrC KValidDriveC=_L("C:\\");
26 const TPtrC KValidDriveT=_L("T:\\");
27 const TPtrC KValidDriveE=_L("E:\\");
29 // InValid Paths / Folder Names
30 const TPtrC KNoParameters=_L("");
31 const TPtrC KInValidParameters=_L("3: \\52324424");
32 const TPtrC KInValidDriveP=_L("P:\\");
35 //Test macroses and functions
36 LOCAL_C void Check(TInt aValue, TInt aLine)
40 theTest(EFalse, aLine);
43 #define TEST(arg) ::Check((arg), __LINE__)
46 @SYMTestCaseID SYSLIB-BAFL-CT-1393
47 @SYMTestCaseDesc Tests BSUL::CCachedDriveInfo
48 @SYMTestPriority Medium
49 @SYMTestActions Pass in various drives and parameters and checks 'Read Only Internal' status.
50 The same parameters are checked as in the tests for BaflUtils::DriveIsReadOnlyInternal
51 @SYMTestExpectedResults The test must not fail.
53 void TestCachedDriveInfoL(RFs& aFs)
55 theTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1393 "));
56 BSUL::CCachedDriveInfo *cachedDriveInfo = BSUL::CCachedDriveInfo::NewLC(aFs);
58 // the C drive should not be read-only internal
59 TEST(!cachedDriveInfo->IsReadOnlyInternalL(KValidPathNameCSystem1Data1));
60 // the Z drive should be read-only internal
61 TEST(cachedDriveInfo->IsReadOnlyInternalL(KValidDriveZ));
62 // a non-mounted drive should not be read-only internal
63 TEST(!cachedDriveInfo->IsReadOnlyInternalL(KInValidDriveP));
64 // an invalide path should leave with an error
65 TRAPD(err, cachedDriveInfo->IsReadOnlyInternalL(KNoParameters));
66 TEST(err != KErrNone);
67 // an invalide path should leave with an error
68 TRAP(err, cachedDriveInfo->IsReadOnlyInternalL(KInValidParameters));
69 TEST(err != KErrNone);
71 CleanupStack::PopAndDestroy(cachedDriveInfo);
75 @SYMTestCaseID SYSLIB-BAFL-CT-1680
76 @SYMTestCaseDesc Tests BSUL::CCachedDriveInfo
77 @SYMTestPriority Medium
78 @SYMTestActions Pass in various drives and parameters and checks all kinds attributes:
79 KDriveAttSubsted,KDriveAttRemote, KDriveAttLocal, KDriveAttInternal, KDriveAttRemovable
80 KDriveAttRedirected,KDriveAttRom.
81 @SYMTestExpectedResults The test must not fail.
83 void TestCachedDriveInfoFlagSetL(RFs& aFs)
86 theTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1680 "));
89 if(!BaflUtils::PathExists(aFs, _L("C:\\Logs\\")))
91 err = aFs.MkDir(_L("C:\\Logs\\"));
94 err=aFs.SetSubst(_L("C:\\Logs\\"),EDriveO);
96 err=aFs.Subst(fileName,EDriveO);
98 TEST(fileName==_L("C:\\Logs\\"));
100 BSUL::CCachedDriveInfo *cachedDriveInfo = BSUL::CCachedDriveInfo::NewLC(aFs);
102 // The O drive should be subst drive
103 TEST(cachedDriveInfo->IsFlagSetOnDriveL(EDriveO, KDriveAttSubsted));
105 // The O drive should not be local drive
106 TEST(!cachedDriveInfo->IsFlagSetOnDriveL(EDriveO, KDriveAttLocal));
108 // The O drive should not be remote drive
109 TEST(!cachedDriveInfo->IsFlagSetOnDriveL(EDriveO, KDriveAttRemote));
111 // The C drive should be local drive
112 TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttLocal));
114 // The C drive should be internal drive
115 TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttInternal));
117 // The C drive should not be remote drive
118 TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttRemote));
120 // The C drive should not be removable drive
121 TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttRemovable));
123 // The C drive should be local and internal drive
124 TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttInternal|KDriveAttInternal));
126 // The C drive should be local and internal drive, but not remote
127 TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttInternal|KDriveAttInternal|KDriveAttRemote));
129 // The Z drive should rom drive.
130 TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveZ, KDriveAttRom));
132 //The Z drive should rom, and internal drive.
133 TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveZ, KDriveAttRom|KDriveAttInternal));
135 //The Z drive should rom and internal drive, but not removable
136 TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveZ, KDriveAttRom|KDriveAttInternal|KDriveAttRemovable));
138 // The Z drive should not be Redirected drive
139 TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveZ, KDriveAttRedirected));
141 // The Z drive should rom drive, but not Redirected
142 TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveZ, KDriveAttRom|KDriveAttRedirected));
144 // The T drive should be a removable, local drive on winscw, E drive on hardware
145 #if defined __WINSCW__
146 TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveT, KDriveAttRemovable|KDriveAttLocal));
147 #elif defined __X86GCC__
148 // No removable drives on X86 platform
150 TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveE, KDriveAttRemovable|KDriveAttLocal));
153 //clean up subst drive
154 err=aFs.SetSubst(_L(""),EDriveO);
156 CleanupStack::PopAndDestroy(cachedDriveInfo);
160 @SYMTestCaseID SYSLIB-BAFL-CT-4014
161 @SYMTestCaseDesc Tests BSUL::CCachedDriveInfo
162 @SYMTestPriority Medium
163 @SYMTestActions Pass in various drives and media types to verify media type of drives.
164 @SYMTestExpectedResults The media type must be as expected for each drive.
167 void TestCachedDriveMediaTypeL(RFs& aFs)
169 theTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-4014 "));
170 BSUL::CCachedDriveInfo *cachedDriveInfo = BSUL::CCachedDriveInfo::NewLC(aFs);
172 // the T drive should be a hard disk media type on WINSCW, E drive on hardware
174 TEST(cachedDriveInfo->MediaTypeL(KValidDriveT,EMediaHardDisk));
175 #elif defined __X86GCC__
176 // No removeable drive in X86 platform
178 TEST(cachedDriveInfo->MediaTypeL(KValidDriveE,EMediaHardDisk));
181 // the Z drive should be a Rom drive
182 TEST(cachedDriveInfo->MediaTypeL(KValidDriveZ,EMediaRom));
185 // the C drive should report as EMediaHardDisk for the PC Drive
186 TEST(cachedDriveInfo->MediaTypeL(KValidDriveC,EMediaHardDisk));
187 #elif defined __EPOC32__
188 // the C drive could be a RAM or NAND flash drive depending on how the ROM is built.
189 // the C drive should report as EMediaHardDisk for WDP enabled configuraion
190 TEST(cachedDriveInfo->MediaTypeL(KValidDriveC,EMediaRam) || cachedDriveInfo->MediaTypeL(KValidDriveC,EMediaNANDFlash) || cachedDriveInfo->MediaTypeL(KValidDriveC,EMediaHardDisk));
193 // a non-mounted drive should not be EMediaHardDisk
195 TEST(!cachedDriveInfo->MediaTypeL(KInValidDriveP,EMediaHardDisk,&actual));
196 TEST(actual == EMediaNotPresent);
198 CleanupStack::PopAndDestroy(cachedDriveInfo);
202 @SYMTestCaseID SYSLIB-BAFL-CT-4015
203 @SYMTestCaseDesc Tests BSUL::CCachedDriveInfo
204 @SYMTestPriority Medium
205 @SYMTestActions Call the GetDefaultRemovableMemoryCardDriveL API on WINSCW and hardware.
206 @SYMTestExpectedResults The MMC drive must be found.
209 void TestCachedDriveRemovableMemoryCardDriveL(RFs& aFs)
211 theTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-4015 "));
212 BSUL::CCachedDriveInfo *cachedDriveInfo = BSUL::CCachedDriveInfo::NewLC(aFs);
214 // the T drive should be a hard disk media type on WINSCW, E drive on hardware
216 TEST(cachedDriveInfo->GetDefaultRemovableMemoryCardDriveL() == TDriveUnit(KValidDriveT));
217 #elif defined __X86GCC__
218 // No removable drives in X86 platform
219 TRAPD(err,cachedDriveInfo->GetDefaultRemovableMemoryCardDriveL());
220 TEST(err == KErrNotFound);
222 TEST(cachedDriveInfo->GetDefaultRemovableMemoryCardDriveL() == TDriveUnit(KValidDriveE));
225 CleanupStack::PopAndDestroy(cachedDriveInfo);
229 @SYMTestCaseID SYSLIB-BAFL-CT-1394
230 @SYMTestCaseDesc Tests BSUL::CCachedDriveInfo
231 @SYMTestPriority Medium
232 @SYMTestActions Executes tests for BSUL::CCachedDriveInfo.
233 @SYMTestExpectedResults The test must not fail.
237 theTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1394 "));
240 CleanupClosePushL(fs);
242 TestCachedDriveInfoL(fs);
243 TestCachedDriveInfoFlagSetL(fs);
244 TestCachedDriveMediaTypeL(fs);
245 TestCachedDriveRemovableMemoryCardDriveL(fs);
247 CleanupStack::PopAndDestroy(&fs);
250 GLDEF_C TInt E32Main()
253 CTrapCleanup *cleanup=CTrapCleanup::New();
255 theTest.Start(_L("Testing t_cacheddriveinfo"));
256 TRAPD(err,DoTests());