Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3311175
runtests.sh
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
runtests.sh
View Options
#!/usr/bin/env php
<?php
/*
+-----------------------------------------------------------------------+
|
tests/runtests.sh
|
|
|
|
This file is part of the RoundCube Webmail client
|
|
Copyright
(
C
)
2009
, RoundCube Dev. - Switzerland
|
|
Licensed under the GNU GPL
|
|
|
|
PURPOSE:
|
|
Run-script
for
unit tests based on http://simpletest.org
|
|
All .php files
in
this folder will be treated as tests
|
+-----------------------------------------------------------------------+
|
Author: Thomas Bruederli <roundcube@gmail.com>
|
+-----------------------------------------------------------------------+
$Id
: $
*/
if
(
php_sapi_name
()
!
=
'cli'
)
die
(
"Not in shell mode (php-cli)"
)
;
if
(
!defined
(
'SIMPLETEST'
))
define
(
'SIMPLETEST'
,
'/www/simpletest/'
)
;
if
(
!defined
(
'INSTALL_PATH'
))
define
(
'INSTALL_PATH'
, realpath
(
dirname
(
__FILE__
)
.
'/..'
)
.
'/'
)
;
define
(
'TESTS_DIR'
, dirname
(
__FILE__
)
.
'/'
)
;
define
(
'RCMAIL_CONFIG_DIR'
, TESTS_DIR .
'config'
)
;
require_once
(
SIMPLETEST .
'unit_tester.php'
)
;
require_once
(
SIMPLETEST .
'reporter.php'
)
;
require_once
(
INSTALL_PATH .
'program/include/iniset.php'
)
;
if
(
count
(
$_SERVER
[
'argv'
])
>
1
)
{
$testfiles
=
array
()
;
for
(
$i
=
1
;
$i
< count
(
$_SERVER
[
'argv'
])
;
$i
++
)
$testfiles
[]
=
realpath
(
'./'
.
$_SERVER
[
'argv'
][
$i
])
;
}
else
{
$testfiles
=
glob
(
TESTS_DIR .
'*.php'
)
;
}
$test
=
new TestSuite
(
'RoundCube unit tests'
)
;
$reporter
=
new TextReporter
()
;
foreach
(
$testfiles
as
$fn
)
{
$test
->addTestFile
(
$fn
)
;
}
$test
->run
(
$reporter
)
;
?>
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Apr 9, 12:57 PM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
507027
Default Alt Text
runtests.sh (1 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment