forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostmeta.php
More file actions
102 lines (89 loc) · 3.28 KB
/
postmeta.php
File metadata and controls
102 lines (89 loc) · 3.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
require_once __DIR__ . '/base.php';
/**
* @group import
*/
class Tests_Import_Postmeta extends WP_Import_UnitTestCase {
function setUp() {
parent::setUp();
if ( ! defined( 'WP_IMPORTING' ) ) {
define( 'WP_IMPORTING', true );
}
if ( ! defined( 'WP_LOAD_IMPORTERS' ) ) {
define( 'WP_LOAD_IMPORTERS', true );
}
if ( ! file_exists( DIR_TESTDATA . '/plugins/wordpress-importer/wordpress-importer.php' ) ) {
$this->fail( 'This test requires the WordPress Importer plugin to be installed in the test suite. See: https://make.wordpress.org/core/handbook/contribute/git/#unit-tests' );
}
require_once DIR_TESTDATA . '/plugins/wordpress-importer/wordpress-importer.php';
}
function test_serialized_postmeta_no_cdata() {
$this->_import_wp( DIR_TESTDATA . '/export/test-serialized-postmeta-no-cdata.xml', array( 'johncoswell' => 'john' ) );
$expected['special_post_title'] = 'A special title';
$expected['is_calendar'] = '';
$this->assertSame( $expected, get_post_meta( 122, 'post-options', true ) );
}
function test_utw_postmeta() {
$this->_import_wp( DIR_TESTDATA . '/export/test-utw-post-meta-import.xml', array( 'johncoswell' => 'john' ) );
$classy = new StdClass();
$classy->tag = 'album';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'apple';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'art';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'artwork';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'dead-tracks';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'ipod';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'itunes';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'javascript';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'lyrics';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'script';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'tracks';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'windows-scripting-host';
$expected[] = $classy;
$classy = new StdClass();
$classy->tag = 'wscript';
$expected[] = $classy;
$this->assertEquals( $expected, get_post_meta( 150, 'test', true ) );
}
/**
* @ticket 9633
*/
function test_serialized_postmeta_with_cdata() {
$this->_import_wp( DIR_TESTDATA . '/export/test-serialized-postmeta-with-cdata.xml', array( 'johncoswell' => 'johncoswell' ) );
// HTML in the CDATA should work with old WordPress version.
$this->assertSame( '<pre>some html</pre>', get_post_meta( 10, 'contains-html', true ) );
// Serialised will only work with 3.0 onwards.
$expected['special_post_title'] = 'A special title';
$expected['is_calendar'] = '';
$this->assertSame( $expected, get_post_meta( 10, 'post-options', true ) );
}
/**
* @ticket 11574
*/
function test_serialized_postmeta_with_evil_stuff_in_cdata() {
$this->_import_wp( DIR_TESTDATA . '/export/test-serialized-postmeta-with-cdata.xml', array( 'johncoswell' => 'johncoswell' ) );
// Evil content in the CDATA.
$this->assertSame( '<wp:meta_value>evil</wp:meta_value>', get_post_meta( 10, 'evil', true ) );
}
}