1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/TEST/t_sqlitetclstarter.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,166 @@
1.4 +// Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <e32test.h>
1.20 +#include <e32uid.h>
1.21 +#include <f32file.h>
1.22 +#include <bautils.h>
1.23 +
1.24 +
1.25 +///////////////////////////////////////////////////////////////////////////////////////
1.26 +
1.27 +RTest TheTest(_L("t_sqlitetclstarter"));
1.28 +
1.29 +_LIT(KTclExecutableName,"tclsqlite3.exe");
1.30 +_LIT(KTclScriptName,"all.test");
1.31 +
1.32 +_LIT(KStdioConfigFilePath, "C:\\system\\data\\");
1.33 +_LIT(KStdioConfigFile, "C:\\system\\data\\config.ini");
1.34 +
1.35 +_LIT(KLogsFilePath, "C:\\logs\\testexecute\\");
1.36 +
1.37 +RFs theFs;
1.38 +
1.39 +///////////////////////////////////////////////////////////////////////////////////////
1.40 +
1.41 +//
1.42 +// Creates the appropriate stdio ini file to redirect stdio output to a file
1.43 +//
1.44 +
1.45 +void CreateIniFileForStdoutRedirection(void)
1.46 + {
1.47 + TInt err(KErrNone);
1.48 +
1.49 + // check path exists otherwise create
1.50 + if (!BaflUtils::FolderExists(theFs, KStdioConfigFilePath))
1.51 + {
1.52 + err = theFs.MkDirAll(KStdioConfigFilePath);
1.53 + TheTest(err == KErrNone, __LINE__);
1.54 + }
1.55 +
1.56 +
1.57 + // create file
1.58 + RFile file;
1.59 + err = file.Create(theFs, KStdioConfigFile, EFileRead | EFileWrite);
1.60 + TheTest(err == KErrNone, __LINE__);
1.61 +
1.62 + TheTest(KErrNone == file.Write(_L8("[STDIO]\r\n")), __LINE__);
1.63 + TheTest(KErrNone == file.Write(_L8("STDIN = MEDIA1\r\n")), __LINE__);
1.64 + TheTest(KErrNone == file.Write(_L8("STDOUT = MEDIA2\r\n")), __LINE__);
1.65 + TheTest(KErrNone == file.Write(_L8("[MEDIA1]\r\n")), __LINE__);
1.66 + TheTest(KErrNone == file.Write(_L8("type = console\r\n")), __LINE__);
1.67 + TheTest(KErrNone == file.Write(_L8("width = -1\r\n")), __LINE__);
1.68 + TheTest(KErrNone == file.Write(_L8("height = -1\r\n")), __LINE__);
1.69 + TheTest(KErrNone == file.Write(_L8("[MEDIA2]\r\n")), __LINE__);
1.70 + TheTest(KErrNone == file.Write(_L8("type = file\r\n")), __LINE__);
1.71 + TheTest(KErrNone == file.Write(_L8("path = C:\\logs\\testexecute\\t_sqlitetclstarter.htm\r\n")), __LINE__);
1.72 + TheTest(KErrNone == file.Flush(),__LINE__);
1.73 +
1.74 + file.Close();
1.75 +
1.76 + }
1.77 +
1.78 +///////////////////////////////////////////////////////////////////////////////////////
1.79 +
1.80 +//
1.81 +// Deletes the stdio ini file
1.82 +//
1.83 +
1.84 +void DeleteIniFileForStdoutRedirection(void)
1.85 + {
1.86 + TInt err = theFs.Delete(KStdioConfigFile);
1.87 + TheTest(err == KErrNone || err==KErrNotFound || err==KErrPathNotFound, __LINE__);
1.88 + }
1.89 +
1.90 +///////////////////////////////////////////////////////////////////////////////////////
1.91 +
1.92 +//
1.93 +// Ensure the directory for the Logs file exists
1.94 +//
1.95 +
1.96 +void EnsureLogsDirectoryExists(void)
1.97 + {
1.98 + TInt err(KErrNone);
1.99 +
1.100 + // check path exists otherwise create
1.101 + if (!BaflUtils::FolderExists(theFs, KLogsFilePath))
1.102 + {
1.103 + err = theFs.MkDirAll(KLogsFilePath);
1.104 + TheTest(err == KErrNone, __LINE__);
1.105 + }
1.106 + }
1.107 +
1.108 +///////////////////////////////////////////////////////////////////////////////////////
1.109 +
1.110 +//
1.111 +// Start the tcl process with a script
1.112 +//
1.113 +
1.114 +void StartTclProcess(void)
1.115 + {
1.116 + RProcess process;
1.117 + TInt err = process.Create(KTclExecutableName,KTclScriptName);
1.118 + TheTest(err==KErrNone, __LINE__);
1.119 +
1.120 + TRequestStatus processStatus;
1.121 + process.Logon(processStatus);
1.122 +
1.123 + process.Resume();
1.124 +
1.125 + TheTest.Printf(_L("Wait for TCL tests to finish\r\n"));
1.126 +
1.127 + User::WaitForRequest(processStatus);
1.128 +
1.129 + TheTest.Printf(_L("TCL tests finished %d\r\n"),processStatus.Int());
1.130 +
1.131 + TheTest(processStatus.Int() == KErrNone, __LINE__);
1.132 + }
1.133 +
1.134 +///////////////////////////////////////////////////////////////////////////////////////
1.135 +
1.136 +TInt E32Main()
1.137 + {
1.138 + TheTest.Title();
1.139 + TheTest.Start(_L("TCL tests"));
1.140 +
1.141 + CTrapCleanup* tc = CTrapCleanup::New();
1.142 +
1.143 + __UHEAP_MARK;
1.144 +
1.145 + TInt err = theFs.Connect();
1.146 + TheTest(err == KErrNone, __LINE__);
1.147 +
1.148 + DeleteIniFileForStdoutRedirection();
1.149 +
1.150 + CreateIniFileForStdoutRedirection();
1.151 +
1.152 + EnsureLogsDirectoryExists();
1.153 +
1.154 + StartTclProcess();
1.155 +
1.156 + DeleteIniFileForStdoutRedirection();
1.157 +
1.158 + theFs.Close();
1.159 +
1.160 + __UHEAP_MARKEND;
1.161 +
1.162 + TheTest.End();
1.163 + TheTest.Close();
1.164 +
1.165 + delete tc;
1.166 +
1.167 + User::Heap().Check();
1.168 + return KErrNone;
1.169 + }