mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-06 08:14:08 +01:00
* Check plugins composer.json using CI * Add "require-dev" and "config.allow-plugins" to plugins * fix composer.json format - rm invalid email * fix composer.json format - fix ext require * fix composer.json format - fix plugin name * tmp * Revert "tmp" * fix ext in ext install * disable plugin in plugin install until Roundcube is fully autoloadable * fix composer.json format - fix non-canonical license name * Revert "Add "require-dev" and "config.allow-plugins" to plugins" * no composer install for plugins needed * Revert "fix ext in ext install" * add standard "Test" suffix to phpunit files * rm unneeded "suffix" in phpunit config * simplify phpunit config * fix default "xhtml" doctype in unit testing * fix test_format_date test to not rely on other tests * even more phpunit config simplify * stricter/unify phpunit params for E2E tests * run E2E tests on maximal php version too with lowest deps * "repositories" in bundled plugins are useless as for root package only * add/unify missing plugin test
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test class to test rcube_ldap_generic class
|
|
*/
|
|
class Framework_LdapGeneric extends TestCase
|
|
{
|
|
protected function markTestSkippedIfNetLdapPackageIsNotInstalled(): void
|
|
{
|
|
if (!class_exists(Net_LDAP3::class)) {
|
|
$this->markTestSkipped('The Net_LDAP3 package not available.');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
public function test_class()
|
|
{
|
|
$this->markTestSkippedIfNetLdapPackageIsNotInstalled();
|
|
|
|
$object = new rcube_ldap_generic([]);
|
|
|
|
$this->assertInstanceOf('rcube_ldap_generic', $object, 'Class constructor');
|
|
}
|
|
|
|
/**
|
|
* Test fulltext_search_filter() method
|
|
*/
|
|
public function test_fulltext_search_filter()
|
|
{
|
|
$this->markTestSkippedIfNetLdapPackageIsNotInstalled();
|
|
|
|
$object = new rcube_ldap_generic([]);
|
|
|
|
$result = $object->fulltext_search_filter('test', ['dn']);
|
|
|
|
$this->assertSame('(|(dn=test))', $result);
|
|
|
|
$result = $object->fulltext_search_filter('test', ['dn', 'mail'], 2);
|
|
|
|
$this->assertSame('(|(dn=test*)(mail=test*))', $result);
|
|
|
|
$result = $object->fulltext_search_filter('test1 test2', ['dn', 'mail'], 0);
|
|
|
|
$this->assertSame('(&(|(dn=*test1*)(mail=*test1*))(|(dn=*test2*)(mail=*test2*)))', $result);
|
|
}
|
|
}
|