diff -r 000000000000 -r 08ec8eefde2f persistentstorage/sqlite3api/TEST/sqliteTestUtl.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/persistentstorage/sqlite3api/TEST/sqliteTestUtl.cpp Fri Jan 22 11:06:30 2010 +0200 @@ -0,0 +1,123 @@ +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#include +#include +#include +#include "sqliteTestUtl.h" + +static TBuf8<500> TheBuf8; +static TBuf16<500> TheBuf16; + +static RTest TheTest(_L("t_sqliteapi test")); + +extern "C" void TestTitle(void) + { + TheTest.Title(); + } + +extern "C" void TestStart(const char* title) + { + TPtrC8 p((const unsigned char*)title); + TheBuf16.Copy(p); + TheTest.Start(TheBuf16); + } + +extern "C" void TestNext(const char* title) + { + TPtrC8 p((const unsigned char*)title); + TheBuf16.Copy(p); + TheTest.Next(TheBuf16); + } + +extern "C" void TestClose(void) + { + TheTest.Close(); + } + +extern "C" void TestEnd(void) + { + TheTest.End(); + } + +extern "C" void TestAbort(int aLine) + { + TheTest(0, aLine); + } + +extern "C" void TestHeapMark(void) + { + __UHEAP_MARK; + } + +extern "C" void TestHeapMarkEnd(void) + { + __UHEAP_MARKEND; + } + +extern "C" void Print(const char* msg) + { + TPtrC8 p((const unsigned char*)msg); + TheBuf16.Copy(p); + RDebug::Print(TheBuf16); + } + +extern "C" void PrintI(const char* fmt, int a1) + { + TPtrC8 p((const unsigned char*)fmt); + TheBuf16.Copy(p); + RDebug::Print(TheBuf16, a1); + } + +extern "C" void PrintIII(const char* fmt, int a1, int a2, int a3) + { + TPtrC8 p((const unsigned char*)fmt); + TheBuf16.Copy(p); + RDebug::Print(TheBuf16, a1, a2, a3); + } + +extern "C" void PrintII64I64(const char* fmt, int a1, __int64 a2, __int64 a3) + { + TPtrC8 p((const unsigned char*)fmt); + TheBuf16.Copy(p); + RDebug::Print(TheBuf16, a1, a2, a3); + } + +extern "C" void PrintSI(const char* fmt, const char* s, int a1) + { + TPtrC8 p((const unsigned char*)fmt); + TheBuf8.Format(TPtrC8((const TUint8*)fmt), s, a1); + TheBuf16.Copy(TheBuf8); + RDebug::Print(TheBuf16); + } + +extern "C" void PrintS(const char* fmt, const char* s) + { + TPtrC8 p((const unsigned char*)fmt); + TheBuf8.Format(TPtrC8((const TUint8*)fmt), s); + TheBuf16.Copy(TheBuf8); + RDebug::Print(TheBuf16); + } + +extern "C" void CreatePrivateDir(void) + { + RFs TheFs; + TInt err = TheFs.Connect(); + TheTest(err == KErrNone); + err = TheFs.CreatePrivatePath(EDriveC); + TheFs.Close(); + TheTest(err == KErrNone || err == KErrAlreadyExists); + } +