From 0b36d151572e050b51d82e7429fee847ebb33e22 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Thu, 20 Nov 2014 06:03:22 -0500
Subject: [PATCH] Add method to display operation (uploading) progress in UI message

---
 tests/Framework/ResultThread.php |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/tests/Framework/ResultThread.php b/tests/Framework/ResultThread.php
index ab55827..55fca4c 100644
--- a/tests/Framework/ResultThread.php
+++ b/tests/Framework/ResultThread.php
@@ -37,6 +37,21 @@
         $this->assertSame(1719, $object->get_element('LAST'), "Get last element");
         $this->assertSame(14, (int) $object->get_element(2), "Get specified element");
 
+        $clone = clone $object;
+        $clone->filter(array(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(array(784));
         $this->assertSame(118, $object->count_messages(), "Messages filter");
         $this->assertSame(1, $object->count(), "Messages filter (count)");

--
Gitblit v1.9.1