Aleksander Machniak
2014-01-24 3b1d410b4ede2fd54be23bb47da5950535df9b04
Fix confusing intersect/filter methods naming/behaviour.

Removed rcube_result_index::intersect() method.
Changed rcube_result_index::filter() to filter in the same way as
rcube_result_thread::filter(), which means it actually does array_intersect().
Added tests scripts for rcube_result_index class.
4 files modified
70 ■■■■ changed files
program/lib/Roundcube/rcube_result_index.php 19 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_result_thread.php 2 ●●● patch | view | raw | blame | history
tests/Framework/ResultIndex.php 47 ●●●●● patch | view | raw | blame | history
tests/Framework/ResultThread.php 2 ●●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_result_index.php
@@ -231,27 +231,11 @@
    /**
     * Filters data set. Removes elements listed in $ids list.
     * Filters data set. Removes elements not listed in $ids list.
     *
     * @param array $ids List of IDs to remove.
     */
    public function filter($ids = array())
    {
        $data = $this->get();
        $data = array_diff($data, $ids);
        $this->meta          = array();
        $this->meta['count'] = count($data);
        $this->raw_data      = implode(self::SEPARATOR_ELEMENT, $data);
    }
    /**
     * Filters data set. Removes elements not listed in $ids list.
     *
     * @param array $ids List of IDs to keep.
     */
    public function intersect($ids = array())
    {
        $data = $this->get();
        $data = array_intersect($data, $ids);
@@ -332,6 +316,7 @@
        if (empty($this->raw_data)) {
            return array();
        }
        return explode(self::SEPARATOR_ELEMENT, $this->raw_data);
    }
program/lib/Roundcube/rcube_result_thread.php
@@ -453,7 +453,7 @@
        // when sorting search result it's good to make the index smaller
        if ($index->count() != $this->count_messages()) {
            $index->intersect($this->get());
            $index->filter($this->get());
        }
        $result  = array_fill_keys($index->get(), null);
tests/Framework/ResultIndex.php
@@ -17,4 +17,51 @@
        $this->assertInstanceOf('rcube_result_index', $object, "Class constructor");
    }
    /**
     * thread parser test
     */
    function test_parse()
    {
        $text = "* SORT 2001 2002 2035 2036 2037 2038 2044 2046 2043 2045 2226 2225 2224 2223";
        $object = new rcube_result_index('INBOX', $text);
        $this->assertSame(false, $object->is_empty(), "Object is empty");
        $this->assertSame(false, $object->is_error(), "Object is error");
        $this->assertSame(2226, $object->max(), "Max message UID");
        $this->assertSame(2001, $object->min(), "Min message UID");
        $this->assertSame(14, $object->count_messages(), "Messages count");
        $this->assertSame(14, $object->count(), "Messages count");
        $this->assertSame(1, $object->exists(2002, true), "Message exists");
        $this->assertSame(true, $object->exists(2002), "Message exists (bool)");
        $this->assertSame(2001, $object->get_element('FIRST'), "Get first element");
        $this->assertSame(2223, $object->get_element('LAST'), "Get last element");
        $this->assertSame(2035, (int) $object->get_element(2), "Get specified element");
        $this->assertSame("2001:2002,2035:2038,2043:2046,2223:2226", $object->get_compressed(), "Get compressed index");
        $this->assertSame('INBOX', $object->get_parameters('MAILBOX'), "Get parameter");
        $clone = clone $object;
        $clone->filter(array(2035, 2002));
        $this->assertSame(2, $clone->count(), "Messages count (filtered)");
        $this->assertSame(2002, $clone->get_element('FIRST'), "Get first element (filtered)");
        $clone = clone $object;
        $clone->revert();
        $this->assertSame(14, $clone->count(), "Messages count (reverted)");
        $this->assertSame(12, $clone->exists(2002, true), "Message exists (reverted)");
        $this->assertSame(true, $clone->exists(2002), "Message exists (bool) (reverted)");
        $this->assertSame(2223, $clone->get_element('FIRST'), "Get first element (reverted)");
        $this->assertSame(2001, $clone->get_element('LAST'), "Get last element (reverted)");
        $this->assertSame(2225, (int) $clone->get_element(2), "Get specified element (reverted)");
        $clone = clone $object;
        $clone->slice(2, 3);
        $this->assertSame(3, $clone->count(), "Messages count (sliced)");
        $this->assertSame(2035, $clone->get_element('FIRST'), "Get first element (sliced)");
        $this->assertSame(2037, $clone->get_element('LAST'), "Get last element (sliced)");
    }
}
tests/Framework/ResultThread.php
@@ -55,7 +55,5 @@
        $object->filter(array(784));
        $this->assertSame(118, $object->count_messages(), "Messages filter");
        $this->assertSame(1, $object->count(), "Messages filter (count)");
//echo         $object->get_compressed();
    }
}