Browse Source

Make root tests extend the \Test\TestCase

tags/v8.0.0alpha1
Joas Schilling 9 years ago
parent
commit
cb3a598cdb
46 changed files with 160 additions and 83 deletions
  1. 4
    2
      tests/lib/activitymanager.php
  2. 1
    1
      tests/lib/api.php
  3. 1
    1
      tests/lib/app.php
  4. 5
    1
      tests/lib/appconfig.php
  5. 1
    1
      tests/lib/archive.php
  6. 3
    2
      tests/lib/archive/tar.php
  7. 8
    2
      tests/lib/archive/zip.php
  8. 3
    2
      tests/lib/autoloader.php
  9. 5
    3
      tests/lib/avatar.php
  10. 3
    2
      tests/lib/cache.php
  11. 5
    3
      tests/lib/cache/file.php
  12. 4
    2
      tests/lib/cache/usercache.php
  13. 6
    3
      tests/lib/config.php
  14. 7
    3
      tests/lib/db.php
  15. 7
    3
      tests/lib/dbschema.php
  16. 1
    1
      tests/lib/errorHandler.php
  17. 1
    1
      tests/lib/geo.php
  18. 1
    1
      tests/lib/helper.php
  19. 4
    2
      tests/lib/httphelper.php
  20. 3
    1
      tests/lib/image.php
  21. 7
    3
      tests/lib/installer.php
  22. 1
    1
      tests/lib/l10n.php
  23. 2
    2
      tests/lib/largefilehelper.php
  24. 2
    2
      tests/lib/largefilehelpergetfilesize.php
  25. 4
    2
      tests/lib/logger.php
  26. 3
    1
      tests/lib/mail.php
  27. 2
    2
      tests/lib/migrate.php
  28. 3
    1
      tests/lib/naturalsort.php
  29. 5
    1
      tests/lib/preferences-singleton.php
  30. 1
    1
      tests/lib/preferences.php
  31. 1
    1
      tests/lib/preview.php
  32. 1
    1
      tests/lib/repair.php
  33. 7
    3
      tests/lib/request.php
  34. 4
    2
      tests/lib/setup.php
  35. 1
    1
      tests/lib/streamwrappers.php
  36. 6
    3
      tests/lib/tags.php
  37. 4
    2
      tests/lib/template.php
  38. 8
    4
      tests/lib/templatelayout.php
  39. 6
    3
      tests/lib/tempmanager.php
  40. 1
    1
      tests/lib/updater.php
  41. 1
    1
      tests/lib/urlgenerator.php
  42. 3
    1
      tests/lib/user.php
  43. 1
    1
      tests/lib/util.php
  44. 6
    3
      tests/lib/utilcheckserver.php
  45. 4
    2
      tests/lib/vobject.php
  46. 3
    1
      tests/settings/controller/mailsettingscontrollertest.php

+ 4
- 2
tests/lib/activitymanager.php View File

@@ -8,12 +8,14 @@
*
*/

