os/persistentdata/persistentstorage/sqlite3api/TEST/sqliteTestUtl.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32test.h>
    17 #include <e32debug.h>
    18 #include <f32file.h>
    19 #include "sqliteTestUtl.h"
    20 
    21 static TBuf8<500> TheBuf8;
    22 static TBuf16<500> TheBuf16;
    23 
    24 static RTest* TheTest;
    25 
    26 extern "C" void TestOpen(const char* title)
    27 	{
    28 	TPtrC8 p((const unsigned char*)title);
    29 	TheBuf16.Copy(p);
    30 	TheTest = new RTest(TheBuf16);
    31 	}
    32 
    33 extern "C" void TestTitle()
    34 	{
    35 	TheTest->Title();
    36 	}
    37 
    38 extern "C" void TestStart(const char* title)
    39 	{
    40 	TPtrC8 p((const unsigned char*)title);
    41 	TheBuf16.Copy(p);
    42 	TheTest->Start(TheBuf16);
    43 	}
    44 
    45 extern "C" void TestNext(const char* title)
    46 	{
    47 	TPtrC8 p((const unsigned char*)title);
    48 	TheBuf16.Copy(p);
    49 	TheTest->Next(TheBuf16);
    50 	}
    51 
    52 extern "C" void TestClose(void)
    53 	{
    54 	TheTest->Close();
    55 	delete TheTest;	
    56 	}
    57 
    58 extern "C" void TestEnd(void)
    59 	{
    60 	TheTest->End();	
    61 	}
    62 
    63 extern "C" void TestAbort(int aLine)
    64 	{
    65 	TheTest->operator()(0, aLine);	
    66 	}
    67 
    68 extern "C" void TestTestLine(int aResult, int aLine)
    69 	{
    70 	TheTest->operator()(aResult, aLine);
    71 	}
    72 
    73 extern "C" void TestTest(int aResult)
    74 	{
    75 	TheTest->operator()(aResult);
    76 	}
    77 
    78 extern "C" void TestPrintf(const char* title)
    79 	{
    80 	TPtrC8 p((const unsigned char*)title);
    81 	TheBuf16.Copy(p);
    82 	TheTest->Printf(TheBuf16);
    83 	}
    84 
    85 extern "C" void TestHeapMark(void)
    86 	{
    87 	__UHEAP_MARK;
    88 	}
    89 
    90 extern "C" void TestHeapMarkEnd(void)
    91 	{
    92 	__UHEAP_MARKEND;
    93 	}
    94 
    95 extern "C" void Print(const char* msg)
    96 	{
    97 	TPtrC8 p((const unsigned char*)msg);
    98 	TheBuf16.Copy(p);
    99 	RDebug::Print(TheBuf16);
   100 	}
   101 
   102 extern "C" void PrintI(const char* fmt, int a1)
   103 	{
   104 	TPtrC8 p((const unsigned char*)fmt);
   105 	TheBuf16.Copy(p);
   106 	RDebug::Print(TheBuf16, a1);
   107 	}
   108 
   109 extern "C" void PrintIII(const char* fmt, int a1, int a2, int a3)
   110 	{
   111 	TPtrC8 p((const unsigned char*)fmt);
   112 	TheBuf16.Copy(p);
   113 	RDebug::Print(TheBuf16, a1, a2, a3);
   114 	}
   115 
   116 extern "C" void PrintII64I64(const char* fmt, int a1, __int64 a2, __int64 a3)
   117 	{
   118 	TPtrC8 p((const unsigned char*)fmt);
   119 	TheBuf16.Copy(p);
   120 	RDebug::Print(TheBuf16, a1, a2, a3);
   121 	}
   122 
   123 extern "C" void PrintSI(const char* fmt, const char* s, int a1)
   124 	{
   125 	TPtrC8 p((const unsigned char*)fmt);
   126 	TheBuf8.Format(TPtrC8((const TUint8*)fmt), s, a1);
   127 	TheBuf16.Copy(TheBuf8);
   128 	RDebug::Print(TheBuf16);
   129 	}
   130 
   131 extern "C" void PrintS(const char* fmt, const char* s)
   132 	{
   133 	TPtrC8 p((const unsigned char*)fmt);
   134 	TheBuf8.Format(TPtrC8((const TUint8*)fmt), s);
   135 	TheBuf16.Copy(TheBuf8);
   136 	RDebug::Print(TheBuf16);
   137 	}
   138 
   139 extern "C" void CreatePrivateDir(void)
   140 	{
   141 	RFs TheFs;
   142 	TInt err = TheFs.Connect();
   143 	TheTest->operator()(err == KErrNone);
   144 	err = TheFs.CreatePrivatePath(EDriveC);
   145 	TheFs.Close();
   146 	TheTest->operator()(err == KErrNone || err == KErrAlreadyExists);
   147 	}
   148