sl@0: // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of the License "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // f32test\manager\t_clobbr.cpp sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "t_server.h" sl@0: sl@0: GLDEF_D RTest test(_L("T_CLOBBR")); sl@0: sl@0: GLDEF_C void CallTestsL(void) sl@0: // sl@0: // Test writing to a file and changing its size sl@0: // sl@0: { sl@0: test.Next(_L("Write file & change size")); sl@0: sl@0: RFile file; sl@0: TInt r=file.Replace(TheFs,_L("test.dat"),EFileWrite); sl@0: test(r==KErrNone); sl@0: sl@0: r=file.Write(0,_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")); sl@0: test(r==KErrNone); sl@0: TBuf8<0x40> buf1; sl@0: r=file.Read(0,buf1); sl@0: test(r==KErrNone&&buf1.Length()==36); sl@0: if (buf1!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")) sl@0: test.Printf(_L("1). *BAD*\n")); sl@0: sl@0: r=file.SetSize(511); sl@0: test(r==KErrNone); sl@0: TBuf8<0x40> buf2; sl@0: r=file.Read(0,buf2); sl@0: test(r==KErrNone&&buf2.Length()==0x40); sl@0: buf2.SetLength(36); sl@0: if (buf2!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")) sl@0: test.Printf(_L("2). *BAD*\n")); sl@0: sl@0: r=file.SetSize(512); sl@0: test(r==KErrNone); sl@0: TBuf8<0x40> buf3; sl@0: r=file.Read(0,buf3); sl@0: test(r==KErrNone&&buf3.Length()==0x40); sl@0: buf3.SetLength(36); sl@0: if (buf3!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")) sl@0: test.Printf(_L("3). *BAD*\n")); sl@0: sl@0: r=file.Write(0,_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")); sl@0: test(r==KErrNone); sl@0: TBuf8<0x40> buf4; sl@0: r=file.Read(0,buf4); sl@0: test(r==KErrNone&&buf4.Length()==0x40); sl@0: buf4.SetLength(36); sl@0: if (buf4!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")) sl@0: test.Printf(_L("4). *BAD*\n")); sl@0: r=file.SetSize(511); sl@0: test(r==KErrNone); sl@0: TBuf8<0x40> buf5; sl@0: r=file.Read(0,buf5); sl@0: test(r==KErrNone&&buf5.Length()==0x40); sl@0: buf5.SetLength(36); sl@0: if (buf5!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")) sl@0: test.Printf(_L("5). *BAD*\n")); sl@0: r=file.SetSize(512); sl@0: test(r==KErrNone); sl@0: TBuf8<0x40> buf6; sl@0: r=file.Read(0,buf6); sl@0: test(r==KErrNone&&buf6.Length()==0x40); sl@0: buf6.SetLength(36); sl@0: if (buf6!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")) sl@0: test.Printf(_L("6). *BAD*\n")); sl@0: // sl@0: sl@0: #if !defined(_UNICODE) sl@0: test.Printf(_L("\n")); sl@0: test.Printf(_L("1). %S\n"),&buf1); sl@0: test.Printf(_L("2). %S\n"),&buf2); sl@0: test.Printf(_L("3). %S\n"),&buf3); sl@0: test.Printf(_L("4). %S\n"),&buf4); sl@0: test.Printf(_L("5). %S\n"),&buf5); sl@0: test.Printf(_L("6). %S\n"),&buf6); sl@0: #endif sl@0: file.Close(); sl@0: }