os/persistentdata/persistentstorage/sql/TEST/t_sqlfilesrvcrash1.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) 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
/**
sl@0
    17
Instructions:
sl@0
    18
sl@0
    19
This is a manual test created to verify DEFXXXXX, 2 executables needs to be run to do this test
sl@0
    20
1) t_sqlfilesrvcrash1.exe - Generate a corrupted journal file, this will cause the device to reset. 
sl@0
    21
2) t_sqlfilesrvcrash2.exe - After the reboot, tests if SQL can handle the courrpted journal file.
sl@0
    22
sl@0
    23
This test requires a non-rugged drive to store the database file and therefore will only work in hardware mode
sl@0
    24
*/
sl@0
    25
sl@0
    26
#include <e32test.h>
sl@0
    27
#include <f32file.h>
sl@0
    28
#include <sqldb.h>
sl@0
    29
sl@0
    30
RTest TheTest(_L("t_sqlfilesrvcrash1 test"));
sl@0
    31
sl@0
    32
#if !defined __WINS__ && !defined __WINSCW__
sl@0
    33
sl@0
    34
RFs TheFs;
sl@0
    35
RSqlDatabase TheDb;
sl@0
    36
sl@0
    37
const TInt KControlIoRuggedOn=2;
sl@0
    38
const TInt KControlIoRuggedOff=3;
sl@0
    39
const TInt KControlIoIsRugged=4;
sl@0
    40
sl@0
    41
const TChar KDrvLetter = ('E');
sl@0
    42
_LIT(KTestDir, "E:\\test\\");
sl@0
    43
_LIT(KDbName, "E:\\test\\t_sqlfilesrvcrash.db");
sl@0
    44
_LIT8(KConfigStr, "page_size=32768");
sl@0
    45
_LIT(KFileSrvName, "efile.exe");
sl@0
    46
sl@0
    47
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    48
//Deletes all created test files.
sl@0
    49
void DeleteTestFiles()
sl@0
    50
    {
sl@0
    51
    TheDb.Close();
sl@0
    52
    (void)RSqlDatabase::Delete(KDbName);
sl@0
    53
    }
sl@0
    54
sl@0
    55
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    56
//Test macros and functions
sl@0
    57
void Check(TInt aValue, TInt aLine)
sl@0
    58
    {
sl@0
    59
    if(!aValue)
sl@0
    60
        {
sl@0
    61
        DeleteTestFiles();
sl@0
    62
        RDebug::Print(_L("*** Line %d\r\n"), aLine);
sl@0
    63
        TheTest(EFalse, aLine);
sl@0
    64
        }
sl@0
    65
    }
sl@0
    66
void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    67
    {
sl@0
    68
    if(aValue != aExpected)
sl@0
    69
        {
sl@0
    70
        DeleteTestFiles();
sl@0
    71
        RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    72
        TheTest(EFalse, aLine);
sl@0
    73
        }
sl@0
    74
    }
sl@0
    75
sl@0
    76
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
    77
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    78
sl@0
    79
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    80
//Set the drive to Rugged or non-rugged depending on the input parameter
sl@0
    81
void SetDrive(TBool aSetToRugged)
sl@0
    82
    {
sl@0
    83
    TUint8 isRugged;
sl@0
    84
    TPtr8 pRugged(&isRugged,1,1);
sl@0
    85
sl@0
    86
    TInt drvNum;
sl@0
    87
    TInt err = TheFs.CharToDrive(KDrvLetter, drvNum);
sl@0
    88
    TEST2(err, KErrNone);
sl@0
    89
    err=TheFs.ControlIo(drvNum,KControlIoIsRugged,pRugged);
sl@0
    90
    TEST2(err, KErrNone);
sl@0
    91
    
sl@0
    92
    if(!aSetToRugged)
sl@0
    93
        {
sl@0
    94
        if(isRugged)
sl@0
    95
            {
sl@0
    96
            err=TheFs.ControlIo(drvNum,KControlIoRuggedOff);
sl@0
    97
            TEST2(err, KErrNone);
sl@0
    98
            }
sl@0
    99
        }
sl@0
   100
    else
sl@0
   101
        {
sl@0
   102
        if(!isRugged)
sl@0
   103
            {
sl@0
   104
            err=TheFs.ControlIo(drvNum,KControlIoRuggedOn);
sl@0
   105
            TEST2(err, KErrNone);
sl@0
   106
            }
sl@0
   107
        }
sl@0
   108
    }
