os/persistentdata/persistentstorage/sqlite3api/TEST/t_sqlitetclstarter.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) 2007-2010 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
#include <e32test.h>
sl@0
    17
#include <e32uid.h>
sl@0
    18
#include <f32file.h>
sl@0
    19
#include <bautils.h>
sl@0
    20
sl@0
    21
sl@0
    22
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    23
sl@0
    24
RTest TheTest(_L("t_sqlitetclstarter"));
sl@0
    25
sl@0
    26
_LIT(KTclExecutableName,"tclsqlite3.exe");
sl@0
    27
_LIT(KTclScriptName,"all.test");
sl@0
    28
sl@0
    29
_LIT(KStdioConfigFilePath,	"C:\\system\\data\\");
sl@0
    30
_LIT(KStdioConfigFile,	"C:\\system\\data\\config.ini");
sl@0
    31
sl@0
    32
_LIT(KLogsFilePath, "C:\\logs\\testexecute\\");
sl@0
    33
sl@0
    34
RFs theFs;
sl@0
    35
sl@0
    36
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    37
sl@0
    38
//
sl@0
    39
// Creates the appropriate stdio ini file to redirect stdio output to a file 
sl@0
    40
//
sl@0
    41
sl@0
    42
void CreateIniFileForStdoutRedirection(void)
sl@0
    43
	{
sl@0
    44
	TInt err(KErrNone);
sl@0
    45
sl@0
    46
	// check path exists otherwise create
sl@0
    47
	if (!BaflUtils::FolderExists(theFs, KStdioConfigFilePath))
sl@0
    48
		{
sl@0
    49
		err = theFs.MkDirAll(KStdioConfigFilePath);
sl@0
    50
		TheTest(err == KErrNone, __LINE__);
sl@0
    51
		}
sl@0
    52
sl@0
    53
	
sl@0
    54
	// create file
sl@0
    55
	RFile file;
sl@0
    56
	err = file.Create(theFs, KStdioConfigFile, EFileRead | EFileWrite);	
sl@0
    57
	TheTest(err == KErrNone, __LINE__);
sl@0
    58
sl@0
    59
	TheTest(KErrNone == file.Write(_L8("[STDIO]\r\n")), __LINE__);
sl@0
    60
	TheTest(KErrNone == file.Write(_L8("STDIN = MEDIA1\r\n")), __LINE__);
sl@0
    61
	TheTest(KErrNone == file.Write(_L8("STDOUT = MEDIA2\r\n")), __LINE__);
sl@0
    62
	TheTest(KErrNone == file.Write(_L8("[MEDIA1]\r\n")), __LINE__);
sl@0
    63
	TheTest(KErrNone == file.Write(_L8("type = console\r\n")), __LINE__);
sl@0
    64
	TheTest(KErrNone == file.Write(_L8("width = -1\r\n")), __LINE__);
sl@0
    65
	TheTest(KErrNone == file.Write(_L8("height = -1\r\n")), __LINE__);
sl@0
    66
	TheTest(KErrNone == file.Write(_L8("[MEDIA2]\r\n")), __LINE__);
sl@0
    67
	TheTest(KErrNone == file.Write(_L8("type = file\r\n")), __LINE__);
sl@0
    68
	TheTest(KErrNone == file.Write(_L8("path = C:\\logs\\testexecute\\t_sqlitetclstarter.htm\r\n")), __LINE__);
sl@0
    69
	TheTest(KErrNone == file.Flush(),__LINE__);
sl@0
    70
sl@0
    71
	file.Close();
sl@0
    72
sl@0
    73
	}
sl@0
    74
sl@0
    75
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    76
sl@0
    77
//
sl@0
    78
// Deletes the stdio ini file
sl@0
    79
//
sl@0
    80
sl@0
    81
void DeleteIniFileForStdoutRedirection(void)
sl@0
    82
	{
sl@0
    83
	TInt err = theFs.Delete(KStdioConfigFile);
sl@0
    84
	TheTest(err == KErrNone || err==KErrNotFound || err==KErrPathNotFound, __LINE__);
sl@0
    85
	}
sl@0
    86
sl@0
    87
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    88
sl@0
    89
//
sl@0
    90
// Ensure the directory for the Logs file exists
sl@0
    91
//
sl@0
    92
sl@0
    93
void EnsureLogsDirectoryExists(void)
sl@0
    94
	{
sl@0
    95
	TInt err(KErrNone);
sl@0
    96
sl@0
    97
	// check path exists otherwise create
sl@0
    98
	if (!BaflUtils::FolderExists(theFs, KLogsFilePath))
sl@0
    99
		{
sl@0
   100
		err = theFs.MkDirAll(KLogsFilePath);
sl@0
   101
		TheTest(err == KErrNone, __LINE__);
sl@0
   102
		}
sl@0
   103
	}
sl@0
   104
sl@0
   105
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   106
sl@0
   107
//
sl@0
   108
// Start the tcl process with a script
sl@0
   109
//
sl@0
   110
sl@0
   111
void StartTclProcess(void)
sl@0
   112
	{
sl@0
   113
	RProcess process;
sl@0
   114
	TInt err = process.Create(KTclExecutableName,KTclScriptName);
sl@0
   115
	TheTest(err==KErrNone, __LINE__);
sl@0
   116
	
sl@0
   117
	TRequestStatus processStatus;
sl@0
   118
	process.Logon(processStatus);
sl@0
   119
sl@0
   120
	process.Resume();
sl@0
   121
sl@0
   122
	TheTest.Printf(_L("Wait for TCL tests to finish\r\n"));
sl@0
   123
sl@0
   124
	User::WaitForRequest(processStatus);
sl@0
   125
sl@0
   126
	TheTest.Printf(_L("TCL tests finished %d\r\n"),processStatus.Int());
sl@0
   127
sl@0
   128
	TheTest(processStatus.Int() == KErrNone, __LINE__);
sl@0
   129
	}
sl@0
   130
sl@0
   131
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   132
sl@0
   133
TInt E32Main()
sl@0
   134
	{
sl@0
   135
	TheTest.Title();
sl@0
   136
	TheTest.Start(_L("TCL tests"));
sl@0
   137
sl@0
   138
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   139
	
sl@0
   140
	__UHEAP_MARK;
sl@0
   141
	
sl@0
   142
	TInt err = theFs.Connect();
sl@0
   143
	TheTest(err == KErrNone, __LINE__);
sl@0
   144
sl@0
   145
	DeleteIniFileForStdoutRedirection();
sl@0
   146
sl@0
   147
	CreateIniFileForStdoutRedirection();
sl@0
   148
sl@0
   149
	EnsureLogsDirectoryExists();
sl@0
   150
sl@0
   151
	StartTclProcess();
sl@0
   152
sl@0
   153
	DeleteIniFileForStdoutRedirection();
sl@0
   154
sl@0
   155
	theFs.Close();
sl@0
   156
sl@0
   157
	__UHEAP_MARKEND;
sl@0
   158
	
sl@0
   159
	TheTest.End();
sl@0
   160
	TheTest.Close();
sl@0
   161
	
sl@0
   162
	delete tc;
sl@0
   163
	
sl@0
   164
	User::Heap().Check();
sl@0
   165
	return KErrNone;
sl@0
   166
	}