os/ossrv/lowlevellibsandfws/apputils/bsul/test/t_cacheddriveinfo/t_cacheddriveinfo.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-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 <bsul/bsul.h>
sl@0
    17
#include <e32test.h>
sl@0
    18
#include <bautils.h>
sl@0
    19
sl@0
    20
LOCAL_D RTest theTest(_L("t_cacheddriveinfo"));
sl@0
    21
sl@0
    22
// Valid Paths / Folder Name
sl@0
    23
const TPtrC KValidPathNameCSystem1Data1=_L("C:\\System1\\Data1\\");
sl@0
    24
const TPtrC KValidDriveZ=_L("Z:\\");
sl@0
    25
const TPtrC KValidDriveC=_L("C:\\");
sl@0
    26
const TPtrC KValidDriveT=_L("T:\\");
sl@0
    27
const TPtrC KValidDriveE=_L("E:\\");
sl@0
    28
sl@0
    29
// InValid Paths / Folder Names
sl@0
    30
const TPtrC KNoParameters=_L("");
sl@0
    31
const TPtrC KInValidParameters=_L("3: \\52324424");
sl@0
    32
const TPtrC KInValidDriveP=_L("P:\\");
sl@0
    33
sl@0
    34
//
sl@0
    35
//Test macroses and functions
sl@0
    36
LOCAL_C void Check(TInt aValue, TInt aLine)
sl@0
    37
	{
sl@0
    38
	if(!aValue)
sl@0
    39
		{
sl@0
    40
		theTest(EFalse, aLine);
sl@0
    41
		}
sl@0
    42
	}
sl@0
    43
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
    44
sl@0
    45
/**
sl@0
    46
@SYMTestCaseID SYSLIB-BAFL-CT-1393
sl@0
    47
@SYMTestCaseDesc Tests BSUL::CCachedDriveInfo
sl@0
    48
@SYMTestPriority Medium
sl@0
    49
@SYMTestActions Pass in various drives and parameters and checks 'Read Only Internal' status.
sl@0
    50
				The same parameters are checked as in the tests for BaflUtils::DriveIsReadOnlyInternal
sl@0
    51
@SYMTestExpectedResults The test must not fail.
sl@0
    52
*/
sl@0
    53
void TestCachedDriveInfoL(RFs& aFs)
sl@0
    54
	{
sl@0
    55
	theTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1393 "));
sl@0
    56
	BSUL::CCachedDriveInfo *cachedDriveInfo = BSUL::CCachedDriveInfo::NewLC(aFs);
sl@0
    57
sl@0
    58
	// the C drive should not be read-only internal
sl@0
    59
	TEST(!cachedDriveInfo->IsReadOnlyInternalL(KValidPathNameCSystem1Data1));
sl@0
    60
	// the Z drive should be read-only internal
sl@0
    61
	TEST(cachedDriveInfo->IsReadOnlyInternalL(KValidDriveZ));
sl@0
    62
	// a non-mounted drive should not be read-only internal
sl@0
    63
	TEST(!cachedDriveInfo->IsReadOnlyInternalL(KInValidDriveP));
sl@0
    64
	// an invalide path should leave with an error
sl@0
    65
	TRAPD(err, cachedDriveInfo->IsReadOnlyInternalL(KNoParameters));
sl@0
    66
	TEST(err != KErrNone);
sl@0
    67
	// an invalide path should leave with an error
sl@0
    68
	TRAP(err, cachedDriveInfo->IsReadOnlyInternalL(KInValidParameters));
sl@0
    69
	TEST(err != KErrNone);
sl@0
    70
sl@0
    71
	CleanupStack::PopAndDestroy(cachedDriveInfo);
sl@0
    72
	}
sl@0
    73
sl@0
    74
