os/persistentdata/persistentstorage/sql/TEST/t_sqlfilesrvcrash2.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_sqlfilesrvcrash2 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
_LIT(KDbName, "E:\\test\\t_sqlfilesrvcrash.db");
sl@0
    38
_LIT(KJournalName,  "E:\\test\t_sqlfilesrvcrash.db-journal");
sl@0
    39
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    40
//Deletes all created test files.
sl@0
    41
void DeleteTestFiles()
sl@0
    42
    {
sl@0
    43
    TheDb.Close();
sl@0
    44
    (void)RSqlDatabase::Delete(KDbName);
sl@0
    45
    }
sl@0
    46
sl@0
    47
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    48
//Test macros and functions
sl@0
    49
void Check(TInt aValue, TInt aLine)
sl@0
    50
    {
sl@0
    51
    if(!aValue)
sl@0
    52
        {
sl@0
    53
        RDebug::Print(_L("*** Line %d\r\n"), aLine);
sl@0
    54
        TheTest(EFalse, aLine);
sl@0
    55
        }
sl@0
    56
    }
sl@0
    57
void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    58
    {
sl@0
    59
    if(aValue != aExpected)
sl@0
    60
        {
sl@0
    61
        RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    62
        TheTest(EFalse, aLine);
sl@0
    63
        }
sl@0
    64
    }
sl@0
    65
sl@0
    66
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
    67
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    68
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    69
//Creates file session instance and the test directory
sl@0
    70
void CreateTestEnv()
sl@0
    71
    {
sl@0
    72
    TInt  err = TheFs.Connect();
sl@0
    73
    TEST2(err, KErrNone);
sl@0
    74
    
sl@0
    75
    RFile file;
sl@0
    76
    err = file.Open(TheFs, KJournalName, EFileRead);
sl@0
    77
    TEST2(err, KErrNone);
sl@0
    78
    
sl@0
    79
    TInt size;
sl@0
    80
    err = file.Size(size);
sl@0
    81
    TEST2(err, KErrNone);
sl@0
    82
    TEST(size > SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT);
sl@0
    83
    file.Close();
sl@0
    84
    }
sl@0
    85
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    86
/**
sl@0
    87
@SYMTestCaseID          PDS-SQL-CT-4165
sl@0
    88
@SYMTestCaseDesc        Tests for DEF144027: SQL Open returns error if the reported and actual file size are different
sl@0
    89
                        Requires a corrupted journal file to be created using t_sqlfilesrvcrash1.exe before running 
sl@0
    90
                        this test. If a corrupted journal file exists then check that the opening the database does not
sl@0
    91
                        return an error.
sl@0
    92
@SYMTestActions         DEF144027: SQL Open returns error if the reported and actual file size are different
sl@0
    93
@SYMTestExpectedResults The RSqlDatabase::Open operation should not fail
sl@0
    94
@SYMTestPriority        Medium
sl@0
    95
@SYMDEF                 DEF144027
sl@0
    96
                        DEF144238
sl@0
    97
*/
sl@0
    98
void DEF144027()
sl@0
    99
	{
sl@0
   100
    TInt err = TheDb.Open(KDbName);
sl@0
   101
    TEST2(err, KErrNone);
sl@0
   102
    
sl@0
   103
    //Lets perform a simple operation to make sure it works
sl@0
   104
    err = TheDb.Exec(_L("BEGIN"));
sl@0
   105
    TEST(err >= 0);
sl@0
   106
    
sl@0
   107
    err = TheDb.Exec(_L("INSERT INTO t1(NUM) VALUES (55)"));
sl@0
   108
    TEST2(err, 1);
sl@0
   109
    
sl@0
   110
    err = TheDb.Exec(_L("INSERT INTO t2(NUM) VALUES (55)"));
sl@0
   111
    TEST2(err, 1);
sl@0
   112
        
sl@0
   113
    err = TheDb.Exec(_L("COMMIT"));
sl@0
   114
    TEST(err >= 0);
sl@0
   115
        
sl@0
   116
    TheDb.Close();
sl@0
   117
	}
sl@0
   118
sl@0
   119
void DoTests()
sl@0
   120
    {    
sl@0
   121
    TheTest.Start(_L(" @SYMTestCaseID:PDS-SQL-CT-4165 DEF144027: SQL Open returns error if the reported and actual file size are different"));
sl@0
   122
    DEF144027();    
sl@0
   123
    }
sl@0
   124
#endif //#if !defined __WINS__ && !defined __WINSCW__
sl@0
   125
sl@0
   126
TInt E32Main()
sl@0
   127
    {
sl@0
   128
    TheTest.Title();
sl@0
   129
    
sl@0
   130
    CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   131
    
sl@0
   132
    __UHEAP_MARK;
sl@0
   133
    
sl@0
   134
#if !defined __WINS__ && !defined __WINSCW__
sl@0
   135
    DoTests();
sl@0
   136
    DeleteTestFiles();
sl@0
   137
    TheFs.Close();
sl@0
   138
    TheTest.End();
sl@0
   139
#else
sl@0
   140
    TheTest.Start(_L("This test works only works on hardware!"));
sl@0
   141
    TheTest.End();
sl@0
   142
#endif  
sl@0
   143
 
sl@0
   144
    __UHEAP_MARKEND;
sl@0
   145
    
sl@0
   146
    TheTest.Close();
sl@0
   147
    
sl@0
   148
    delete tc;
sl@0
   149
sl@0
   150
    User::Heap().Check();
sl@0
   151
    return KErrNone;
sl@0
   152
    }