Changeset 36277 for trunk/tests/phpunit/tests/comment/query.php
- Timestamp:
- 01/13/2016 04:00:36 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment/query.php
r36224 r36277 2130 2130 2131 2131 /** 2132 * @ticket 35192 2133 */ 2134 public function test_comment_clauses_prepend_callback_should_be_respected_when_filling_descendants() { 2135 $top_level_0 = self::factory()->comment->create( array( 2136 'comment_post_ID' => $this->post_id, 2137 'comment_approved' => '1', 2138 ) ); 2139 2140 $child1_of_0 = self::factory()->comment->create( array( 2141 'comment_post_ID' => $this->post_id, 2142 'comment_approved' => '1', 2143 'comment_parent' => $top_level_0, 2144 ) ); 2145 2146 $child2_of_0 = self::factory()->comment->create( array( 2147 'comment_post_ID' => $this->post_id, 2148 'comment_approved' => '1', 2149 'comment_parent' => $top_level_0, 2150 ) ); 2151 2152 $top_level_comments = self::factory()->comment->create_many( 3, array( 2153 'comment_post_ID' => $this->post_id, 2154 'comment_approved' => '1', 2155 ) ); 2156 2157 $this->to_exclude = array( $child2_of_0, $top_level_comments[1] ); 2158 2159 add_filter( 'comments_clauses', array( $this, 'prepend_exclusions' ) ); 2160 $q = new WP_Comment_Query( array( 2161 'post_id' => $this->post_id, 2162 'hierarchical' => 'flat', 2163 ) ); 2164 remove_filter( 'comments_clauses', array( $this, 'prepend_exclusions' ) ); 2165 2166 unset( $this->to_exclude ); 2167 2168 $this->assertEqualSets( array( $top_level_0, $child1_of_0, $top_level_comments[0], $top_level_comments[2] ), wp_list_pluck( $q->comments, 'comment_ID' ) ); 2169 } 2170 2171 public function prepend_exclusions( $clauses ) { 2172 global $wpdb; 2173 $clauses['where'] = $wpdb->prepare( 'comment_ID != %d AND comment_ID != %d AND ', $this->to_exclude[0], $this->to_exclude[1] ) . $clauses['where']; 2174 return $clauses; 2175 } 2176 2177 /** 2178 * @ticket 35192 2179 */ 2180 public function test_comment_clauses_append_callback_should_be_respected_when_filling_descendants() { 2181 $top_level_0 = self::factory()->comment->create( array( 2182 'comment_post_ID' => $this->post_id, 2183 'comment_approved' => '1', 2184 ) ); 2185 2186 $child1_of_0 = self::factory()->comment->create( array( 2187 'comment_post_ID' => $this->post_id, 2188 'comment_approved' => '1', 2189 'comment_parent' => $top_level_0, 2190 ) ); 2191 2192 $child2_of_0 = self::factory()->comment->create( array( 2193 'comment_post_ID' => $this->post_id, 2194 'comment_approved' => '1', 2195 'comment_parent' => $top_level_0, 2196 ) ); 2197 2198 $top_level_comments = self::factory()->comment->create_many( 3, array( 2199 'comment_post_ID' => $this->post_id, 2200 'comment_approved' => '1', 2201 ) ); 2202 2203 $this->to_exclude = array( $child2_of_0, $top_level_comments[1] ); 2204 2205 add_filter( 'comments_clauses', array( $this, 'append_exclusions' ) ); 2206 $q = new WP_Comment_Query( array( 2207 'post_id' => $this->post_id, 2208 'hierarchical' => 'flat', 2209 ) ); 2210 remove_filter( 'comments_clauses', array( $this, 'append_exclusions' ) ); 2211 2212 unset( $this->to_exclude ); 2213 2214 $this->assertEqualSets( array( $top_level_0, $child1_of_0, $top_level_comments[0], $top_level_comments[2] ), wp_list_pluck( $q->comments, 'comment_ID' ) ); 2215 } 2216 2217 public function append_exclusions( $clauses ) { 2218 global $wpdb; 2219 $clauses['where'] .= $wpdb->prepare( ' AND comment_ID != %d AND comment_ID != %d', $this->to_exclude[0], $this->to_exclude[1] ); 2220 return $clauses; 2221 } 2222 /** 2132 2223 * @ticket 27571 2133 2224 */
Note: See TracChangeset
for help on using the changeset viewer.