/**
sl@0
    75
@SYMTestCaseID SYSLIB-BAFL-CT-1680
sl@0
    76
@SYMTestCaseDesc Tests BSUL::CCachedDriveInfo
sl@0
    77
@SYMTestPriority Medium
sl@0
    78
@SYMTestActions Pass in various drives and parameters and checks all kinds attributes:
sl@0
    79
				KDriveAttSubsted,KDriveAttRemote, KDriveAttLocal, KDriveAttInternal, KDriveAttRemovable
sl@0
    80
				KDriveAttRedirected,KDriveAttRom.
sl@0
    81
@SYMTestExpectedResults The test must not fail.
sl@0
    82
*/
sl@0
    83
void TestCachedDriveInfoFlagSetL(RFs& aFs)
sl@0
    84
	{
sl@0
    85
sl@0
    86
	theTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1680 "));
sl@0
    87
	TFileName fileName;
sl@0
    88
	TInt err;
sl@0
    89
	if(!BaflUtils::PathExists(aFs, _L("C:\\Logs\\")))
sl@0
    90
		{
sl@0
    91
		err = aFs.MkDir(_L("C:\\Logs\\"));
sl@0
    92
		}
sl@0
    93
sl@0
    94
	err=aFs.SetSubst(_L("C:\\Logs\\"),EDriveO);
sl@0
    95
    TEST(err==KErrNone);
sl@0
    96
    err=aFs.Subst(fileName,EDriveO);
sl@0
    97
	TEST(err==KErrNone);
sl@0
    98
    TEST(fileName==_L("C:\\Logs\\"));
sl@0
    99
sl@0
   100
	BSUL::CCachedDriveInfo *cachedDriveInfo = BSUL::CCachedDriveInfo::NewLC(aFs);
sl@0
   101
sl@0
   102
	// The O drive should be subst drive
sl@0
   103
	TEST(cachedDriveInfo->IsFlagSetOnDriveL(EDriveO, KDriveAttSubsted));
sl@0
   104
sl@0
   105
	// The O drive should not be local drive
sl@0
   106
	TEST(!cachedDriveInfo->IsFlagSetOnDriveL(EDriveO, KDriveAttLocal));
sl@0
   107
sl@0
   108
	// The O drive should not be remote drive
sl@0
   109
	TEST(!cachedDriveInfo->IsFlagSetOnDriveL(EDriveO, KDriveAttRemote));
sl@0
   110
sl@0
   111
	// The C drive should be local drive
sl@0
   112
	TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttLocal));
sl@0
   113
sl@0
   114
	// The C drive should be internal drive
sl@0
   115
	TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttInternal));
sl@0
   116
sl@0
   117
	// The C drive should not be remote drive
sl@0
   118
	TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttRemote));
sl@0
   119
sl@0
   120
	// The C drive should not be removable drive
sl@0
   121
	TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttRemovable));
sl@0
   122
sl@0
   123
	// The C drive should be local and internal drive
sl@0
   124
	TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttInternal|KDriveAttInternal));
sl@0
   125
sl@0
   126
	// The C drive should be local and internal drive, but not remote
sl@0
   127
	TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveC, KDriveAttInternal|KDriveAttInternal|KDriveAttRemote));
sl@0
   128
sl@0
   129
	// The Z drive should  rom drive.
sl@0
   130
	TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveZ, KDriveAttRom));
sl@0
   131
sl@0
   132
	//The Z drive should  rom, and internal drive.
sl@0
   133
	TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveZ, KDriveAttRom|KDriveAttInternal));
sl@0
   134
sl@0
   135
	//The Z drive should  rom and internal drive, but not removable
sl@0
   136
	TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveZ, KDriveAttRom|KDriveAttInternal|KDriveAttRemovable));
sl@0
   137
sl@0
   138
	// The Z drive should not be Redirected drive
sl@0
   139
	TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveZ, KDriveAttRedirected));
sl@0
   140
sl@0
   141
	// The Z drive should  rom drive, but not Redirected
