Files
roundcubemail/tests/Framework/ResultThreadTest.php
Michael Voříšek 736795326c Fix plugins composer.json format (#9405)
* 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
2024-04-05 17:55:46 +02:00

113 lines
4.2 KiB
PHP

<?php
use PHPUnit\Framework\TestCase;
/**
* Test class to test rcube_result_thread class
*/
class Framework_ResultThread extends TestCase
{
/**
* Class constructor
*/
public function test_class()
{
$object = new rcube_result_thread();
$this->assertInstanceOf('rcube_result_thread', $object, 'Class constructor');
}
/**
* thread parser test
*/
public function test_parse_thread()
{
$text = file_get_contents(__DIR__ . '/../src/imap_thread.txt');
$object = new rcube_result_thread('INBOX', $text);
$this->assertFalse($object->is_empty(), 'Object is empty');
$this->assertFalse($object->is_error(), 'Object is error');
$this->assertSame(1721, $object->max(), 'Max message UID');
$this->assertSame(1, $object->min(), 'Min message UID');
$this->assertSame(731, $object->count(), 'Threads count');
$this->assertSame(1721, $object->count_messages(), 'Messages count');
$this->assertSame(1691, $object->exists(1720, true), 'Message exists');
$this->assertTrue($object->exists(1720), 'Message exists (bool)');
$this->assertSame(1, $object->get_element('FIRST'), 'Get first element');
$this->assertSame(1719, $object->get_element('LAST'), 'Get last element');
$this->assertSame(14, (int) $object->get_element(2), 'Get specified element');
$tree = $object->get_tree();
$expected = [
4 => [
18 => [
39 => [
100 => [],
],
],
],
5 => [
6 => [],
8 => [
11 => [],
13 => [
15 => [],
],
465 => [],
],
209 => [],
],
19 => [
314 => [],
],
];
$this->assertSame([], $tree[1]);
$this->assertSame([], $tree[2]);
$this->assertSame([], $tree[14]);
$this->assertSame([], $tree[3]);
$this->assertSame($expected[4], $tree[4]);
$this->assertSame($expected[5], $tree[5]);
$this->assertSame($expected[19], $tree[19]);
$clone = clone $object;
$clone->filter([7]);
$clone = $clone->get_tree();
$this->assertSame(1, count($clone), 'Structure check');
$this->assertSame(3, count($clone[7]), 'Structure check');
$this->assertSame(0, count($clone[7][12]), 'Structure check');
$this->assertSame(1, count($clone[7][167]), 'Structure check');
$this->assertSame(0, count($clone[7][167][197]), 'Structure check');
$this->assertSame(2, count($clone[7][458]), 'Structure check');
$this->assertSame(1, count($clone[7][458][460]), 'Structure check');
$this->assertSame(0, count($clone[7][458][460][463]), 'Structure check');
$this->assertSame(1, count($clone[7][458][464]), 'Structure check');
$this->assertSame(0, count($clone[7][458][464][471]), 'Structure check');
$object->filter([784]);
$this->assertSame(118, $object->count_messages(), 'Messages filter');
$this->assertSame(1, $object->count(), 'Messages filter (count)');
}
/**
* thread parser test (empty result)
*/
public function test_parse_empty()
{
$object = new rcube_result_thread('INBOX', '* THREAD');
$this->assertTrue($object->is_empty(), 'Object is empty');
$this->assertFalse($object->is_error(), 'Object is error');
$this->assertNull($object->max(), 'Max message UID');
$this->assertNull($object->min(), 'Min message UID');
$this->assertSame(0, $object->count(), 'Threads count');
$this->assertSame(0, $object->count_messages(), 'Messages count');
$this->assertFalse($object->exists(1720, true), 'Message exists');
$this->assertFalse($object->exists(1720), 'Message exists (bool)');
$this->assertNull($object->get_element('FIRST'), 'Get first element');
$this->assertNull($object->get_element('LAST'), 'Get last element');
$this->assertNull($object->get_element(2), 'Get specified element');
}
}