Exemplo n.º 1
0
 function search_without_context()
 {
     $user_found = new User(225);
     $user_not_found = new User(9999);
     $url_nf = 'http://www.plurk.com/p/6c5cdt#response-1777726347';
     $webpage_nf = $this->webpage->create($url_nf);
     $url_f = 'http://www.plurk.com/p/67k6st';
     $webpage_f = $this->webpage->create($url_f);
     $text = '話說回來,其實本篇主題是要講,目前階段是Search,加入了Collection概念,並強化應用Active Record的方式之後,應該是更強大,卻也複雜到一種境界。';
     $target_scope_nf = new Annotation_scope_collection();
     $target_scope_nf->add_scope($this->annotation_scope->create_scope(18, 33, $text, $webpage_f));
     $target_scope_f = new Annotation_scope_collection();
     $target_scope_f->add_scope($this->annotation_scope->create_scope(3, 20, $text, $webpage_f));
     $target_scope_f->add_scope($this->annotation_scope->create_scope(26, 40, $text, $webpage_f));
     $overlap_scope_nf = new Annotation_scope_collection();
     $overlap_scope_nf->add_scope($this->annotation_scope->create_scope(23, 25, $text, $webpage_f));
     $overlap_scope_f = new Annotation_scope_collection();
     $overlap_scope_f->add_scope($this->annotation_scope->create_scope(23, 25, $text, $webpage_f));
     $overlap_scope_f->add_scope($this->annotation_scope->create_scope(39, 40, $text, $webpage_f));
     //-----------------------------------------------------------
     $search = new Search_annotation_collection();
     $search->set_target_user($user_not_found);
     $this->unit->run($search->length(), 0, 'Search_annotation_collection,搜尋錯誤user_id,看length()');
     $search = new Search_annotation_collection();
     $search->set_target_user($user_found);
     $this->unit->run($search->length(), 2, 'Search_annotation_collection,搜尋正確的user_id,看length()');
     $search = new Search_annotation_id_collection();
     $search->set_target_user($user_found);
     $this->unit->run($search->length(), 2, 'Search_annotation_id_collection,搜尋正確的user_id,看length(),耗費時間應該比Search_annotation_collection還短');
     $this->unit->run($search->get_item(0), 'is_string', 'Search_annotation_id_collection,搜尋正確的user_id,get_item(),值應該是id');
     //----
     $search = new Search_annotation_collection();
     $search->set_target_webpage($webpage_nf);
     $this->unit->run($search->length(), 0, 'Search_annotation_collection,搜尋錯誤的webpage,看length()');
     $this->unit->run($webpage_f->get_id(), 138, '先檢查webpage正確的id');
     $search = new Search_annotation_collection();
     $search->set_target_webpage($webpage_f);
     $this->unit->run($search->length(), 3, 'Search_annotation_collection,搜尋正確的webpage,看length()');
     //----
     $search = new Search_annotation_collection();
     $search->set_target_scope($target_scope_nf);
     $this->unit->run($search->length(), 0, 'Search_annotation_collection,搜尋錯誤的target_scope,看length()');
     $this->unit->run($target_scope_f->length(), 2, '先確定一下target_scope_f的數量沒錯');
     $search = new Search_annotation_collection();
     $search->set_target_scope($target_scope_f);
     $this->unit->run($search->length(), 2, 'Search_annotation_collection,搜尋正確的target_scope,看length()');
     //----
     $search = new Search_annotation_collection();
     $search->set_exclude_scope($target_scope_nf);
     $this->unit->run($search->length(), 3, 'Search_annotation_collection,搜尋錯誤的exclude_scope,看length()');
     $this->unit->run($search->get_item(0)->get_id(), 783, 'order scope之前');
     $this->unit->run($search->get_item(0)->get_user()->get_name(), 'puddingchen.35', 'order scope之前,查看一下user name');
     $search = new Search_annotation_collection();
     $search->set_exclude_scope($target_scope_nf);
     $search->add_order(2, TRUE);
     $this->unit->run($search->get_item(0)->get_id(), 1017, 'order scope desc之後');
     $search = new Search_annotation_collection();
     $search->set_exclude_scope($target_scope_nf);
     $search->add_order(3);
     $this->unit->run($search->get_item(0)->get_id(), 1018, 'order like desc之後');
     $search = new Search_annotation_collection();
     $search->set_exclude_scope($target_scope_nf);
     $search->add_order(4);
     $this->unit->run($search->get_item(0)->get_id(), 1018, 'order respond desc之後');
     $search = new Search_annotation_collection();
     $search->set_exclude_scope($target_scope_nf);
     $search->add_order(5, TRUE);
     $this->unit->run($search->get_item(0)->get_user()->get_name(), 'pulipuli', 'order author desc之後');
     $search = new Search_annotation_collection();
     $search->set_exclude_scope($target_scope_nf);
     $search->add_order(6);
     $this->unit->run($search->get_item(0)->get_id(), 1018, 'order update desc之後');
     $search = new Search_annotation_collection();
     $search->set_exclude_scope($target_scope_nf);
     $search->add_order(7);
     $this->unit->run($search->get_item(0)->get_id(), 1018, 'order update desc之後');
     $search = new Search_annotation_collection();
     $search->set_exclude_scope($target_scope_f);
     $this->unit->run($search->length(), 1, 'Search_annotation_collection,搜尋正確的exclude_scope,看length(),應該是跟上上個測試剛好是相反地');
     $this->unit->run($search->get_item(0)->get_id(), 783, 'Search_annotation_collection,搜尋正確的exclude_scope,get_item(0)並檢查id,應該是指定的784才對');
     //----
     $search = new Search_annotation_collection();
     $search->set_overlap_scope($overlap_scope_nf);
     $this->unit->run($search->length(), 0, 'Search_annotation_collection,搜尋錯誤的overlap_scope,看length()');
     $search = new Search_annotation_collection();
     $search->set_overlap_scope($overlap_scope_f);
     $this->unit->run($search->length(), 2, 'Search_annotation_collection,搜尋正確的overlay_scope,看length()');
     $this->unit->run($search->get_item(0)->get_id(), 1017, 'Search_annotation_collection,搜尋正確的overlay_scope,get_item() get_id()看看');
     //----
     $type_id_nf = 3;
     $type_id_f = 2;
     //$search = new Search_scope_collection();
     $search = new Search_annotation_collection();
     $search->set_target_type($type_id_nf);
     $this->unit->run($search->length(), 0, 'Search_annotation_collection,搜尋錯誤的target_id,看length()');
     $search = new Search_annotation_collection();
     $search->set_target_type($type_id_f);
     $this->unit->run($search->length(), 1, 'Search_annotation_collection,搜尋正確的target_id,看length()');
     $this->unit->run($search->get_item(0)->get_id(), 1017, 'Search_annotation_collection,搜尋正確的type_id,get_item() get_id()看看');
     //----
     $search = new Search_annotation_collection();
     $search->set_exclude_user($user_not_found);
     $this->unit->run($search->length(), 3, 'Search_annotation_collection,搜尋錯誤的exclude_user_id,看length()');
     $search = new Search_annotation_collection();
     $search->set_exclude_user($user_found);
     $this->unit->run($search->length(), 1, 'Search_annotation_collection,搜尋正確的exclude_user_id,看length()');
     //----
     $annotation_id_nf = 9999;
     $annotation_id_f = 1017;
     $search = new Search_annotation_collection();
     $search->set_exclude_annotation($annotation_id_nf);
     $this->unit->run($search->length(), 3, 'Search_annotation_collection,搜尋錯誤的exclude_annotation_id,看length()');
     $search = new Search_annotation_collection();
     $search->set_exclude_annotation($annotation_id_f);
     $this->unit->run($search->length(), 2, 'Search_annotation_collection,搜尋正確的exclude_annotation_id,看length()');
     $this->unit->run($search->get_item(0)->get_id(), 783, 'Search_annotation_collection,搜尋正確的exclude_annotation_id,get_item get_id');
     //----
     $note_nf = '搜尋錯誤';
     $note_f = '變項回歸';
     $search = new Search_annotation_id_collection();
     $search->set_search_note($note_nf);
     $this->unit->run($search->length(), 0, 'Search_annotation_id_collection,搜尋錯誤的search_note,看length()');
     $search = new Search_annotation_collection();
     $search->set_search_note($note_f);
     $search->add_order(8);
     $this->unit->run($search->length(), 1, 'Search_annotation_collection,搜尋正確的search_note,看length()');
     $this->unit->run($search->get_item(0)->get_id(), 783, 'Search_annotation_collection,搜尋正確的search_note,get_item get_id');
     //----
     $anchor_text_f = '冷氣電扇被子';
     $search = new Search_scope_collection();
     $search->set_search_anchor_text($note_nf);
     $this->unit->run($search->length(), 0, 'Search_annotation_id_collection,搜尋錯誤的search_anchor_text,看length()');
     $search = new Search_annotation_collection();
     $search->set_search_anchor_text($note_f);
     $search->add_order(9);
     $this->unit->run($search->length(), 2, 'Search_annotation_collection,搜尋正確的search_anchor_text,看length()');
     $this->unit->run($search->get_item(0)->get_id(), 1017, 'Search_annotation_collection,搜尋正確的search_anchor_text,get_item get_id');
     $search = new Search_annotation_collection();
     $search->set_check_authorize(FALSE);
     $search->set_search_anchor_text($note_f);
     $this->unit->run($search->length(), 2, 'Search_annotation_collection,並關掉權限檢查,搜尋正確的search_anchor_text,看length()');
     $this->unit->run($search->get_item(0)->get_id(), 1017, 'order score之前');
     $search = new Search_annotation_collection();
     $search->set_check_authorize(FALSE);
     $search->set_search_anchor_text($note_f);
     $search->add_order(1);
     $this->unit->run($search->get_item(0)->get_id(), 1018, 'order score之後');
     $search = new Search_scope_collection();
     $search->set_check_authorize(FALSE);
     $search->set_search_anchor_text($note_f);
     $this->unit->run($search->get_scope_length(), 20 - 3 + 1 + 40 - 26 + 1, 'Search_scope_collection,並關掉權限檢查,搜尋正確的search_anchor_text,看get_scope_length()');
     //----
     $score_over_nf = 3;
     $score_over_f = 2.1214435;
     $search = new Search_scope_collection();
     $search->set_target_over_score($score_over_nf);
     $this->unit->run($search->length(), 0, 'Search_annotation_id_collection,搜尋錯誤的target_over_score,看length()');
     $search = new Search_annotation_collection();
     $search->set_target_over_score($score_over_f);
     $this->unit->run($search->length(), 1, 'Search_annotation_collection,搜尋正確的target_over_score,看length()');
     $this->unit->run($search->get_item(0)->get_id(), 1018, 'Search_annotation_collection,搜尋正確的target_over_score,get_item get_id');
     $search = new Search_annotation_user_collection();
     $search->set_target_over_score($score_over_f);
     $this->unit->run($search->length(), 1, 'Search_annotation_user_collection,搜尋正確的target_over_score,length');
     $this->unit->run($search->get_item(0)->get_id(), 225, 'Search_annotation_user_collection,搜尋正確的target_over_score,get_item get_id');
     //        //--------------------------------------------------------------------------------
     //        $search = new Search_annotation_collection();
     //        $search->set_check_authorize(FALSE);
     //        $search->set_target_user($user_not_found);
     //        $this->unit->run($search->length()
     //                , 0
     //                , 'Search_annotation_collection,取消auth,搜尋錯誤user_id,看length()');
     //
     //        $search = new Search_annotation_collection();
     //        $search->set_check_authorize(FALSE);
     //        $search->set_target_user($user_found);
     //        $this->unit->run($search->length()
     //                , 4
     //                , 'Search_annotation_collection,取消auth,搜尋正確的user_id,看length()');
     //        $this->unit->run($test_result
     //                , $expected_result
     //                , $test_name);
     //        $this->unit->run($test_result
     //                , $expected_result
     //                , $test_name);
     //context_complete();
     unit_test_report($this);
 }