class Test_ActivityManager extends PHPUnit_Framework_TestCase {
class Test_ActivityManager extends \Test\TestCase {

/** @var \OC\ActivityManager */
private $activityManager;

public function setUp() {
protected function setUp() {
parent::setUp();

$this->activityManager = new \OC\ActivityManager();
$this->activityManager->registerExtension(function() {
return new NoOpExtension();

+ 1
- 1
tests/lib/api.php View File

@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/

class Test_API extends PHPUnit_Framework_TestCase {
class Test_API extends \Test\TestCase {

// Helps build a response variable


+ 1
- 1
tests/lib/app.php View File

@@ -7,7 +7,7 @@
* See the COPYING-README file.
*/

class Test_App extends PHPUnit_Framework_TestCase {
class Test_App extends \Test\TestCase {

private $oldAppConfigService;


+ 5
- 1
tests/lib/appconfig.php View File

@@ -7,8 +7,10 @@
* See the COPYING-README file.
*/

class Test_Appconfig extends PHPUnit_Framework_TestCase {
class Test_Appconfig extends \Test\TestCase {
public static function setUpBeforeClass() {
parent::setUpBeforeClass();

$query = \OC_DB::prepare('INSERT INTO `*PREFIX*appconfig` VALUES (?, ?, ?)');

$query->execute(array('testapp', 'enabled', 'true'));
@@ -33,6 +35,8 @@ class Test_Appconfig extends PHPUnit_Framework_TestCase {
$query->execute(array('someapp'));
$query->execute(array('123456'));
$query->execute(array('anotherapp'));

parent::tearDownAfterClass();
}

public function testGetApps() {

+ 1
- 1
tests/lib/archive.php View File

@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/

abstract class Test_Archive extends PHPUnit_Framework_TestCase {
abstract class Test_Archive extends \Test\TestCase {
/**
* @var OC_Archive
*/

+ 3
- 2
tests/lib/archive/tar.php View File

@@ -7,11 +7,12 @@
*/

class Test_Archive_TAR extends Test_Archive {
public function setUp() {
protected function setUp() {
parent::setUp();

if (OC_Util::runningOnWindows()) {
$this->markTestSkipped('[Windows] tar archives are not supported on Windows');
}
parent::setUp();
}

protected function getExisting() {

+ 8
- 2
tests/lib/archive/zip.php View File

@@ -6,8 +6,15 @@
* See the COPYING-README file.
*/

if (!OC_Util::runningOnWindows()) {
class Test_Archive_ZIP extends Test_Archive {
protected function setUp() {
parent::setUp();

if (OC_Util::runningOnWindows()) {
$this->markTestSkipped('[Windows] ');
}
}

protected function getExisting() {
$dir = OC::$SERVERROOT . '/tests/data';
return new OC_Archive_ZIP($dir . '/data.zip');
@@ -17,4 +24,3 @@ class Test_Archive_ZIP extends Test_Archive {
return new OC_Archive_ZIP(OCP\Files::tmpFile('.zip'));
}
}
}

+ 3
- 2
tests/lib/autoloader.php View File

@@ -8,13 +8,14 @@

namespace Test;

class AutoLoader extends \PHPUnit_Framework_TestCase {
class AutoLoader extends TestCase {
/**
* @var \OC\Autoloader $loader
*/
private $loader;

public function setUp() {
protected function setUp() {
parent::setUp();
$this->loader = new \OC\AutoLoader();
}


+ 5
- 3
tests/lib/avatar.php View File

@@ -6,12 +6,14 @@
* later.
* See the COPYING-README file.
*/
class Test_Avatar extends PHPUnit_Framework_TestCase {
class Test_Avatar extends \Test\TestCase {

private $user;

public function setUp() {
$this->user = uniqid();
protected function setUp() {
parent::setUp();

$this->user = $this->getUniqueID();
$storage = new \OC\Files\Storage\Temporary(array());
\OC\Files\Filesystem::mount($storage, array(), '/' . $this->user . '/');
}

+ 3
- 2
tests/lib/cache.php View File

@@ -6,16 +6,17 @@
* See the COPYING-README file.
*/

abstract class Test_Cache extends PHPUnit_Framework_TestCase {
abstract class Test_Cache extends \Test\TestCase {
/**
* @var \OC\Cache cache;
*/
protected $instance;

public function tearDown() {
protected function tearDown() {
if($this->instance) {
$this->instance->clear();
}
parent::tearDown();
}

function testSimple() {

+ 5
- 3
tests/lib/cache/file.php View File

@@ -33,8 +33,10 @@ class FileCache extends \Test_Cache {
function skip() {
//$this->skipUnless(OC_User::isLoggedIn());
}
public function setUp() {

protected function setUp() {
parent::setUp();

//clear all proxies and hooks so we can do clean testing
\OC_FileProxy::clearProxies();
\OC_Hook::clear('OC_Filesystem');
@@ -70,7 +72,7 @@ class FileCache extends \Test_Cache {
$this->instance=new \OC\Cache\File();
}

public function tearDown() {
protected function tearDown() {
\OC_User::setUserId($this->user);
\OC_Config::setValue('cachedirectory', $this->datadir);


+ 4
- 2
tests/lib/cache/usercache.php View File

@@ -30,7 +30,9 @@ class UserCache extends \Test_Cache {
/** @var \OC\Files\Storage\Storage */
private $storage;

public function setUp() {
protected function setUp() {
parent::setUp();

//clear all proxies and hooks so we can do clean testing
\OC_FileProxy::clearProxies();
\OC_Hook::clear('OC_Filesystem');
@@ -66,7 +68,7 @@ class UserCache extends \Test_Cache {
$this->instance=new \OC\Cache\UserCache();
}

public function tearDown() {
protected function tearDown() {
\OC_User::setUserId($this->user);
\OC_Config::setValue('cachedirectory', $this->datadir);


+ 6
- 3
tests/lib/config.php View File

@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/

class Test_Config extends PHPUnit_Framework_TestCase {
class Test_Config extends \Test\TestCase {
const TESTCONTENT = '<?php $CONFIG=array("foo"=>"bar", "beers" => array("Appenzeller", "Guinness", "Kölsch"), "alcohol_free" => false);';

/** @var array */
@@ -18,15 +18,18 @@ class Test_Config extends PHPUnit_Framework_TestCase {
/** @var string */
private $randomTmpDir;

function setUp() {
protected function setUp() {
parent::setUp();

$this->randomTmpDir = \OC_Helper::tmpFolder();
$this->configFile = $this->randomTmpDir.'testconfig.php';
file_put_contents($this->configFile, self::TESTCONTENT);
$this->config = new OC\Config($this->randomTmpDir, 'testconfig.php');
}

public function tearDown() {
protected function tearDown() {
unlink($this->configFile);
parent::tearDown();
}

public function testGetKeys() {

+ 7
- 3
tests/lib/db.php View File

@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/

class Test_DB extends PHPUnit_Framework_TestCase {
class Test_DB extends \Test\TestCase {
protected $backupGlobals = FALSE;

protected static $schema_file = 'static://test_db_scheme';
@@ -32,7 +32,9 @@ class Test_DB extends PHPUnit_Framework_TestCase {
*/
private $table4;

public function setUp() {
protected function setUp() {
parent::setUp();

$dbfile = OC::$SERVERROOT.'/tests/data/db_structure.xml';

$r = '_'.OC_Util::generateRandomBytes(4).'_';
@@ -48,9 +50,11 @@ class Test_DB extends PHPUnit_Framework_TestCase {
$this->table4 = $this->test_prefix.'decimal';
}

public function tearDown() {
protected function tearDown() {
OC_DB::removeDBStructure(self::$schema_file);
unlink(self::$schema_file);

parent::tearDown();
}

public function testQuotes() {

+ 7
- 3
tests/lib/dbschema.php View File

@@ -9,13 +9,15 @@

use OCP\Security\ISecureRandom;

class Test_DBSchema extends PHPUnit_Framework_TestCase {
class Test_DBSchema extends \Test\TestCase {
protected $schema_file = 'static://test_db_scheme';
protected $schema_file2 = 'static://test_db_scheme2';
protected $table1;
protected $table2;

public function setUp() {
protected function setUp() {
parent::setUp();

$dbfile = OC::$SERVERROOT.'/tests/data/db_structure.xml';
$dbfile2 = OC::$SERVERROOT.'/tests/data/db_structure2.xml';

@@ -32,9 +34,11 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase {
$this->table2 = $r.'cntcts_cards';
}

public function tearDown() {
protected function tearDown() {
unlink($this->schema_file);
unlink($this->schema_file2);

parent::tearDown();
}

// everything in one test, they depend on each other

+ 1
- 1
tests/lib/errorHandler.php View File

@@ -20,7 +20,7 @@
*
*/

class Test_ErrorHandler extends \PHPUnit_Framework_TestCase {
class Test_ErrorHandler extends \Test\TestCase {

/**
* provide username, password combinations for testRemovePassword

+ 1
- 1
tests/lib/geo.php View File

@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/

class Test_Geo extends PHPUnit_Framework_TestCase {
class Test_Geo extends \Test\TestCase {
/**
* @medium

+ 1
- 1
tests/lib/helper.php View File

@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/

class Test_Helper extends PHPUnit_Framework_TestCase {
class Test_Helper extends \Test\TestCase {

/**
* @dataProvider humanFileSizeProvider

+ 4
- 2
tests/lib/httphelper.php View File

@@ -6,14 +6,16 @@
* See the COPYING-README file.
*/

class TestHTTPHelper extends \PHPUnit_Framework_TestCase {
class TestHTTPHelper extends \Test\TestCase {

/** @var \OC\AllConfig*/
private $config;
/** @var \OC\HTTPHelper */
private $httpHelperMock;

function setUp() {
protected function setUp() {
parent::setUp();

$this->config = $this->getMockBuilder('\OC\AllConfig')
->disableOriginalConstructor()->getMock();
$this->httpHelperMock = $this->getMockBuilder('\OC\HTTPHelper')

+ 3
- 1
tests/lib/image.php View File

@@ -6,10 +6,12 @@
* See the COPYING-README file.
*/

class Test_Image extends PHPUnit_Framework_TestCase {
class Test_Image extends \Test\TestCase {
public static function tearDownAfterClass() {
@unlink(OC::$SERVERROOT.'/tests/data/testimage2.png');
@unlink(OC::$SERVERROOT.'/tests/data/testimage2.jpg');

parent::tearDownAfterClass();
}

public function testGetMimeTypeForFile() {

+ 7
- 3
tests/lib/installer.php View File

@@ -6,20 +6,24 @@
* See the COPYING-README file.
*/

class Test_Installer extends PHPUnit_Framework_TestCase {
class Test_Installer extends \Test\TestCase {

private static $appid = 'testapp';
private $appstore;

public function setUp() {
protected function setUp() {
parent::setUp();

$this->appstore = OC_Config::getValue('appstoreenabled', true);
OC_Config::setValue('appstoreenabled', true);
OC_Installer::removeApp(self::$appid);
}

public function tearDown() {
protected function tearDown() {
OC_Installer::removeApp(self::$appid);
OC_Config::setValue('appstoreenabled', $this->appstore);

parent::tearDown();
}

public function testInstallApp() {

+ 1
- 1
tests/lib/l10n.php View File

@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/

class Test_L10n extends PHPUnit_Framework_TestCase {
class Test_L10n extends \Test\TestCase {

public function testGermanPluralTranslations() {
$l = new OC_L10N('test');

+ 2
- 2
tests/lib/largefilehelper.php View File

@@ -8,10 +8,10 @@

namespace Test;

class LargeFileHelper extends \PHPUnit_Framework_TestCase {
class LargeFileHelper extends TestCase {
protected $helper;

public function setUp() {
protected function setUp() {
parent::setUp();
$this->helper = new \OC\LargeFileHelper;
}

+ 2
- 2
tests/lib/largefilehelpergetfilesize.php View File

@@ -12,11 +12,11 @@ namespace Test;
* Tests whether LargeFileHelper is able to determine file size at all.
* Large files are not considered yet.
*/
class LargeFileHelperGetFileSize extends \PHPUnit_Framework_TestCase {
class LargeFileHelperGetFileSize extends TestCase {
/** @var \OC\LargeFileHelper */
protected $helper;

public function setUp() {
protected function setUp() {
parent::setUp();
$this->helper = new \OC\LargeFileHelper();
}

+ 4
- 2
tests/lib/logger.php View File

@@ -10,14 +10,16 @@ namespace Test;

use OC\Log;

class Logger extends \PHPUnit_Framework_TestCase {
class Logger extends TestCase {
/**
* @var \OCP\ILogger
*/
private $logger;
static private $logs = array();

public function setUp() {
protected function setUp() {
parent::setUp();

self::$logs = array();
$this->logger = new Log('Test\Logger');
}

+ 3
- 1
tests/lib/mail.php View File

@@ -6,10 +6,12 @@
* See the COPYING-README file.
*/

class Test_Mail extends PHPUnit_Framework_TestCase {
class Test_Mail extends \Test\TestCase {

protected function setUp()
{
parent::setUp();

if (!function_exists('idn_to_ascii')) {
$this->markTestSkipped(
'The intl extension is not available.'

+ 2
- 2
tests/lib/migrate.php View File

@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/

class Test_Migrate extends PHPUnit_Framework_TestCase {
class Test_Migrate extends \Test\TestCase {

public $users;
public $tmpfiles = array();
@@ -38,7 +38,7 @@ class Test_Migrate extends PHPUnit_Framework_TestCase {
* @return string the test users id
*/
public function generateUser() {
$username = uniqid();
$username = $this->getUniqueID();
\OC_User::createUser($username, 'password');
\OC_Util::tearDownFS();
\OC_User::setUserId('');

+ 3
- 1
tests/lib/naturalsort.php View File

@@ -6,9 +6,11 @@
* See the COPYING-README file.
*/

class Test_NaturalSort extends PHPUnit_Framework_TestCase {
class Test_NaturalSort extends \Test\TestCase {

public function setUp() {
parent::setUp();

if(!class_exists('Collator')) {
$this->markTestSkipped('The intl module is not available, natural sorting will not work as expected.');
return;

+ 5
- 1
tests/lib/preferences-singleton.php View File

@@ -7,8 +7,10 @@
* See the COPYING-README file.
*/

class Test_Preferences extends PHPUnit_Framework_TestCase {
class Test_Preferences extends \Test\TestCase {
public static function setUpBeforeClass() {
parent::setUpBeforeClass();

$query = \OC_DB::prepare('INSERT INTO `*PREFIX*preferences` VALUES(?, ?, ?, ?)');
$query->execute(array("Someuser", "someapp", "somekey", "somevalue"));

@@ -34,6 +36,8 @@ class Test_Preferences extends PHPUnit_Framework_TestCase {
$query->execute(array('Someuser'));
$query->execute(array('Anotheruser'));
$query->execute(array('Anuser'));

parent::tearDownAfterClass();
}

public function testGetUsers() {

+ 1
- 1
tests/lib/preferences.php View File

@@ -7,7 +7,7 @@
* See the COPYING-README file.
*/

class Test_Preferences_Object extends PHPUnit_Framework_TestCase {
class Test_Preferences_Object extends \Test\TestCase {
public function testGetUsers()
{
$statementMock = $this->getMock('\Doctrine\DBAL\Statement', array(), array(), '', false);

+ 1
- 1
tests/lib/preview.php View File

@@ -8,7 +8,7 @@

namespace Test;

class Preview extends \Test\TestCase {
class Preview extends TestCase {

/**
* @var string

+ 1
- 1
tests/lib/repair.php View File

@@ -29,7 +29,7 @@ class TestRepairStep extends BasicEmitter implements \OC\RepairStep{
}
}

class Test_Repair extends PHPUnit_Framework_TestCase {
class Test_Repair extends \Test\TestCase {
public function testRunRepairStep() {
$output = array();


+ 7
- 3
tests/lib/request.php View File

@@ -6,19 +6,23 @@
* See the COPYING-README file.
*/

class Test_Request extends PHPUnit_Framework_TestCase {
class Test_Request extends \Test\TestCase {

protected function setUp() {
parent::setUp();

public function setUp() {
OC::$server->getConfig()->setSystemValue('overwritewebroot', '/domain.tld/ownCloud');

OC::$server->getConfig()->setSystemValue('trusted_proxies', array());
OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array());
}

public function tearDown() {
protected function tearDown() {
OC::$server->getConfig()->setSystemValue('overwritewebroot', '');
OC::$server->getConfig()->setSystemValue('trusted_proxies', array());
OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array());

parent::tearDown();
}

public function testScriptNameOverWrite() {

+ 4
- 2
tests/lib/setup.php View File

@@ -8,14 +8,16 @@

use OCP\IConfig;

class Test_OC_Setup extends PHPUnit_Framework_TestCase {
class Test_OC_Setup extends \Test\TestCase {

/** @var IConfig */
protected $config;
/** @var \OC_Setup */
protected $setupClass;

public function setUp() {
protected function setUp() {
parent::setUp();

$this->config = $this->getMock('\OCP\IConfig');
$this->setupClass = $this->getMock('\OC_Setup', array('class_exists', 'is_callable'), array($this->config));
}

+ 1
- 1
tests/lib/streamwrappers.php View File

@@ -20,7 +20,7 @@
*
*/

class Test_StreamWrappers extends PHPUnit_Framework_TestCase {
class Test_StreamWrappers extends \Test\TestCase {
public function testFakeDir() {
$items = array('foo', 'bar');
\OC\Files\Stream\Dir::register('test', $items);

+ 6
- 3
tests/lib/tags.php View File

@@ -20,13 +20,14 @@
*
*/

class Test_Tags extends PHPUnit_Framework_TestCase {
class Test_Tags extends \Test\TestCase {

protected $objectType;
protected $user;
protected $backupGlobals = FALSE;

public function setUp() {
protected function setUp() {
parent::setUp();

OC_User::clearBackends();
OC_User::useBackend('dummy');
@@ -39,9 +40,11 @@ class Test_Tags extends PHPUnit_Framework_TestCase {

}

public function tearDown() {
protected function tearDown() {
//$query = OC_DB::prepare('DELETE FROM `*PREFIX*vcategories` WHERE `item_type` = ?');
//$query->execute(array('test'));

parent::tearDown();
}

public function testInstantiateWithDefaults() {

+ 4
- 2
tests/lib/template.php View File

@@ -20,9 +20,11 @@
*
*/

class Test_TemplateFunctions extends PHPUnit_Framework_TestCase {
class Test_TemplateFunctions extends \Test\TestCase {

protected function setUp() {
parent::setUp();

public function setUp() {
$loader = new \OC\Autoloader();
$loader->load('OC_Template');
}

+ 8
- 4
tests/lib/templatelayout.php View File

@@ -11,23 +11,27 @@ namespace OC\Test;
/**
* @package OC\Test
*/
class OC_TemplateLayout extends \PHPUnit_Framework_TestCase {
class OC_TemplateLayout extends \Test\TestCase {

private $oldServerUri;
private $oldServerURI;
private $oldScriptName;

public function setUp() {
protected function setUp() {
parent::setUp();

$this->oldServerURI = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : null;
$this->oldScriptName = $_SERVER['SCRIPT_NAME'];
}

public function tearDown() {
protected function tearDown() {
if ($this->oldServerURI === null) {
unset($_SERVER['REQUEST_URI']);
} else {
$_SERVER['REQUEST_URI'] = $this->oldServerURI;
}
$_SERVER['SCRIPT_NAME'] = $this->oldScriptName;

parent::tearDown();
}

/**

+ 6
- 3
tests/lib/tempmanager.php View File

@@ -21,18 +21,21 @@ class NullLogger extends Log {
}
}

class TempManager extends \PHPUnit_Framework_TestCase {
class TempManager extends \Test\TestCase {
protected $baseDir;

public function setUp() {
protected function setUp() {
parent::setUp();

$this->baseDir = get_temp_dir() . '/oc_tmp_test';
if (!is_dir($this->baseDir)) {
mkdir($this->baseDir);
}
}

public function tearDown() {
protected function tearDown() {
\OC_Helper::rmdirr($this->baseDir);
parent::tearDown();
}

/**

+ 1
- 1
tests/lib/updater.php View File

@@ -8,7 +8,7 @@

namespace OC;

class UpdaterTest extends \PHPUnit_Framework_TestCase {
class UpdaterTest extends \Test\TestCase {

public function testVersionCompatbility() {
return array(

+ 1
- 1
tests/lib/urlgenerator.php View File

@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/

class Test_Urlgenerator extends PHPUnit_Framework_TestCase {
class Test_Urlgenerator extends \Test\TestCase {

/**
* @small

+ 3
- 1
tests/lib/user.php View File

@@ -9,13 +9,15 @@

namespace Test;

class User extends \PHPUnit_Framework_TestCase {
class User extends TestCase {
/**
* @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend
*/
private $backend;
protected function setUp(){
parent::setUp();

$this->backend = $this->getMock('\OC_User_Dummy');
$manager = \OC_User::getManager();
$manager->registerBackend($this->backend);

+ 1
- 1
tests/lib/util.php View File

@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/

class Test_Util extends PHPUnit_Framework_TestCase {
class Test_Util extends \Test\TestCase {
public function testGetVersion() {
$version = \OC_Util::getVersion();
$this->assertTrue(is_array($version));

+ 6
- 3
tests/lib/utilcheckserver.php View File

@@ -9,7 +9,7 @@
/**
* Tests for server check functions
*/
class Test_Util_CheckServer extends PHPUnit_Framework_TestCase {
class Test_Util_CheckServer extends \Test\TestCase {

private $datadir;

@@ -32,16 +32,19 @@ class Test_Util_CheckServer extends PHPUnit_Framework_TestCase {
return $config;
}

public function setUp() {
protected function setUp() {
parent::setUp();

$this->datadir = \OC_Helper::tmpFolder();

file_put_contents($this->datadir . '/.ocdata', '');
\OC::$server->getSession()->set('checkServer_succeeded', false);
}

public function tearDown() {
protected function tearDown() {
// clean up
@unlink($this->datadir . '/.ocdata');
parent::tearDown();
}

/**

+ 4
- 2
tests/lib/vobject.php View File

@@ -6,9 +6,11 @@
* See the COPYING-README file.
*/

class Test_VObject extends PHPUnit_Framework_TestCase {
class Test_VObject extends \Test\TestCase {

protected function setUp() {
parent::setUp();

public function setUp() {
Sabre\VObject\Property::$classMap['SUMMARY'] = 'OC\VObject\StringProperty';
Sabre\VObject\Property::$classMap['ORG'] = 'OC\VObject\CompoundProperty';
}

+ 3
- 1
tests/settings/controller/mailsettingscontrollertest.php View File

@@ -14,11 +14,13 @@ use \OC\Settings\Application;
/**
* @package OC\Settings\Controller
*/
class MailSettingsControllerTest extends \PHPUnit_Framework_TestCase {
class MailSettingsControllerTest extends \Test\TestCase {

private $container;

protected function setUp() {
parent::setUp();

$app = new Application();
$this->container = $app->getContainer();
$this->container['Config'] = $this->getMockBuilder('\OCP\IConfig')

Loading…
Cancel
Save