2015-06-11 11:47:51 +03:00
< ? php
/**
* @ author Joas Schilling < nickvergessen @ owncloud . com >
2015-03-21 22:03:56 +03:00
* @ author Lukas Reschke < lukas @ owncloud . com >
* @ author Roeland Jago Douma < roeland @ famdouma . nl >
* @ author Thomas Müller < thomas . mueller @ tmit . eu >
2015-06-11 11:47:51 +03:00
*
* @ copyright Copyright ( c ) 2015 , ownCloud , Inc .
* @ license AGPL - 3.0
*
* This code is free software : you can redistribute it and / or modify
* it under the terms of the GNU Affero General Public License , version 3 ,
* as published by the Free Software Foundation .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU Affero General Public License for more details .
*
* You should have received a copy of the GNU Affero General Public License , version 3 ,
* along with this program . If not , see < http :// www . gnu . org / licenses />
*
*/
namespace Test ;
2020-04-09 12:48:10 +03:00
2016-10-31 13:07:54 +03:00
use OC\App\AppStore\Fetcher\AppFetcher ;
use OC\App\AppStore\Fetcher\CategoryFetcher ;
2015-06-11 11:47:51 +03:00
2015-11-20 13:27:11 +03:00
/**
* Class Server
*
* @ group DB
*
* @ package Test
*/
2016-05-20 16:38:20 +03:00
class ServerTest extends \Test\TestCase {
2015-06-11 11:47:51 +03:00
/** @var \OC\Server */
protected $server ;
2019-11-27 17:27:18 +03:00
protected function setUp () : void {
2015-06-11 11:47:51 +03:00
parent :: setUp ();
2015-12-18 13:24:15 +03:00
$config = new \OC\Config ( \OC :: $configDir );
$this -> server = new \OC\Server ( '' , $config );
2015-06-11 11:47:51 +03:00
}
public function dataTestQuery () {
return [
2016-05-02 12:57:24 +03:00
[ 'ActivityManager' , '\OC\Activity\Manager' ],
2015-06-11 12:29:45 +03:00
[ 'ActivityManager' , '\OCP\Activity\IManager' ],
[ 'AllConfig' , '\OC\AllConfig' ],
[ 'AllConfig' , '\OCP\IConfig' ],
[ 'AppConfig' , '\OC\AppConfig' ],
[ 'AppConfig' , '\OCP\IAppConfig' ],
2016-10-31 13:07:54 +03:00
[ 'AppFetcher' , AppFetcher :: class ],
2015-06-11 12:29:45 +03:00
[ 'AppManager' , '\OC\App\AppManager' ],
[ 'AppManager' , '\OCP\App\IAppManager' ],
[ 'AsyncCommandBus' , '\OC\Command\AsyncBus' ],
[ 'AsyncCommandBus' , '\OCP\Command\IBus' ],
2019-01-20 13:13:41 +03:00
[ 'AvatarManager' , '\OC\Avatar\AvatarManager' ],
2015-06-11 12:29:45 +03:00
[ 'AvatarManager' , '\OCP\IAvatarManager' ],
2016-10-31 13:07:54 +03:00
[ 'CategoryFetcher' , CategoryFetcher :: class ],
2015-07-22 14:04:56 +03:00
[ 'CapabilitiesManager' , '\OC\CapabilitiesManager' ],
2015-06-11 12:29:45 +03:00
[ 'ContactsManager' , '\OC\ContactsManager' ],
[ 'ContactsManager' , '\OCP\Contacts\IManager' ],
2016-01-28 16:33:02 +03:00
[ 'ContentSecurityPolicyManager' , '\OC\Security\CSP\ContentSecurityPolicyManager' ],
2015-11-24 01:53:55 +03:00
[ 'CommentsManager' , '\OCP\Comments\ICommentsManager' ],
2015-06-11 12:29:45 +03:00
[ 'Crypto' , '\OC\Security\Crypto' ],
[ 'Crypto' , '\OCP\Security\ICrypto' ],
2015-07-20 13:59:04 +03:00
[ 'CryptoWrapper' , '\OC\Session\CryptoWrapper' ],
2016-01-28 16:33:02 +03:00
[ 'CsrfTokenManager' , '\OC\Security\CSRF\CsrfTokenManager' ],
2015-06-11 12:29:45 +03:00
2021-01-03 17:28:31 +03:00
[ 'DatabaseConnection' , '\OC\DB\ConnectionAdapter' ],
2015-06-11 12:29:45 +03:00
[ 'DatabaseConnection' , '\OCP\IDBConnection' ],
[ 'DateTimeFormatter' , '\OC\DateTimeFormatter' ],
[ 'DateTimeFormatter' , '\OCP\IDateTimeFormatter' ],
[ 'DateTimeZone' , '\OC\DateTimeZone' ],
[ 'DateTimeZone' , '\OCP\IDateTimeZone' ],
[ 'EncryptionFileHelper' , '\OC\Encryption\File' ],
[ 'EncryptionFileHelper' , '\OCP\Encryption\IFile' ],
[ 'EncryptionKeyStorage' , '\OC\Encryption\Keys\Storage' ],
[ 'EncryptionKeyStorage' , '\OCP\Encryption\Keys\IStorage' ],
[ 'EncryptionManager' , '\OC\Encryption\Manager' ],
[ 'EncryptionManager' , '\OCP\Encryption\IManager' ],
[ 'EventLogger' , '\OCP\Diagnostics\IEventLogger' ],
[ 'GroupManager' , '\OC\Group\Manager' ],
[ 'GroupManager' , '\OCP\IGroupManager' ],
[ 'Hasher' , '\OC\Security\Hasher' ],
[ 'Hasher' , '\OCP\Security\IHasher' ],
[ 'HttpClientService' , '\OC\Http\Client\ClientService' ],
[ 'HttpClientService' , '\OCP\Http\Client\IClientService' ],
[ 'IniWrapper' , '\bantu\IniGetWrapper\IniGetWrapper' ],
2016-01-07 15:20:43 +03:00
[ 'MimeTypeDetector' , '\OCP\Files\IMimeTypeDetector' ],
[ 'MimeTypeDetector' , '\OC\Files\Type\Detection' ],
2015-06-11 12:29:45 +03:00
[ 'JobList' , '\OC\BackgroundJob\JobList' ],
[ 'JobList' , '\OCP\BackgroundJob\IJobList' ],
[ 'L10NFactory' , '\OC\L10N\Factory' ],
2015-08-28 13:08:54 +03:00
[ 'L10NFactory' , '\OCP\L10N\IFactory' ],
2015-06-11 12:29:45 +03:00
[ 'LockingProvider' , '\OCP\Lock\ILockingProvider' ],
[ 'Logger' , '\OC\Log' ],
[ 'Logger' , '\OCP\ILogger' ],
[ 'Mailer' , '\OC\Mail\Mailer' ],
[ 'Mailer' , '\OCP\Mail\IMailer' ],
[ 'MemCacheFactory' , '\OC\Memcache\Factory' ],
[ 'MemCacheFactory' , '\OCP\ICacheFactory' ],
[ 'MountConfigManager' , '\OC\Files\Config\MountProviderCollection' ],
[ 'MountConfigManager' , '\OCP\Files\Config\IMountProviderCollection' ],
[ 'NavigationManager' , '\OC\NavigationManager' ],
[ 'NavigationManager' , '\OCP\INavigationManager' ],
2015-09-03 16:26:17 +03:00
[ 'NotificationManager' , '\OC\Notification\Manager' ],
2016-01-14 16:35:24 +03:00
[ 'NotificationManager' , '\OCP\Notification\IManager' ],
2015-06-15 20:16:48 +03:00
[ 'UserCache' , '\OC\Cache\File' ],
2015-06-29 23:43:18 +03:00
[ 'UserCache' , '\OCP\ICache' ],
2015-06-11 12:29:45 +03:00
[ 'PreviewManager' , '\OC\PreviewManager' ],
[ 'PreviewManager' , '\OCP\IPreview' ],
[ 'QueryLogger' , '\OCP\Diagnostics\IQueryLogger' ],
[ 'Request' , '\OC\AppFramework\Http\Request' ],
[ 'Request' , '\OCP\IRequest' ],
[ 'RootFolder' , '\OC\Files\Node\Root' ],
[ 'RootFolder' , '\OC\Files\Node\Folder' ],
[ 'RootFolder' , '\OCP\Files\IRootFolder' ],
[ 'RootFolder' , '\OCP\Files\Folder' ],
[ 'Router' , '\OCP\Route\IRouter' ],
[ 'Search' , '\OC\Search' ],
[ 'Search' , '\OCP\ISearch' ],
[ 'SecureRandom' , '\OC\Security\SecureRandom' ],
[ 'SecureRandom' , '\OCP\Security\ISecureRandom' ],
2016-01-27 16:48:52 +03:00
[ 'ShareManager' , '\OC\Share20\Manager' ],
[ 'ShareManager' , '\OCP\Share\IManager' ],
2015-06-11 12:29:45 +03:00
[ 'SystemConfig' , '\OC\SystemConfig' ],
[ 'URLGenerator' , '\OC\URLGenerator' ],
[ 'URLGenerator' , '\OCP\IURLGenerator' ],
[ 'UserManager' , '\OC\User\Manager' ],
[ 'UserManager' , '\OCP\IUserManager' ],
[ 'UserSession' , '\OC\User\Session' ],
[ 'UserSession' , '\OCP\IUserSession' ],
[ 'TagMapper' , '\OC\Tagging\TagMapper' ],
[ 'TagMapper' , '\OCP\AppFramework\Db\Mapper' ],
[ 'TagManager' , '\OC\TagManager' ],
[ 'TagManager' , '\OCP\ITagManager' ],
[ 'TempManager' , '\OC\TempManager' ],
[ 'TempManager' , '\OCP\ITempManager' ],
2016-08-19 12:26:22 +03:00
[ 'ThemingDefaults' , '\OCA\Theming\ThemingDefaults' ],
2015-06-11 12:29:45 +03:00
[ 'TrustedDomainHelper' , '\OC\Security\TrustedDomainHelper' ],
2016-01-19 18:17:49 +03:00
[ 'SystemTagManager' , '\OCP\SystemTag\ISystemTagManager' ],
[ 'SystemTagObjectMapper' , '\OCP\SystemTag\ISystemTagObjectMapper' ],
2015-06-11 11:47:51 +03:00
];
}
/**
* @ dataProvider dataTestQuery
*
* @ param string $serviceName
* @ param string $instanceOf
*/
public function testQuery ( $serviceName , $instanceOf ) {
2015-06-11 12:29:45 +03:00
$this -> assertInstanceOf ( $instanceOf , $this -> server -> query ( $serviceName ), 'Service "' . $serviceName . '"" did not return the right class' );
}
public function testGetCertificateManager () {
2020-07-05 15:31:19 +03:00
$this -> assertInstanceOf ( '\OC\Security\CertificateManager' , $this -> server -> getCertificateManager (), 'service returned by "getCertificateManager" did not return the right class' );
$this -> assertInstanceOf ( '\OCP\ICertificateManager' , $this -> server -> getCertificateManager (), 'service returned by "getCertificateManager" did not return the right class' );
2015-06-11 12:29:45 +03:00
}
public function testCreateEventSource () {
$this -> assertInstanceOf ( '\OC_EventSource' , $this -> server -> createEventSource (), 'service returned by "createEventSource" did not return the right class' );
$this -> assertInstanceOf ( '\OCP\IEventSource' , $this -> server -> createEventSource (), 'service returned by "createEventSource" did not return the right class' );
2015-06-11 11:47:51 +03:00
}
2015-12-03 23:53:58 +03:00
public function testOverwriteDefaultCommentsManager () {
$config = $this -> server -> getConfig ();
$defaultManagerFactory = $config -> getSystemValue ( 'comments.managerFactory' , '\OC\Comments\ManagerFactory' );
$config -> setSystemValue ( 'comments.managerFactory' , '\Test\Comments\FakeFactory' );
$manager = $this -> server -> getCommentsManager ();
$this -> assertInstanceOf ( '\OCP\Comments\ICommentsManager' , $manager );
$config -> setSystemValue ( 'comments.managerFactory' , $defaultManagerFactory );
}
2015-06-11 11:47:51 +03:00
}