mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Add tests for get_category_parents().
See #30415. git-svn-id: https://develop.svn.wordpress.org/trunk@31299 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
64
tests/phpunit/tests/category/getCategoryParents.php
Normal file
64
tests/phpunit/tests/category/getCategoryParents.php
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @group taxonomy
|
||||
*/
|
||||
class Tests_Category_GetCategoryParents extends WP_UnitTestCase {
|
||||
protected $c1;
|
||||
protected $c2;
|
||||
|
||||
public function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
$this->c1 = $this->factory->category->create_and_get();
|
||||
$this->c2 = $this->factory->category->create_and_get( array(
|
||||
'parent' => $this->c1->term_id,
|
||||
) );
|
||||
}
|
||||
|
||||
public function test_should_return_wp_error_for_invalid_category() {
|
||||
$this->assertWPError( get_category_parents( '' ) );
|
||||
}
|
||||
|
||||
public function test_with_default_parameters() {
|
||||
$expected = $this->c1->name . '/'. $this->c2->name . '/';
|
||||
$found = get_category_parents( $this->c2->term_id );
|
||||
$this->assertSame( $expected, $found );
|
||||
}
|
||||
|
||||
public function test_link_true() {
|
||||
$expected = '<a href="' . get_category_link( $this->c1->term_id ) . '">' . $this->c1->name . '</a>/<a href="' . get_category_link( $this->c2->term_id ) . '">'. $this->c2->name . '</a>/';
|
||||
$found = get_category_parents( $this->c2->term_id, true );
|
||||
$this->assertSame( $expected, $found );
|
||||
}
|
||||
|
||||
public function test_separator() {
|
||||
$expected = $this->c1->name . ' --- ' . $this->c2->name . ' --- ';
|
||||
$found = get_category_parents( $this->c2->term_id, false, ' --- ', false );
|
||||
$this->assertSame( $expected, $found );
|
||||
}
|
||||
|
||||
public function test_nicename_false() {
|
||||
$expected = $this->c1->name . '/'. $this->c2->name . '/';
|
||||
$found = get_category_parents( $this->c2->term_id, false, '/', false );
|
||||
$this->assertSame( $expected, $found );
|
||||
}
|
||||
|
||||
public function test_nicename_true() {
|
||||
$expected = $this->c1->slug . '/'. $this->c2->slug . '/';
|
||||
$found = get_category_parents( $this->c2->term_id, false, '/', true );
|
||||
$this->assertSame( $expected, $found );
|
||||
}
|
||||
|
||||
public function test_visited() {
|
||||
$c3 = $this->factory->category->create_and_get( array(
|
||||
'parent' => $this->c2->term_id,
|
||||
) );
|
||||
$c4 = $this->factory->category->create_and_get( array(
|
||||
'parent' => $c3->term_id,
|
||||
) );
|
||||
|
||||
$expected = $this->c1->name . '/'. $this->c2->name . '/' . $c4->name . '/';
|
||||
$found = get_category_parents( $this->c2->term_id, false, '/', false, array( $c3->term_id ) );
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user