Exemplo n.º 2
0
 function list_annotation($json, $callback = NULL)
 {
     $enable_profiler = FALSE;
     if ($enable_profiler === TRUE) {
         $this->output->enable_profiler(TRUE);
     }
     if (is_string($json)) {
         $data = json_to_object($json);
     } else {
         $data = $json;
     }
     $user = get_context_user();
     $url = $this->url;
     $search = new Search_annotation_collection();
     $search_id = null;
     if (isset($data->limit)) {
         $search_id = new Search_annotation_id_collection();
     }
     // 1 [ topic id ]
     if (isset($data->topic_id) && isset($data->target_topic) && $data->target_topic === TRUE) {
         $annotation = new Annotation($data->topic_id);
         $output_data = array('annotation_collection' => array($annotation->export_data()), 'totally_loaded' => true);
         return $this->_display_jsonp($output_data, $callback);
     } else {
         if (isset($data->topic_id) && isset($data->target_topic) && $data->target_topic === FALSE) {
             $search->set_target_topic_id($data->topic_id);
             if (isset($search_id)) {
                 $search_id->set_target_topic_id($data->topic_id);
             }
         }
     }
     // 2 [ scope ]
     //test_msg('2 [ scope ]', is_null($data->scope));
     //如果沒有設定範圍,則直接回傳空值
     //if (is_null($data->scope))
     //{
     //    //return $this->_create_null_list($callback);
     //}
     if (isset($data->scope)) {
         $scope_coll_data = $data->scope;
         //test_msg('2 [ scope ] 2', is_null($data->scope));
         $scope_coll = $this->annotation_scope_collection->import_webpage_search_data($url, $scope_coll_data);
         //test_msg($scope_coll->export_json());
         $search->set_overlap_scope($scope_coll);
         if (isset($search_id)) {
             $search_id->set_overlap_scope($scope_coll);
         }
         //test_msg('2 [ scope ] 3', is_null($data->scope));
     }
     // 3 [ target like ]
     // 4 [ target my ]
     //test_msg('3 [ target like ] 4 [ target my ]');
     if ((isset($data->target_like) or isset($data->target_my)) && is_null($user)) {
         return $this->_create_null_list($callback);
     }
     if (isset($data->target_like)) {
         $search->set_target_like($data->target_like, $user);
         if (isset($search_id)) {
             $search_id->set_target_like($data->target_like, $user);
         }
     }
     if (isset($data->target_my)) {
         if ($data->target_my === TRUE) {
             $search->set_target_user($user);
             if (isset($search_id)) {
                 $search_id->set_target_user($user);
             }
         } else {
             $search->set_exclude_user($user);
             if (isset($search_id)) {
                 $search_id->set_exclude_user($user);
             }
         }
     }
     // 5 [ target_topic ]
     if (isset($data->target_topic)) {
         $search->set_target_topic($data->target_topic);
         if (isset($search_id)) {
             $search_id->set_target_topic($data->target_topic);
         }
     }
     // 6 [ order by ]
     // 6 [ is_desc]
     //test_msg('6 [ order by ]', isset($data->order_by));
     //test_msg('6 [ order by ] direction', $data->direction);
     $order_id = 1;
     $default_direction = TRUE;
     if (isset($data->order_by)) {
         if ($data->order_by == 'update') {
             $order_id = 6;
             $default_direction = TRUE;
         } else {
             if ($data->order_by == 'create') {
                 $order_id = 7;
                 $default_direction = TRUE;
             } else {
                 // 依照分數排序
                 $order_id = 1;
                 $default_direction = TRUE;
             }
         }
     }
     if (isset($data->direction) && $data->direction == 'asc') {
         $default_direction = FALSE;
     }
     /*
     if (isset($data->order_by) === FALSE OR $data->order_by != 'update')
     {
         $order_id = 6;
         $default_is_desc = TRUE;
     }
     */
     //test_msg('6 [ order by ] add_oder', array($order_id, $default_is_desc));
     $search->add_order($order_id, $default_direction);
     //        if (isset($search_id)) {
     //            $search_id->add_order ($order_id, $default_direction);
     //        }
     // 7 [ offset ]
     //test_msg('7 [ offset ]', isset($data->offset));
     if (isset($data->offset)) {
         $search->set_offset($data->offset);
         //            if (isset($search_id)) {
         //                $search_id->set_offset($data->offset);
         //            }
     }
     // 8 [ limit ]
     //test_msg('8 [ limit ]', array(isset($data->limit),$data->limit));
     if (isset($data->limit)) {
         $search->set_limit($data->limit);
         //$search_id在此不作設限
     }
     $search->set_target_webpage(get_context_webpage());
     //輸出
     $totally_loaded = TRUE;
     if (isset($search_id)) {
         $totally_loaded = FALSE;
     }
     //不作limit的情況下讀完,表示完全讀取
     if (isset($search_id) && ($search->length() == $search_id->length() || $search->length() == 0)) {
         $totally_loaded = TRUE;
     }
     $annotation_collection = array();
     //test_msg('Search Length', $search->length());
     foreach ($search as $search_annotation) {
         $annotation_data = $search_annotation->export_webpage_data($url);
         if (isset($data->target_topic) && $data->target_topic === TRUE) {
             $search_data = json_to_object('{}');
             $search_data->target_topic = FALSE;
             $search_data->topic_id = $search_annotation->get_id();
             if (isset($data->respond_limit)) {
                 $search_data->limit = $data->respond_limit;
             }
             //$search_data->is_like = NULL;
             $search_data->order_by = 'create';
             if (isset($data->respond_direction)) {
                 $search_data->direction = $data->respond_direction;
             } else {
                 //$search_data->direction = "asc";
             }
             $search_data->show_total_count = TRUE;
             $search_result = $this->list_annotation($search_data);
             //test_msg($search_result);
             if (count($search_result['annotation_collection']) > 0) {
                 $annotation_data['respond_list'] = $search_result;
             }
         }
         array_push($annotation_collection, $annotation_data);
     }
     $output_data = array('annotation_collection' => $annotation_collection, 'totally_loaded' => $totally_loaded);
     if (isset($data->show_total_count) && $data->show_total_count === TRUE) {
         if (count($annotation_collection) === 0) {
             $output_data['total_count'] = 0;
         } else {
             if (isset($search_id)) {
                 $output_data['total_count'] = $search_id->length();
             } else {
                 $output_data['total_count'] = count($annotation_collection);
             }
         }
     }
     //log區
     $array_data = NULL;
     if (is_string($json)) {
         $array_data = json_to_array($json);
     } else {
         $array_data = (array) $json;
     }
     $user_id = NULL;
     if (isset($user)) {
         $user_id = $user->get_id();
     }
     $action = 12;
     if (isset($data->topic_id) && isset($data->target_topic) && $data->target_topic === FALSE && isset($data->limit) == FALSE) {
         $action = 16;
     }
     $do_log = TRUE;
     if (isset($data->limit) && $data->limit == 5) {
         $do_log = FALSE;
     }
     if (isset($data->target_my)) {
         if ($data->target_my == FALSE) {
             $do_log = FALSE;
         }
     } else {
         if ($user_id == NULL) {
             $action = 17;
             if (isset($data->topic_id) && isset($data->target_topic) && $data->target_topic === FALSE && isset($data->limit) == FALSE) {
                 $action = 18;
             }
         }
     }
     if ($do_log) {
         kals_log($this->db, $action, array('memo' => $array_data, 'user_id' => $user_id));
     }
     context_complete();
     if ($enable_profiler != TRUE) {
         return $this->_display_jsonp($output_data, $callback);
     }
 }