sl@0
|
1 |
// Copyright (c) 1996-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 the License "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 |
// f32test\manager\t_clobbr.cpp
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <f32file.h>
|
sl@0
|
19 |
#include <e32test.h>
|
sl@0
|
20 |
#include "t_server.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
GLDEF_D RTest test(_L("T_CLOBBR"));
|
sl@0
|
23 |
|
sl@0
|
24 |
GLDEF_C void CallTestsL(void)
|
sl@0
|
25 |
//
|
sl@0
|
26 |
// Test writing to a file and changing its size
|
sl@0
|
27 |
//
|
sl@0
|
28 |
{
|
sl@0
|
29 |
test.Next(_L("Write file & change size"));
|
sl@0
|
30 |
|
sl@0
|
31 |
RFile file;
|
sl@0
|
32 |
TInt r=file.Replace(TheFs,_L("test.dat"),EFileWrite);
|
sl@0
|
33 |
test(r==KErrNone);
|
sl@0
|
34 |
|
sl@0
|
35 |
r=file.Write(0,_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"));
|
sl@0
|
36 |
test(r==KErrNone);
|
sl@0
|
37 |
TBuf8<0x40> buf1;
|
sl@0
|
38 |
r=file.Read(0,buf1);
|
sl@0
|
39 |
test(r==KErrNone&&buf1.Length()==36);
|
sl@0
|
40 |
if (buf1!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"))
|
sl@0
|
41 |
test.Printf(_L("1). *BAD*\n"));
|
sl@0
|
42 |
|
sl@0
|
43 |
r=file.SetSize(511);
|
sl@0
|
44 |
test(r==KErrNone);
|
sl@0
|
45 |
TBuf8<0x40> buf2;
|
sl@0
|
46 |
r=file.Read(0,buf2);
|
sl@0
|
47 |
test(r==KErrNone&&buf2.Length()==0x40);
|
sl@0
|
48 |
buf2.SetLength(36);
|
sl@0
|
49 |
if (buf2!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"))
|
sl@0
|
50 |
test.Printf(_L("2). *BAD*\n"));
|
sl@0
|
51 |
|
sl@0
|
52 |
r=file.SetSize(512);
|
sl@0
|
53 |
test(r==KErrNone);
|
sl@0
|
54 |
TBuf8<0x40> buf3;
|
sl@0
|
55 |
r=file.Read(0,buf3);
|
sl@0
|
56 |
test(r==KErrNone&&buf3.Length()==0x40);
|
sl@0
|
57 |
buf3.SetLength(36);
|
sl@0
|
58 |
if (buf3!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"))
|
sl@0
|
59 |
test.Printf(_L("3). *BAD*\n"));
|
sl@0
|
60 |
|
sl@0
|
61 |
r=file.Write(0,_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"));
|
sl@0
|
62 |
test(r==KErrNone);
|
sl@0
|
63 |
TBuf8<0x40> buf4;
|
sl@0
|
64 |
r=file.Read(0,buf4);
|
sl@0
|
65 |
test(r==KErrNone&&buf4.Length()==0x40);
|
sl@0
|
66 |
buf4.SetLength(36);
|
sl@0
|
67 |
if (buf4!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"))
|
sl@0
|
68 |
test.Printf(_L("4). *BAD*\n"));
|
sl@0
|
69 |
r=file.SetSize(511);
|
sl@0
|
70 |
test(r==KErrNone);
|
sl@0
|
71 |
TBuf8<0x40> buf5;
|
sl@0
|
72 |
r=file.Read(0,buf5);
|
sl@0
|
73 |
test(r==KErrNone&&buf5.Length()==0x40);
|
sl@0
|
74 |
buf5.SetLength(36);
|
sl@0
|
75 |
if (buf5!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"))
|
sl@0
|
76 |
test.Printf(_L("5). *BAD*\n"));
|
sl@0
|
77 |
r=file.SetSize(512);
|
sl@0
|
78 |
test(r==KErrNone);
|
sl@0
|
79 |
TBuf8<0x40> buf6;
|
sl@0
|
80 |
r=file.Read(0,buf6);
|
sl@0
|
81 |
test(r==KErrNone&&buf6.Length()==0x40);
|
sl@0
|
82 |
buf6.SetLength(36);
|
sl@0
|
83 |
if (buf6!=_L8("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"))
|
sl@0
|
84 |
test.Printf(_L("6). *BAD*\n"));
|
sl@0
|
85 |
//
|
sl@0
|
86 |
|
sl@0
|
87 |
#if !defined(_UNICODE)
|
sl@0
|
88 |
test.Printf(_L("\n"));
|
sl@0
|
89 |
test.Printf(_L("1). %S\n"),&buf1);
|
sl@0
|
90 |
test.Printf(_L("2). %S\n"),&buf2);
|
sl@0
|
91 |
test.Printf(_L("3). %S\n"),&buf3);
|
sl@0
|
92 |
test.Printf(_L("4). %S\n"),&buf4);
|
sl@0
|
93 |
test.Printf(_L("5). %S\n"),&buf5);
|
sl@0
|
94 |
test.Printf(_L("6). %S\n"),&buf6);
|
sl@0
|
95 |
#endif
|
sl@0
|
96 |
file.Close();
|
sl@0
|
97 |
}
|