sl@0
   109
sl@0
   110
//Creates file session instance and the test directory
sl@0
   111
void CreateTestEnv()
sl@0
   112
    {
sl@0
   113
    TInt err = TheFs.Connect();
sl@0
   114
    TEST2(err, KErrNone);
sl@0
   115
    
sl@0
   116
    //Set the drive to non-rugged
sl@0
   117
    TBool setDriveToRugged = EFalse;
sl@0
   118
    SetDrive(setDriveToRugged);
sl@0
   119
    
sl@0
   120
    err = TheFs.MkDir(KTestDir);
sl@0
   121
    TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   122
    }
sl@0
   123
sl@0
   124
TInt KillProcess(const TDesC& aProcessName)
sl@0
   125
    {
sl@0
   126
    TFullName name;
sl@0
   127
    //RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
sl@0
   128
    TBuf<64> pattern(aProcessName);
sl@0
   129
    TInt length = pattern.Length();
sl@0
   130
    pattern += _L("*");
sl@0
   131
    TFindProcess procFinder(pattern);
sl@0
   132
sl@0
   133
    while (procFinder.Next(name) == KErrNone)
sl@0
   134
        {
sl@0
   135
        if (name.Length() > length)
sl@0
   136
            {//If found name is a string containing aProcessName string.
sl@0
   137
            TChar c(name[length]);
sl@0
   138
            if (c.IsAlphaDigit() ||
sl@0
   139
                c == TChar('_') ||
sl@0
   140
                c == TChar('-'))
sl@0
   141
                {
sl@0
   142
                //RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
sl@0
   143
                continue;
sl@0
   144
                }
sl@0
   145
            }
sl@0
   146
        RProcess proc;
sl@0
   147
        if (proc.Open(name) == KErrNone)
sl@0
   148
            {
sl@0
   149
            RDebug::Print(_L("About to kill process \"%S\", This will force a reboot\n"), &name);
sl@0
   150
            proc.Kill(0);
sl@0
   151
            
sl@0
   152
            }
sl@0
   153
        proc.Close();
sl@0
   154
        }
sl@0
   155
    return KErrNone;
sl@0
   156
    }
sl@0
   157
sl@0
   158
/**
sl@0
   159
@SYMTestCaseID          PDS-SQL-CT-4164
sl@0
   160
@SYMTestCaseDesc        Tests for DEF144027: SQL Open returns error if the reported and actual file size are different
sl@0
   161
                        This function creates a corrupted jorunal file on a non-rugged FAT, where the actual and 
sl@0
   162
                        reported file size is different. This is done by killing the file server forcing the device to 
sl@0
   163
                        reset. After the reset t_sqlfilesrvcrash2.exe is used to verify SQL can handle this corrupted
sl@0
   164
                        journal file properly.
sl@0
   165
@SYMTestActions         DEF144027: SQL Open returns error if the reported and actual file size are different
sl@0
   166
@SYMTestExpectedResults Test must not fail
sl@0
   167
@SYMTestPriority        Medium
sl@0
   168
@SYMDEF                 DEF144027
sl@0
   169
                        DEF144238
sl@0
   170
*/
sl@0
   171
