Update contrib.
1 // Copyright (c) 2007-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 #include "t_sqlitewsd.h"
22 ///////////////////////////////////////////////////////////////////////////////////////
23 static RTest TheTest(_L("t_sqlitewsd2 test"));
25 const char* KTestDb = "c:\\test\\t_sqlitewsd.db";
29 _LIT(KPanicCategory, "t_sqlitewsd2");
31 const TInt KExprEvalFailed1 = -1001;
32 const TInt KExprEvalFailed2 = -1002;
34 ///////////////////////////////////////////////////////////////////////////////////////
36 static void DestroyTestEnv()
40 (void)sqlite3_close(TheDb);
45 ///////////////////////////////////////////////////////////////////////////////////////
47 static void Panic(TInt aLine, TInt aPanicCode)
50 _LIT(KFormat,"*** Panic %d, at line t_sqlitewsd2.cpp(%d)\r\n");
51 buf.Format(KFormat, aPanicCode, aLine);
53 User::Panic(KPanicCategory, aPanicCode);
56 //Test macros and functions
57 void Check(TInt aValue, TInt aLine)
62 RDebug::Print(_L("*** Expression evaluates to false.\r\n"));
63 Panic(aLine, KExprEvalFailed1);
67 void Check(TInt aValue, TInt aExpected, TInt aLine)
69 if(aValue != aExpected)
71 RDebug::Print(_L("*** Expected error: %d, got: %d.\r\n"), aExpected, aValue);
72 const char* errMsg = sqlite3_errmsg(TheDb);
76 msgBuf.Copy(TPtrC8((const TUint8*)errMsg));
77 RDebug::Print(_L("*** SQLITE error msg: \"%S\".\r\n"), &msgBuf);
80 Panic(aLine, KExprEvalFailed2);
84 ///////////////////////////////////////////////////////////////////////////////////////
86 static void CreateTestEnv()
88 TInt err = sqlite3_open(KTestDb, &TheDb);
89 TEST2(err, SQLITE_OK);
93 ///////////////////////////////////////////////////////////////////////////////////////
97 CTrapCleanup* tc = CTrapCleanup::New();
100 User::Panic(KPanicCategory, KErrNoMemory) ;
106 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-LEGACY-T_SQLITEWSD2-0001 "));
108 DoInserts(KWsdProc2Id, KWsdProc2RecId1, KWsdProc2RecId2);
117 User::Heap().Check();