Changeset 36357 for branches/4.4/tests/phpunit/tests/comment/query.php
- Timestamp:
- 01/20/2016 05:27:07 AM (5 years ago)
- Location:
- branches/4.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.4
-
branches/4.4/tests/phpunit/tests/comment/query.php
r35512 r36357 2113 2113 2114 2114 /** 2115 * @ticket 35192 2116 */ 2117 public function test_comment_clauses_prepend_callback_should_be_respected_when_filling_descendants() { 2118 $top_level_0 = self::factory()->comment->create( array( 2119 'comment_post_ID' => $this->post_id, 2120 'comment_approved' => '1', 2121 ) ); 2122 2123 $child1_of_0 = self::factory()->comment->create( array( 2124 'comment_post_ID' => $this->post_id, 2125 'comment_approved' => '1', 2126 'comment_parent' => $top_level_0, 2127 ) ); 2128 2129 $child2_of_0 = self::factory()->comment->create( array( 2130 'comment_post_ID' => $this->post_id, 2131 'comment_approved' => '1', 2132 'comment_parent' => $top_level_0, 2133 ) ); 2134 2135 $top_level_comments = self::factory()->comment->create_many( 3, array( 2136 'comment_post_ID' => $this->post_id, 2137 'comment_approved' => '1', 2138 ) ); 2139 2140 $this->to_exclude = array( $child2_of_0, $top_level_comments[1] ); 2141 2142 add_filter( 'comments_clauses', array( $this, 'prepend_exclusions' ) ); 2143 $q = new WP_Comment_Query( array( 2144 'post_id' => $this->post_id, 2145 'hierarchical' => 'flat', 2146 ) ); 2147 remove_filter( 'comments_clauses', array( $this, 'prepend_exclusions' ) ); 2148 2149 unset( $this->to_exclude ); 2150 2151 $this->assertEqualSets( array( $top_level_0, $child1_of_0, $top_level_comments[0], $top_level_comments[2] ), wp_list_pluck( $q->comments, 'comment_ID' ) ); 2152 } 2153 2154 public function prepend_exclusions( $clauses ) { 2155 global $wpdb; 2156 $clauses['where'] = $wpdb->prepare( 'comment_ID != %d AND comment_ID != %d AND ', $this->to_exclude[0], $this->to_exclude[1] ) . $clauses['where']; 2157 return $clauses; 2158 } 2159 2160 /** 2161 * @ticket 35192 2162 */ 2163 public function test_comment_clauses_append_callback_should_be_respected_when_filling_descendants() { 2164 $top_level_0 = self::factory()->comment->create( array( 2165 'comment_post_ID' => $this->post_id, 2166 'comment_approved' => '1', 2167 ) ); 2168 2169 $child1_of_0 = self::factory()->comment->create( array( 2170 'comment_post_ID' => $this->post_id, 2171 'comment_approved' => '1', 2172 'comment_parent' => $top_level_0, 2173 ) ); 2174 2175 $child2_of_0 = self::factory()->comment->create( array( 2176 'comment_post_ID' => $this->post_id, 2177 'comment_approved' => '1', 2178 'comment_parent' => $top_level_0, 2179 ) ); 2180 2181 $top_level_comments = self::factory()->comment->create_many( 3, array( 2182 'comment_post_ID' => $this->post_id, 2183 'comment_approved' => '1', 2184 ) ); 2185 2186 $this->to_exclude = array( $child2_of_0, $top_level_comments[1] ); 2187 2188 add_filter( 'comments_clauses', array( $this, 'append_exclusions' ) ); 2189 $q = new WP_Comment_Query( array( 2190 'post_id' => $this->post_id, 2191 'hierarchical' => 'flat', 2192 ) ); 2193 remove_filter( 'comments_clauses', array( $this, 'append_exclusions' ) ); 2194 2195 unset( $this->to_exclude ); 2196 2197 $this->assertEqualSets( array( $top_level_0, $child1_of_0, $top_level_comments[0], $top_level_comments[2] ), wp_list_pluck( $q->comments, 'comment_ID' ) ); 2198 } 2199 2200 public function append_exclusions( $clauses ) { 2201 global $wpdb; 2202 $clauses['where'] .= $wpdb->prepare( ' AND comment_ID != %d AND comment_ID != %d', $this->to_exclude[0], $this->to_exclude[1] ); 2203 return $clauses; 2204 } 2205 /** 2115 2206 * @ticket 27571 2116 2207 */
Note: See TracChangeset
for help on using the changeset viewer.