Browse Source

Fix the tests again

remotes/origin/stand-alone-job-executer
Joas Schilling 10 years ago
parent
commit
2c0743c46b
No known key found for this signature in database GPG Key ID: 70A0B324C41C0946
  1. 2
      apps/user_ldap/tests/Integration/Lib/IntegrationTestBackupServer.php
  2. 2
      apps/user_ldap/tests/Integration/Lib/IntegrationTestConnect.php
  3. 2
      apps/user_ldap/tests/Integration/Lib/IntegrationTestCountUsersByLoginName.php
  4. 2
      apps/user_ldap/tests/Integration/Lib/IntegrationTestFetchUsersByLoginName.php
  5. 3
      tests/apps.php

2
apps/user_ldap/tests/Integration/Lib/IntegrationTestBackupServer.php

@ -112,6 +112,6 @@ class IntegrationTestBackupServer extends AbstractIntegrationTest {
}
require_once(__DIR__ . '/../setup-scripts/config.php');
$test = new IntegrationBackupServer($host, $port, $adn, $apwd, $bdn);
$test = new IntegrationTestBackupServer($host, $port, $adn, $apwd, $bdn);
$test->init();
$test->run();

2
apps/user_ldap/tests/Integration/Lib/IntegrationTestConnect.php

@ -160,6 +160,6 @@ class IntegrationTestConnect extends AbstractIntegrationTest {
}
require_once(__DIR__ . '/../setup-scripts/config.php');
$test = new IntegrationConnect($host, $port, $adn, $apwd, $bdn);
$test = new IntegrationTestConnect($host, $port, $adn, $apwd, $bdn);
$test->init();
$test->run();

2
apps/user_ldap/tests/Integration/Lib/IntegrationTestCountUsersByLoginName.php

@ -60,6 +60,6 @@ class IntegrationTestCountUsersByLoginName extends AbstractIntegrationTest {
}
require_once(__DIR__ . '/../setup-scripts/config.php');
$test = new IntegrationTestUserHome($host, $port, $adn, $apwd, $bdn);
$test = new IntegrationTestCountUsersByLoginName($host, $port, $adn, $apwd, $bdn);
$test->init();
$test->run();

2
apps/user_ldap/tests/Integration/Lib/IntegrationTestFetchUsersByLoginName.php

@ -73,6 +73,6 @@ class IntegrationTestFetchUsersByLoginName extends AbstractIntegrationTest {
}
require_once(__DIR__ . '/../setup-scripts/config.php');
$test = new IntegrationTestUserHome($host, $port, $adn, $apwd, $bdn);
$test = new IntegrationTestFetchUsersByLoginName($host, $port, $adn, $apwd, $bdn);
$test->init();
$test->run();

3
tests/apps.php

@ -10,6 +10,9 @@ function loadDirectory($path) {
if (strpos($path, 'integration')) {
return;
}
if (strpos($path, 'Integration')) {
return;
}
if ($dh = opendir($path)) {
while ($name = readdir($dh)) {
if ($name[0] !== '.') {

Loading…
Cancel
Save