121 lines
2.8 KiB
PHP
121 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* Tests for content record normalization.
|
|
*
|
|
* @package WPContentSync
|
|
*/
|
|
|
|
namespace WPContentSync\Tests\Unit\Content;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use WPContentSync\Content\ContentRecordNormalizer;
|
|
|
|
class ContentRecordNormalizerTest extends TestCase {
|
|
public function test_it_normalizes_post_records(): void {
|
|
$normalizer = new ContentRecordNormalizer();
|
|
|
|
$record = $normalizer->post(
|
|
array(
|
|
'id' => '42',
|
|
'post_type' => '<b>post</b>',
|
|
'post_title' => "Hello\nWorld",
|
|
'post_content' => '<p>Keep HTML</p>',
|
|
'post_excerpt' => '<em>Excerpt</em>',
|
|
'post_status' => 'publish',
|
|
'post_name' => 'hello-world',
|
|
'post_parent' => '7',
|
|
'menu_order' => '3',
|
|
'meta' => array(
|
|
'_source_url' => 'https://source.test/page',
|
|
),
|
|
)
|
|
);
|
|
|
|
self::assertSame(
|
|
array(
|
|
'id' => 42,
|
|
'post_type' => 'post',
|
|
'post_title' => 'Hello World',
|
|
'post_content' => '<p>Keep HTML</p>',
|
|
'post_excerpt' => 'Excerpt',
|
|
'post_status' => 'publish',
|
|
'post_name' => 'hello-world',
|
|
'post_parent' => 7,
|
|
'menu_order' => 3,
|
|
'meta' => array(
|
|
'_source_url' => 'https://source.test/page',
|
|
),
|
|
),
|
|
$record
|
|
);
|
|
}
|
|
|
|
public function test_it_normalizes_term_records(): void {
|
|
$normalizer = new ContentRecordNormalizer();
|
|
|
|
$record = $normalizer->term(
|
|
array(
|
|
'id' => '9',
|
|
'taxonomy' => '<b>category</b>',
|
|
'name' => "News\nUpdates",
|
|
'slug' => 'news-updates',
|
|
'description' => '<p>Keep description HTML</p>',
|
|
'parent' => '2',
|
|
'meta' => array(
|
|
'landing_url' => 'https://source.test/news',
|
|
),
|
|
)
|
|
);
|
|
|
|
self::assertSame(
|
|
array(
|
|
'id' => 9,
|
|
'taxonomy' => 'category',
|
|
'name' => 'News Updates',
|
|
'slug' => 'news-updates',
|
|
'description' => '<p>Keep description HTML</p>',
|
|
'parent' => 2,
|
|
'meta' => array(
|
|
'landing_url' => 'https://source.test/news',
|
|
),
|
|
),
|
|
$record
|
|
);
|
|
}
|
|
|
|
public function test_it_normalizes_media_records(): void {
|
|
$normalizer = new ContentRecordNormalizer();
|
|
|
|
$record = $normalizer->media(
|
|
array(
|
|
'id' => '12',
|
|
'post_title' => "Hero\nImage",
|
|
'post_mime_type' => 'image/jpeg',
|
|
'source_url' => 'https://source.test/uploads/hero.jpg',
|
|
'metadata' => array(
|
|
'width' => 1200,
|
|
),
|
|
'meta' => array(
|
|
'_wp_attachment_image_alt' => 'Hero',
|
|
),
|
|
)
|
|
);
|
|
|
|
self::assertSame(
|
|
array(
|
|
'id' => 12,
|
|
'post_title' => 'Hero Image',
|
|
'post_mime_type' => 'image/jpeg',
|
|
'source_url' => 'https://source.test/uploads/hero.jpg',
|
|
'metadata' => array(
|
|
'width' => 1200,
|
|
),
|
|
'meta' => array(
|
|
'_wp_attachment_image_alt' => 'Hero',
|
|
),
|
|
),
|
|
$record
|
|
);
|
|
}
|
|
}
|