sl@0
   142
	TEST(!cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveZ, KDriveAttRom|KDriveAttRedirected));
sl@0
   143
sl@0
   144
	// The T drive should  be a removable, local drive on winscw, E drive on hardware
sl@0
   145
#if defined __WINSCW__	
sl@0
   146
	TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveT, KDriveAttRemovable|KDriveAttLocal));
sl@0
   147
#elif defined __X86GCC__
sl@0
   148
	// No removable drives on X86 platform
sl@0
   149
#else
sl@0
   150
	TEST(cachedDriveInfo->IsFlagSetOnDriveL(KValidDriveE, KDriveAttRemovable|KDriveAttLocal));
sl@0
   151
#endif
sl@0
   152
sl@0
   153
	//clean up subst drive
sl@0
   154
	err=aFs.SetSubst(_L(""),EDriveO);
sl@0
   155
	TEST(err==KErrNone);
sl@0
   156
	CleanupStack::PopAndDestroy(cachedDriveInfo);
sl@0
   157
	}
sl@0
   158
sl@0
   159
/**
sl@0
   160
@SYMTestCaseID SYSLIB-BAFL-CT-4014
sl@0
   161
@SYMTestCaseDesc Tests BSUL::CCachedDriveInfo
sl@0
   162
@SYMTestPriority Medium
sl@0
   163
@SYMTestActions Pass in various drives and media types to verify media type of drives.
sl@0
   164
@SYMTestExpectedResults The media type must be as expected for each drive.
sl@0
   165
@SYMDEF DEF109839
sl@0
   166
*/
sl@0
   167
void TestCachedDriveMediaTypeL(RFs& aFs)
sl@0
   168
	{
sl@0
   169
	theTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-4014 "));
sl@0
   170
	BSUL::CCachedDriveInfo *cachedDriveInfo = BSUL::CCachedDriveInfo::NewLC(aFs);
sl@0
   171
sl@0
   172
	// the T drive should be a hard disk media type on WINSCW, E drive on hardware
sl@0
   173
#ifdef __WINSCW__
sl@0
   174
	TEST(cachedDriveInfo->MediaTypeL(KValidDriveT,EMediaHardDisk));
sl@0
   175
#elif defined __X86GCC__
sl@0
   176
	// No removeable drive in X86 platform
sl@0
   177
#else
sl@0
   178
	TEST(cachedDriveInfo->MediaTypeL(KValidDriveE,EMediaHardDisk));
sl@0
   179
#endif
sl@0
   180
sl@0
   181
	// the Z drive should be a Rom drive
sl@0
   182
	TEST(cachedDriveInfo->MediaTypeL(KValidDriveZ,EMediaRom));
sl@0
   183
sl@0
   184
#ifdef __WINSCW__
sl@0
   185
	// the C drive should report as EMediaHardDisk for the PC Drive
sl@0
   186
	TEST(cachedDriveInfo->MediaTypeL(KValidDriveC,EMediaHardDisk));
sl@0
   187
#elif defined __EPOC32__
sl@0
   188
	// the C drive could be a RAM or NAND flash drive depending on how the ROM is built.
sl@0
   189
	// the C drive should report as EMediaHardDisk for WDP enabled configuraion
sl@0
   190
	TEST(cachedDriveInfo->MediaTypeL(KValidDriveC,EMediaRam) || cachedDriveInfo->MediaTypeL(KValidDriveC,EMediaNANDFlash) || cachedDriveInfo->MediaTypeL(KValidDriveC,EMediaHardDisk));
sl@0
   191
#endif
sl@0
   192
sl@0
   193
	// a non-mounted drive should not be EMediaHardDisk
sl@0
   194
	TMediaType actual;
sl@0
   195
	TEST(!cachedDriveInfo->MediaTypeL(KInValidDriveP,EMediaHardDisk,&actual));
sl@0
   196
	TEST(actual == EMediaNotPresent);
sl@0
   197
sl@0
   198
	CleanupStack::PopAndDestroy(cachedDriveInfo);
sl@0
   199
	}
