Added some tests for IMAP THREAD parser

pull/163/head
Aleksander Machniak 11 years ago
parent 5f3c7e3920
commit 18ff2e4ac6

@ -17,4 +17,28 @@ class Framework_ResultThread extends PHPUnit_Framework_TestCase
$this->assertInstanceOf('rcube_result_thread', $object, "Class constructor");
}
/**
* thread parser test
*/
function test_parse_thread()
{
$text = file_get_contents(__DIR__ . '/../src/imap_thread.txt');
$object = new rcube_result_thread('INBOX', $text);
$this->assertSame(false, $object->is_empty(), "Object is empty");
$this->assertSame(false, $object->is_error(), "Object is error");
$this->assertSame(1721, $object->max(), "Max message UID");
$this->assertSame(1, $object->min(), "Min message UID");
$this->assertSame(1721, $object->count_messages(), "Messages count");
$this->assertSame(1691, $object->exists(1720, true), "Message exists");
$this->assertSame(true, $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");
$object->filter(array(784));
$this->assertSame(118, $object->count_messages(), "Messages filter");
$this->assertSame(1, $object->count(), "Messages filter (count)");
}
}

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save