Update contrib.
1 # Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
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.
19 use lib $FindBin::Bin;
24 my $platform = "winscw";
27 # ------------------------------------------------------------------------------------------------------------------------------------- #
28 # log-id wins/winscw executable test-context wsini selection #of screens #
29 # ------------------------------------------------------------------------------------------------------------------------------------- #
30 &RunWservTest("normal", $platform, "auto", "autou.cfg", "wservu.ini", $screens);
31 &RunWservTest("sparse", $platform, "auto", "autou_sparse.cfg", "wservu_sparse.ini", $screens);
32 &RunWservTest("sparse_nodefault", $platform, "auto", "autou_sparse_nodefault.cfg", "wservu_sparse_nodefault.ini", $screens);
44 my $epocDir = "\\epoc32\\release\\$plat\\udeb\\";
45 my $epocEmulator = $epocDir."epoc.exe";
47 my $wsini = $epocDir."z\\system\\data\\wsini.ini";
48 my $wsiniBackup = $wsini.".bak";
50 my $epocFile = "\\epoc32\\data\\epoc.ini";
51 my $epocBackup = $epocFile.".bak";
53 # backup original epoc.ini and wsini.ini
54 &DoCopy($epocFile, $epocBackup) if (!-f $epocBackup);
55 &DoCopy($wsini, $wsiniBackup) if (!-f $wsiniBackup);
57 print "Mnt install\n";
59 &StartMntCommand($wservDir, $plat, $wservu, $cfg);
61 $exeFile = $epocDir.$exe.".exe";
64 $epocEmulator = $exeFile;
68 &AddShellCmd($wsini, $exe);
73 &CreateEpocMultiScreen($epocFile, $wsini, $nScreens);
76 my $job = Win32::Job->new;
77 if (!$job) { &ErrorReport(); next; }
79 print "Running wserv test $session...";
80 my $spawned = $job->spawn($epocEmulator, 'epoc.exe');
81 if (!$spawned) { &ErrorReport(); next; }
84 my $ok = $job->run($timeout * 60);
85 warn "WARNING: Process \"$epocEmulator\" killed due to timeout.\n" if (!$ok);
90 my $logDir = "\\epoc32\\$plat\\c\\data\\";
91 my $wservLog = $logDir."wserv.log";
92 my $logBackup = $logDir."wserv_$session.log";
93 &DoCopy($wservLog, $logBackup);
96 # restore original epoc.ini and wsini.ini
97 &DoCopy($wsiniBackup, $wsini);
98 &DoCopy($epocBackup, $epocFile);
101 system("del /f /q \\epoc32\\release\\$plat\\udeb\\z\\system\\data\\auto.cfg");
104 sub StartMntCommand()
106 my $wservDir = shift;
111 &DoCopy("$wservDir\\..\\group\\system.ini", "\\epoc32\\data\\");
112 &MntDoInstall($wservDir, $plat, 'udeb', $wservu, $autou);
113 &MntDoInstall($wservDir, $plat, 'urel', $wservu, $autou);
118 my $wservDir = shift;
120 my $UrelUdeb = shift;
121 my $whatFile = shift;
124 my $dataDir = "\\epoc32\\release\\$plat\\$UrelUdeb\\z\\system\\data\\";
126 &DoCopy("$wservDir\\..\\group\\$whatFile", $dataDir.'wsini.ini');
127 &DoCopy("$wservDir\\..\\group\\$autoCfg", $dataDir.'auto.cfg');
135 my $string = &ascii_to_utf16("SHELLCMD $cmd");
137 &Write_UTF16_Newline($file);
139 open(FILE, ">>$file") or warn "WARNING: Could not open file: $!\n";
143 &Write_UTF16_Newline($file);
146 sub Write_UTF16_Newline
150 open(BIN, ">>$file") or warn "WARNING: Could not open \"$file\": $!\n";
152 sysseek BIN, 0, SEEK_END;
153 syswrite BIN, "\x0D\x00\x0A\x00" or warn "WARNING: Could not write to file\n";
157 # Function that accepts an ASCII string and returns the same string in UTF16
159 my $utf16_string = "";
160 my $ascii_string = shift;
161 my $lengthofstring = length($ascii_string);
163 for (my $count=1; $count<=$lengthofstring; $count++)
165 my $char = substr($ascii_string,$count-1,1);
166 $utf16_string .= $char;
167 $utf16_string .= "\x00";
170 return $utf16_string;
173 sub ProduceWServResult()
177 $handleFileTable = shift;
178 $wservTestResStatistic = shift;
182 $wservTestResStatistic = "";
187 open TEMPLOGFILE, ">>\\work.txt";
188 print TEMPLOGFILE "Start ProduceWServResult: plat $plat,subDir $subDir,handleFileTable $handleFileTable,background $background\n";
191 $logFile = "$ENV{EPOCROOT}epoc32\\$plat\\c\\data\\WSERV.LOG";
193 open LOGFILEWSERV, "$logFile" or $logWSFileRes = -1;
194 $CurWinServTestNumber = 0;
195 $CurWinServTestName = "";
196 $wservTestDuration = 0;
197 $wservFullTestDuration = 0;
199 print "result ws : $logWSFileRes\n";
201 $fileLogWServDest = "$subDir\\1_wserv.htm";
202 open FILELOGDEST, ">$fileLogWServDest";# or die "Can't open file: $fileLogWServDest! \n";
203 print FILELOGDEST "<pre>";
205 while($_ = <LOGFILEWSERV>)
207 if(/\s(\d+\.\d\d\d)/)
209 $wservTestDuration = $1;
213 $wservTestDuration = 0;
215 $wservFullTestDuration += $wservTestDuration;
217 if(/AUTO New Test: /)
219 $wservFullTestDuration = $wservTestDuration;
221 if($CurWinServTestNumber != 0) #previos test was inconclusive
224 $result = "INCONCLUSIVE";
225 OutputWServerTestResultToTable(FILERES, $background, $result,
226 $CurWinServTestName, $fileLogWServDest, $wservFullTestDuration);
227 $background = !$background;
228 print FILELOGDEST "</pre>";
232 if(/Test (\d+),(.+\w)(\s+\d\.)/)
234 $CurWinServTestNumber = $1;
235 $CurWinServTestName = $2;
240 $CurWinServTestNumber = $1;
241 $CurWinServTestName = $2;
245 if($CurWinServTestNumber > 1)
247 $fileLogWServDest = "$subDir\\$CurWinServTestNumber" . "_wserv.htm";
248 open FILELOGDEST, ">$fileLogWServDest";# or die "Can't open file: $fileLogWServDest! \n";
249 print FILELOGDEST "<pre>";
252 elsif(/AUTO TEST RESULT: /)
254 $CurWinServTestNumber = 0;
256 /AUTO TEST RESULT: (\w+)/;
258 if($TestResult eq "PASS")
261 $result = $TestResult;
264 elsif($TestResult eq "FAIL")
267 $result = $TestResult;
277 if($wservFullTestDuration =~ /(\d+\.\d{0,3})/)
279 $wservFullTestDuration = $1;
282 #output result to the file
283 OutputWServerTestResultToTable(FILERES, $background, $result,
284 $CurWinServTestName, $fileLogWServDest, $wservFullTestDuration);
285 $background = !$background;
286 print FILELOGDEST "<FONT COLOR=\"$col\">$_</FONT><br>";
288 print FILELOGDEST "</pre>";
291 if(/AUTO Testing Complete, (.*)(\d+\.\d{0,3})/)
293 $wservTestResStatistic = $1;
298 print FILELOGDEST "<FONT COLOR=\"#ff0000\">$_</FONT><br>";
302 print FILELOGDEST "$_<br>";
304 } #while($_ = <LOGFILEWSERV>)
306 #check if a test is inconclusive
307 if($CurWinServTestNumber != 0)
309 $CurWinServTestNumber = 0;
310 $wservFullTestDuration = $wservTestDuration;
312 $wservTestResStatistic = "Inconclusive";
313 $result = "INCONCLUSIVE";
316 #output result to the file
317 OutputWServerTestResultToTable(FILERES, $background, $result,
318 $CurWinServTestName, $fileLogWServDest, $wservFullTestDuration);
319 $background = !$background;
321 print FILELOGDEST "</pre>";
329 sub OutputWServerTestResultToTable()
332 my $background = shift;
334 my $TestName = shift;
335 my $WServDest = shift;
336 my $duration = shift;
340 print $handle "<TR BGCOLOR='#ECECE4'><TD WIDTH=\"33%\" VALIGN=\"TOP\">\n";
344 print $handle "<TR><TD WIDTH=\"25%\" VALIGN=\"TOP\">\n";
347 print $handle "<FONT SIZE=2><P><a href=\"$WServDest\">$TestName</FONT></TD>\n";
349 print $handle "<TD WIDTH=\"25%\" VALIGN=\"TOP\">\n";
350 print $handle "<FONT SIZE=2><P>$duration</FONT></TD>\n";
352 print $handle "<TD WIDTH=\"25%\" VALIGN=\"TOP\">\n";
353 print $handle "<FONT SIZE=2><P>$result</FONT></TD>\n";
354 print $handle "</TR>\n";
362 my $out = `copy /y \"$source\" \"$target\" 2>&1`;
364 if ($? && -e $target && $out =~ /Access is denied./)
366 # Target exists and is probably read only, so attempt an xcopy
367 `xcopy /y /i /r /e \"$source\" \"$target\" 2>&1`;
370 warn "WARNING: Could not copy \"$source\" to \"$target\"\n" if $?;
373 sub CreateEpocMultiScreen()
375 my $epocFile = shift;
376 my $wsiniFile = shift;
377 my $nScreens = shift;
380 open(FILE, ">>$epocFile") or warn "WARNING: Could not open file: $!\n";
381 for (my $i=1; $i<$nScreens; $i++)
383 print FILE "_NewScreen_\n";
384 print FILE "ScreenWidth 640\n";
385 print FILE "ScreenHeight 240\n";
390 &AppendLineToFile($wsiniFile, "[SCREEN0]");
391 for (my $i=1; $i<$nScreens; $i++)
393 &AppendLineToFile($wsiniFile, "[SCREEN$i]");
397 sub AppendLineToFile()
402 my $string = &ascii_to_utf16($line);
404 &Write_UTF16_Newline($file);
406 open(FILE, ">>$file") or warn "WARNING: Could not open file: $!\n";
410 &Write_UTF16_Newline($file);