sl@0
   200
sl@0
   201
/**
sl@0
   202
@SYMTestCaseID SYSLIB-BAFL-CT-4015
sl@0
   203
@SYMTestCaseDesc Tests BSUL::CCachedDriveInfo
sl@0
   204
@SYMTestPriority Medium
sl@0
   205
@SYMTestActions Call the GetDefaultRemovableMemoryCardDriveL API on WINSCW and hardware.
sl@0
   206
@SYMTestExpectedResults The MMC drive must be found.
sl@0
   207
@SYMDEF DEF109839
sl@0
   208
*/
sl@0
   209
void TestCachedDriveRemovableMemoryCardDriveL(RFs& aFs)
sl@0
   210
	{
sl@0
   211
	theTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-4015 "));
sl@0
   212
	BSUL::CCachedDriveInfo *cachedDriveInfo = BSUL::CCachedDriveInfo::NewLC(aFs);
sl@0
   213
sl@0
   214
	// the T drive should be a hard disk media type on WINSCW, E drive on hardware
sl@0
   215
#ifdef __WINSCW__
sl@0
   216
	TEST(cachedDriveInfo->GetDefaultRemovableMemoryCardDriveL() == TDriveUnit(KValidDriveT));
sl@0
   217
#elif defined __X86GCC__
sl@0
   218
	// No removable drives in X86 platform
sl@0
   219
	TRAPD(err,cachedDriveInfo->GetDefaultRemovableMemoryCardDriveL());
sl@0
   220
	TEST(err == KErrNotFound);
sl@0
   221
#else
sl@0
   222
	TEST(cachedDriveInfo->GetDefaultRemovableMemoryCardDriveL() == TDriveUnit(KValidDriveE));
sl@0
   223
#endif
sl@0
   224
sl@0
   225
	CleanupStack::PopAndDestroy(cachedDriveInfo);
sl@0
   226
	}
sl@0
   227
sl@0
   228
/**
sl@0
   229
@SYMTestCaseID SYSLIB-BAFL-CT-1394
sl@0
   230
@SYMTestCaseDesc Tests BSUL::CCachedDriveInfo
sl@0
   231
@SYMTestPriority Medium
sl@0
   232
@SYMTestActions Executes tests for BSUL::CCachedDriveInfo.
sl@0
   233
@SYMTestExpectedResults The test must not fail.
sl@0
   234
*/
sl@0
   235
void DoTests()
sl@0
   236
	{
sl@0
   237
	theTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1394 "));
sl@0
   238
	RFs fs;
sl@0
   239
	fs.Connect();
sl@0
   240
	CleanupClosePushL(fs);
sl@0
   241
sl@0
   242
	TestCachedDriveInfoL(fs);
sl@0
   243
	TestCachedDriveInfoFlagSetL(fs);
sl@0
   244
	TestCachedDriveMediaTypeL(fs);
sl@0
   245
	TestCachedDriveRemovableMemoryCardDriveL(fs);
sl@0
   246
sl@0
   247
	CleanupStack::PopAndDestroy(&fs);
sl@0
   248
	}
sl@0
   249
sl@0
   250
GLDEF_C TInt E32Main()
sl@0
   251
	{
sl@0
   252
	__UHEAP_MARK;
sl@0
   253
	CTrapCleanup *cleanup=CTrapCleanup::New();
sl@0
   254
	theTest.Title();
sl@0
   255
	theTest.Start(_L("Testing t_cacheddriveinfo"));
sl@0
   256
	TRAPD(err,DoTests());
sl@0
   257
	TEST(!err);
sl@0
   258
	theTest.End();
sl@0
   259
	theTest.Close();
sl@0
   260
	delete cleanup;
sl@0
   261
	__UHEAP_MARKEND;
sl@0
   262
	return(0);
sl@0
   263
	}