mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Includes minor code layout fixes for better readability. See #48303. git-svn-id: https://develop.svn.wordpress.org/trunk@47122 602fd350-edb4-49c9-b593-d223f7449a82
238 lines
7.4 KiB
PHP
238 lines
7.4 KiB
PHP
<?php
|
|
/**
|
|
* @group themes
|
|
*/
|
|
class Tests_Admin_includesTheme extends WP_UnitTestCase {
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
$this->theme_root = DIR_TESTDATA . '/themedir1';
|
|
|
|
$this->orig_theme_dir = $GLOBALS['wp_theme_directories'];
|
|
$GLOBALS['wp_theme_directories'] = array( WP_CONTENT_DIR . '/themes', $this->theme_root );
|
|
|
|
add_filter( 'theme_root', array( $this, '_theme_root' ) );
|
|
add_filter( 'stylesheet_root', array( $this, '_theme_root' ) );
|
|
add_filter( 'template_root', array( $this, '_theme_root' ) );
|
|
|
|
// Clear caches.
|
|
wp_clean_themes_cache();
|
|
unset( $GLOBALS['wp_themes'] );
|
|
}
|
|
|
|
function tearDown() {
|
|
$GLOBALS['wp_theme_directories'] = $this->orig_theme_dir;
|
|
remove_filter( 'theme_root', array( $this, '_theme_root' ) );
|
|
remove_filter( 'stylesheet_root', array( $this, '_theme_root' ) );
|
|
remove_filter( 'template_root', array( $this, '_theme_root' ) );
|
|
|
|
wp_clean_themes_cache();
|
|
unset( $GLOBALS['wp_themes'] );
|
|
parent::tearDown();
|
|
}
|
|
|
|
// Replace the normal theme root directory with our premade test directory.
|
|
function _theme_root( $dir ) {
|
|
return $this->theme_root;
|
|
}
|
|
|
|
/**
|
|
* @ticket 10959
|
|
* @ticket 11216
|
|
* @expectedDeprecated get_theme
|
|
* @expectedDeprecated get_themes
|
|
*/
|
|
function test_page_templates() {
|
|
$theme = get_theme( 'Page Template Theme' );
|
|
$this->assertNotEmpty( $theme );
|
|
|
|
switch_theme( $theme['Template'], $theme['Stylesheet'] );
|
|
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'Top Level' => 'template-top-level.php',
|
|
'Sub Dir' => 'subdir/template-sub-dir.php',
|
|
'This Template Header Is On One Line' => 'template-header.php',
|
|
),
|
|
get_page_templates()
|
|
);
|
|
|
|
$theme = wp_get_theme( 'page-templates' );
|
|
$this->assertNotEmpty( $theme );
|
|
|
|
switch_theme( $theme['Template'], $theme['Stylesheet'] );
|
|
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'Top Level' => 'template-top-level.php',
|
|
'Sub Dir' => 'subdir/template-sub-dir.php',
|
|
'This Template Header Is On One Line' => 'template-header.php',
|
|
),
|
|
get_page_templates()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @ticket 18375
|
|
*/
|
|
function test_page_templates_different_post_types() {
|
|
$theme = wp_get_theme( 'page-templates' );
|
|
$this->assertNotEmpty( $theme );
|
|
|
|
switch_theme( $theme['Template'], $theme['Stylesheet'] );
|
|
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'Top Level' => 'template-top-level-post-types.php',
|
|
'Sub Dir' => 'subdir/template-sub-dir-post-types.php',
|
|
),
|
|
get_page_templates( null, 'foo' )
|
|
);
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'Top Level' => 'template-top-level-post-types.php',
|
|
'Sub Dir' => 'subdir/template-sub-dir-post-types.php',
|
|
),
|
|
get_page_templates( null, 'post' )
|
|
);
|
|
$this->assertEquals( array(), get_page_templates( null, 'bar' ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 38766
|
|
*/
|
|
function test_page_templates_for_post_types_with_trailing_periods() {
|
|
$theme = wp_get_theme( 'page-templates' );
|
|
$this->assertNotEmpty( $theme );
|
|
|
|
switch_theme( $theme['Template'], $theme['Stylesheet'] );
|
|
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'No Trailing Period' => '38766/no-trailing-period-post-types.php',
|
|
'Trailing Period.' => '38766/trailing-period-post-types.php',
|
|
'Trailing Comma,' => '38766/trailing-comma-post-types.php',
|
|
'Trailing Period, White Space.' => '38766/trailing-period-whitespace-post-types.php',
|
|
'Trailing White Space, Period.' => '38766/trailing-whitespace-period-post-types.php',
|
|
'Tilde in Post Type.' => '38766/tilde-post-types.php',
|
|
),
|
|
get_page_templates( null, 'period' )
|
|
);
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'No Trailing Period' => '38766/no-trailing-period-post-types.php',
|
|
'Trailing Period.' => '38766/trailing-period-post-types.php',
|
|
'Trailing Comma,' => '38766/trailing-comma-post-types.php',
|
|
'Trailing Period, White Space.' => '38766/trailing-period-whitespace-post-types.php',
|
|
'Trailing White Space, Period.' => '38766/trailing-whitespace-period-post-types.php',
|
|
),
|
|
get_page_templates( null, 'full-stop' )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @ticket 38696
|
|
*/
|
|
function test_page_templates_child_theme() {
|
|
$theme = wp_get_theme( 'page-templates-child' );
|
|
$this->assertNotEmpty( $theme );
|
|
|
|
switch_theme( $theme['Template'], $theme['Stylesheet'] );
|
|
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'Top Level' => 'template-top-level-post-types.php',
|
|
'Sub Dir' => 'subdir/template-sub-dir-post-types.php',
|
|
'Top Level In A Child Theme' => 'template-top-level-post-types-child.php',
|
|
'Sub Dir In A Child Theme' => 'subdir/template-sub-dir-post-types-child.php',
|
|
),
|
|
get_page_templates( null, 'foo' )
|
|
);
|
|
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'Top Level' => 'template-top-level-post-types.php',
|
|
'Sub Dir' => 'subdir/template-sub-dir-post-types.php',
|
|
),
|
|
get_page_templates( null, 'post' )
|
|
);
|
|
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'Top Level' => 'template-top-level.php',
|
|
'Sub Dir' => 'subdir/template-sub-dir.php',
|
|
'This Template Header Is On One Line' => 'template-header.php',
|
|
),
|
|
get_page_templates()
|
|
);
|
|
|
|
$this->assertEquals( array(), get_page_templates( null, 'bar' ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 41717
|
|
*/
|
|
public function test_get_post_templates_child_theme() {
|
|
$theme = wp_get_theme( 'page-templates-child' );
|
|
$this->assertNotEmpty( $theme );
|
|
|
|
switch_theme( $theme['Template'], $theme['Stylesheet'] );
|
|
|
|
$post_templates = $theme->get_post_templates();
|
|
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'template-top-level-post-types.php' => 'Top Level',
|
|
'subdir/template-sub-dir-post-types.php' => 'Sub Dir',
|
|
'template-top-level-post-types-child.php' => 'Top Level In A Child Theme',
|
|
'subdir/template-sub-dir-post-types-child.php' => 'Sub Dir In A Child Theme',
|
|
),
|
|
$post_templates['foo']
|
|
);
|
|
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'template-top-level-post-types.php' => 'Top Level',
|
|
'subdir/template-sub-dir-post-types.php' => 'Sub Dir',
|
|
),
|
|
$post_templates['post']
|
|
);
|
|
|
|
$this->assertEqualSetsWithIndex(
|
|
array(
|
|
'template-top-level.php' => 'Top Level',
|
|
'subdir/template-sub-dir.php' => 'Sub Dir',
|
|
'template-header.php' => 'This Template Header Is On One Line',
|
|
),
|
|
$post_templates['page']
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test that the list of theme features pulled from the WordPress.org API returns the expected data structure.
|
|
*
|
|
* Differences in the structure can also trigger failure by causing PHP notices/warnings.
|
|
*
|
|
* @group external-http
|
|
* @ticket 28121
|
|
*/
|
|
function test_get_theme_featured_list_api() {
|
|
wp_set_current_user( $this->factory->user->create( array( 'role' => 'administrator' ) ) );
|
|
$featured_list_api = get_theme_feature_list( true );
|
|
$this->assertNonEmptyMultidimensionalArray( $featured_list_api );
|
|
}
|
|
|
|
/**
|
|
* Test that the list of theme features hardcoded into Core returns the expected data structure.
|
|
*
|
|
* Differences in the structure can also trigger failure by causing PHP notices/warnings.
|
|
*
|
|
* @group external-http
|
|
* @ticket 28121
|
|
*/
|
|
function test_get_theme_featured_list_hardcoded() {
|
|
$featured_list_hardcoded = get_theme_feature_list( false );
|
|
$this->assertNonEmptyMultidimensionalArray( $featured_list_hardcoded );
|
|
}
|
|
}
|