Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
9f1c76be
Commit
9f1c76be
authored
12 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
fix running test cases in multiply app dirs
parent
aa8cee1a
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/index.php
+12
-8
12 additions, 8 deletions
tests/index.php
with
12 additions
and
8 deletions
tests/index.php
+
12
−
8
View file @
9f1c76be
...
...
@@ -20,6 +20,8 @@
*
*/
//to run only specific tests, use the test parameter to specify an app or 'lib'. e.g. http://localhost/owncloud/tests/?test=user_external
require_once
'../lib/base.php'
;
require_once
'simpletest/unit_tester.php'
;
require_once
'simpletest/mock_objects.php'
;
...
...
@@ -49,7 +51,7 @@ if(OC::$CLI){
$testSuite
=
new
TestSuite
(
$testSuiteName
);
//load core test cases
loadTests
(
dirname
(
__FILE__
),
$testSuite
,
$test
);
loadTests
(
dirname
(
__FILE__
),
$testSuite
,
$test
,
'lib'
);
//load app test cases
...
...
@@ -59,8 +61,9 @@ loadTests(dirname(__FILE__), $testSuite, $test);
$apps
=
OC_App
::
getEnabledApps
();
foreach
(
$apps
as
$app
){
if
(
is_dir
(
OC
::
$SERVERROOT
.
'/apps/'
.
$app
.
'/tests'
)){
loadTests
(
OC
::
$SERVERROOT
.
'/apps/'
.
$app
.
'/tests'
,
$testSuite
,
$test
);
$testDir
=
OC_App
::
getAppPath
(
$app
)
.
'/tests'
;
if
(
is_dir
(
$testDir
)){
loadTests
(
$testDir
,
$testSuite
,
$test
,
$app
);
}
}
...
...
@@ -70,15 +73,16 @@ if($testSuite->getSize()>0){
}
// helper below
function
loadTests
(
$dir
,
$testSuite
,
$test
){
function
loadTests
(
$dir
,
$testSuite
,
$test
,
$app
){
$root
=
(
$app
==
'lib'
)
?
OC
::
$SERVERROOT
.
'/tests/lib/'
:
OC_App
::
getAppPath
(
$app
)
.
'/tests/'
;
if
(
$dh
=
opendir
(
$dir
)){
while
(
$name
=
readdir
(
$dh
)){
if
(
$name
[
0
]
!=
'.'
){
//no hidden files, '.' or '..'
$file
=
$dir
.
'/'
.
$name
;
if
(
is_dir
(
$file
)){
loadTests
(
$file
,
$testSuite
,
$test
);
loadTests
(
$file
,
$testSuite
,
$test
,
$app
);
}
elseif
(
substr
(
$file
,
-
4
)
==
'.php'
and
$file
!=
__FILE__
){
$name
=
getTestName
(
$file
);
$name
=
$app
.
'/'
.
getTestName
(
$file
,
$root
);
if
(
$test
===
false
or
$test
==
$name
or
substr
(
$name
,
0
,
strlen
(
$test
))
==
$test
){
$extractor
=
new
SimpleFileLoader
();
$loadedSuite
=
$extractor
->
load
(
$file
);
...
...
@@ -91,8 +95,8 @@ function loadTests($dir,$testSuite, $test){
}
}
function
getTestName
(
$file
){
function
getTestName
(
$file
,
$root
){
// //TODO: get better test names
$file
=
substr
(
$file
,
strlen
(
OC
::
$SERVERROOT
));
$file
=
substr
(
$file
,
strlen
(
$root
));
return
substr
(
$file
,
0
,
-
4
);
//strip .php
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment