os/persistentdata/persistentstorage/store/TSTOR/t_stordelim.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <s32mem.h>
    17 #include <s32file.h>
    18 #include <e32test.h>
    19 
    20 const TInt KTestCleanupStack=0x20;
    21 // This is a path specification and should not be used as is
    22 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_DELIM.DAT");
    23 
    24 LOCAL_D CTrapCleanup* TheTrapCleanup;
    25 LOCAL_D RTest test(_L("t_stordelim"));
    26 LOCAL_D RFs TheFs;
    27 
    28 LOCAL_C TInt ReadL(RReadStream& aStream,TUint8* aBuf,TInt aLength,TChar aDelim)
    29 	{
    30 	TPtr8 des(aBuf,aLength);
    31 	aStream.ReadL(des,aDelim);
    32 	return des.Length();
    33 	}
    34 
    35 LOCAL_C TInt ReadL(RReadStream& aStream,TUint16* aBuf,TInt aLength,TChar aDelim)
    36 	{
    37 	TPtr16 des(aBuf,aLength);
    38 	aStream.ReadL(des,aDelim);
    39 	return des.Length();
    40 	}
    41 
    42 LOCAL_C TPtrC8 KTestText8=_S8("One two three four five six seven eight nine ten eleven twelve.");
    43 LOCAL_C TPtrC16 KTestText16=_S16("One two three four five six seven eight nine ten eleven twelve.");
    44 LOCAL_C TPtrC8 KWhatever8=_S8("Whatever");
    45 LOCAL_C TPtrC16 KWhatever16=_S16("Whatever");
    46 
    47 const TInt KBufSize=0x20;
    48 
    49 /**
    50 @SYMTestCaseID          SYSLIB-STORE-CT-1181
    51 @SYMTestCaseDesc	    Tests for reading from 8-bit delimited input
    52 @SYMTestPriority 	    High
    53 @SYMTestActions  	    Tests for RReadStream::ReadL() function.Check for KErrEof error flag
    54 @SYMTestExpectedResults Test must not fail
    55 @SYMREQ                 REQ0000
    56 */
    57 LOCAL_C void testInput8L()
    58 	{
    59 	TUint8 buf[KBufSize];
    60 	RDesReadStream strm(KWhatever8);
    61 	TInt len=ReadL(strm,buf,KBufSize,'e');
    62 	test (len==5);
    63 	test (TPtrC8(buf,len)==_L8("Whate"));
    64 	len=ReadL(strm,buf,KBufSize,'e');
    65 	test (len==2);
    66 	test (TPtrC8(buf,len)==_L8("ve"));
    67 	len=ReadL(strm,buf,1,'q');
    68 	test (len==1);
    69 	test (TPtrC8(buf,len)==_L8("r"));
    70 	TRAPD(r,ReadL(strm,buf,1,'r'));
    71 	test (r==KErrEof);
    72 	strm.Source()->SeekL(MStreamBuf::ERead,KStreamBeginning);
    73 	TRAP(r,ReadL(strm,buf,KBufSize,'\n'));
    74 	test (r==KErrEof);
    75 
    76 	TParsePtrC parse(KFileLocationSpec);
    77 	CFileStore* store=CDirectFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite|EFileRead);
    78 	store->SetTypeL(store->Layout());
    79 	RStoreWriteStream out;
    80 	TStreamId id=out.CreateLC(*store);
    81 	out.WriteL(KTestText8);
    82 	out.CommitL();
    83 	CleanupStack::PopAndDestroy();
    84 
    85 // small buffer
    86 	store->CommitL();
    87 	store->Reset(11);
    88 //
    89 	RStoreReadStream in;
    90 	in.OpenLC(*store,id);
    91 	TInt tot=KTestText8.Length();
    92 	TUint8 const* pp=KTestText8.Ptr();
    93 	for (;;)
    94 		{
    95 		len=ReadL(in,buf,Min(tot,KBufSize),' ');
    96 		test (len<=tot);
    97 		test (Mem::Compare(buf,len,pp,len)==0);
    98 		pp+=len;
    99 		tot-=len;
   100 		if (tot==0)
   101 			break;
   102 		test (buf[len-1]==' ');
   103 		}
   104 	test (buf[len-1]=='.');
   105 	TRAP(r,ReadL(in,buf,1,' '));
   106 	test (r==KErrEof);
   107 	CleanupStack::PopAndDestroy();
   108 //
   109 	in.OpenLC(*store,id);
   110 	tot=0;
   111 	do
   112 		{
   113 		len=ReadL(in,buf,KBufSize,'.');
   114 		tot+=len;
   115 		} while (buf[len-1]!='.');
   116 	test (tot==KTestText8.Length());
   117 	TRAP(r,ReadL(in,buf,1,' '));
   118 	test (r==KErrEof);
   119 //
   120 	CleanupStack::PopAndDestroy(2);
   121 	}
   122 
   123 /**
   124 @SYMTestCaseID          SYSLIB-STORE-CT-1182
   125 @SYMTestCaseDesc	    Tests for reading from 16-bit delimited input.
   126 @SYMTestPriority 	    High
   127 @SYMTestActions  	    Tests for RReadStream::ReadL() function.Check for KErrEof error flag.
   128 @SYMTestExpectedResults Test must not fail
   129 @SYMREQ                 REQ0000
   130 */
   131 LOCAL_C void testInput16L()
   132 	{
   133 	TUint16 buf[KBufSize];
   134 	RDesReadStream strm(TPtrC8((TUint8 const*)KWhatever16.Ptr(),KWhatever16.Size()));
   135 	TInt len=ReadL(strm,buf,KBufSize,'e');
   136 	test (len==5);
   137 	test (TPtrC16(buf,len)==_L16("Whate"));
   138 	len=ReadL(strm,buf,KBufSize,'e');
   139 	test (len==2);
   140 	test (TPtrC16(buf,len)==_L16("ve"));
   141 	len=ReadL(strm,buf,1,'q');
   142 	test (len==1);
   143 	test (TPtrC16(buf,len)==_L16("r"));
   144 	TRAPD(r,ReadL(strm,buf,1,'r'));
   145 	test (r==KErrEof);
   146 	strm.Source()->SeekL(MStreamBuf::ERead,KStreamBeginning);
   147 	TRAP(r,ReadL(strm,buf,KBufSize,'\n'));
   148 	test (r==KErrEof);
   149 
   150 	TParsePtrC parse(KFileLocationSpec);
   151 	CFileStore* store=CDirectFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileWrite|EFileRead);
   152 	RStoreWriteStream out;
   153 	TStreamId id=out.CreateLC(*store);
   154 	out.WriteL(KTestText16);
   155 	out.CommitL();
   156 	CleanupStack::PopAndDestroy();
   157 
   158 // small buffer
   159 	store->CommitL();
   160 	store->Reset(11);
   161 //
   162 	RStoreReadStream in;
   163 	in.OpenLC(*store,id);
   164 	TInt tot=KTestText16.Length();
   165 	TUint16 const* pp=KTestText16.Ptr();
   166 	for (;;)
   167 		{
   168 		len=ReadL(in,buf,Min(tot,KBufSize),' ');
   169 		test (len<=tot);
   170 		test (Mem::Compare(buf,len,pp,len)==0);
   171 		pp+=len;
   172 		tot-=len;
   173 		if (tot==0)
   174 			break;
   175 		test (buf[len-1]==' ');
   176 		}
   177 	test (buf[len-1]=='.');
   178 	TRAP(r,ReadL(in,buf,1,' '));
   179 	test (r==KErrEof);
   180 	CleanupStack::PopAndDestroy();
   181 //
   182 	in.OpenLC(*store,id);
   183 	tot=0;
   184 	do
   185 		{
   186 		len=ReadL(in,buf,KBufSize,'.');
   187 		tot+=len;
   188 		} while (buf[len-1]!='.');
   189 	test (tot==KTestText16.Length());
   190 	TRAP(r,ReadL(in,buf,1,' '));
   191 	test (r==KErrEof);
   192 //
   193 	CleanupStack::PopAndDestroy(2);
   194 	}
   195 
   196 //
   197 // Prepare the test directory.
   198 //
   199 LOCAL_C void setupTestDirectory()
   200     {
   201 	TInt r=TheFs.Connect();
   202 	test(r==KErrNone);
   203 //
   204 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   205 	TParse parse;
   206 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   207 	
   208 	r=TheFs.MkDir(parse.DriveAndPath());
   209 	test(r==KErrNone||r==KErrAlreadyExists);
   210 	r=TheFs.SetSessionPath(parse.DriveAndPath());
   211 	test(r==KErrNone);
   212 	}
   213 
   214 //
   215 // Initialise the cleanup stack.
   216 //
   217 LOCAL_C void setupCleanup()
   218     {
   219 	TheTrapCleanup=CTrapCleanup::New();
   220 	test(TheTrapCleanup!=NULL);
   221 	TRAPD(r,\
   222 		{\
   223 		for (TInt i=KTestCleanupStack;i>0;i--)\
   224 			CleanupStack::PushL((TAny*)1);\
   225 		test(r==KErrNone);\
   226 		CleanupStack::Pop(KTestCleanupStack);\
   227 		});
   228 	test(r==KErrNone);
   229 	}
   230 
   231 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   232 	{
   233 	RFs fsSession;
   234 	TInt err = fsSession.Connect();
   235 	if(err == KErrNone)
   236 		{
   237 		TEntry entry;
   238 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   239 			{
   240 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   241 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   242 			if(err != KErrNone)
   243 				{
   244 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   245 				}
   246 			err = fsSession.Delete(aFullName);
   247 			if(err != KErrNone)
   248 				{
   249 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   250 				}
   251 			}
   252 		fsSession.Close();
   253 		}
   254 	else
   255 		{
   256 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   257 		}
   258 	}
   259 
   260 //
   261 // Test file-based streams.
   262 //
   263 GLDEF_C TInt E32Main()
   264     {
   265 	test.Title();
   266 	setupTestDirectory();
   267 	setupCleanup();
   268 	__UHEAP_MARK;
   269 //
   270 	test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1181 Test 8-bit delimited input "));
   271 	TRAPD(r,testInput8L());
   272 	test (r==KErrNone);
   273 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1182 Test 16-bit delimited input "));
   274 	TRAP(r,testInput16L());
   275 	test (r==KErrNone);
   276 
   277 	//deletion of data files must be before call to .End() - DEF047652
   278 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   279 	TParse parse;
   280 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   281 	::DeleteDataFile(parse.FullName());
   282 
   283 	test.End();
   284 //
   285 	__UHEAP_MARKEND;
   286 
   287 	delete TheTrapCleanup;
   288 	TheFs.Close();
   289 	test.Close();
   290 	return 0;
   291     }
   292