void DEF144027()
sl@0
   172
	{
sl@0
   173
    TInt err = TheDb.Create(KDbName, &KConfigStr);
sl@0
   174
    TEST2(err, KErrNone);
sl@0
   175
    
sl@0
   176
    err = TheDb.Exec(_L("CREATE TABLE t1(NUM INTEGER)"));
sl@0
   177
    TEST2(err, 1);
sl@0
   178
    err = TheDb.Exec(_L("CREATE TABLE t2(NUM INTEGER)"));
sl@0
   179
    TEST2(err, 1);
sl@0
   180
    
sl@0
   181
    err = TheDb.Exec(_L("INSERT INTO t1(NUM) VALUES (1)"));
sl@0
   182
    TEST2(err, 1);
sl@0
   183
    
sl@0
   184
    err = TheDb.Exec(_L("INSERT INTO t2(NUM) VALUES (1)"));
sl@0
   185
    TEST2(err, 1);
sl@0
   186
    
sl@0
   187
    TheDb.Close();
sl@0
   188
    
sl@0
   189
    err = TheDb.Open(KDbName);
sl@0
   190
    TEST2(err, KErrNone);
sl@0
   191
    
sl@0
   192
    err = TheDb.Exec(_L("BEGIN"));
sl@0
   193
    TEST(err >= 0);
sl@0
   194
    
sl@0
   195
    err = TheDb.Exec(_L("CREATE TABLE t3(NUM INTEGER)"));
sl@0
   196
    TEST2(err, KErrNone);
sl@0
   197
    
sl@0
   198
    err = TheDb.Exec(_L("INSERT INTO t1(NUM) VALUES (1)"));
sl@0
   199
    TEST2(err, 1);
sl@0
   200
    
sl@0
   201
    err = TheDb.Exec(_L("INSERT INTO t2(NUM) VALUES (1)"));
sl@0
   202
    TEST2(err, 1);
sl@0
   203
    
sl@0
   204
    err = TheDb.Exec(_L("INSERT INTO t3(NUM) VALUES (1)"));
sl@0
   205
    TEST2(err, 1);
sl@0
   206
    
sl@0
   207
   
sl@0
   208
    //Here the transaction is committed but the database is not close
sl@0
   209
    //this makes sure that the journal is truncated but not deleted 
sl@0
   210
    err = TheDb.Exec(_L("COMMIT"));
sl@0
   211
    TEST(err >= 0);
sl@0
   212
    
sl@0
   213
    //Reset the drive to rugged
sl@0
   214
    TBool setDriveToRugged = ETrue;
sl@0
   215
    SetDrive(setDriveToRugged);
sl@0
   216
    
sl@0
   217
    //When the file server is killed, the file size meta data will not be updated
sl@0
   218
    KillProcess(KFileSrvName);  
sl@0
   219
	}
sl@0
   220
sl@0
   221
void DoTests()
sl@0
   222
    {    
sl@0
   223
    TheTest.Start(_L(" @SYMTestCaseID:PDS-SQL-CT-4164 DEF144027: SQL Open returns error if the reported and actual file size are different"));
sl@0
   224
    DEF144027();    
sl@0
   225
    }
sl@0
   226
#endif //#if !defined __WINS__ && !defined __WINSCW__
sl@0
   227
sl@0
   228
TInt E32Main()
sl@0
   229
    {
sl@0
   230
    TheTest.Title();
sl@0
   231
    
sl@0
   232
    CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   233
    
sl@0
   234
    __UHEAP_MARK;
sl@0
   235
    
sl@0
   236
#if !defined __WINS__ && !defined __WINSCW__
sl@0
   237
    CreateTestEnv();
sl@0
   238
    DeleteTestFiles();
sl@0
   239
    DoTests();
sl@0
   240
    TheFs.Close();
sl@0
   241
    TheTest.End();
sl@0
   242
#else
sl@0
   243
    TheTest.Start(_L("This test works only works on hardware!"));
sl@0
   244
    TheTest.End();
sl@0
   245
#endif  
sl@0
   246
 
sl@0
   247
    __UHEAP_MARKEND;
sl@0
   248
    
sl@0
   249
    TheTest.Close();
sl@0
   250
    
sl@0
   251
    delete tc;
sl@0
   252
sl@0
   253
    User::Heap().Check();
sl@0
   254
    return KErrNone;
sl@0
   255
    }