HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/delta/wp-content/themes/delta/vendor/timber/timber/tests/test-timber-revisions.php
<?php

	class TestTimberRevisions extends Timber_UnitTestCase {

		public function setRevision( $post_id ) {
			global $wp_query;
			$wp_query->queried_object_id = $post_id;
			$wp_query->queried_object = get_post($post_id);
			$_GET['preview'] = true;
			$_GET['preview_nonce'] = wp_create_nonce('post_preview_' . $post_id);

		}

		function testParentOfPost() {
			// Register Custom Post Type

			$args = array(
				'label'                 => __( 'Box', 'text_domain' ),
				'description'           => __( 'Post Type Description', 'text_domain' ),
				'supports'              => array( 'title', 'editor', 'revisions' ),
				'taxonomies'            => array( 'category', 'post_tag' ),
				'hierarchical'          => true,
				'public'                => true,
				'show_ui'               => true,
				'show_in_menu'          => true,
				'menu_position'         => 5,
				'show_in_admin_bar'     => true,
				'show_in_nav_menus'     => true,
				'can_export'            => true,
				'has_archive'           => true,
				'exclude_from_search'   => false,
				'publicly_queryable'    => true,
				'capability_type'       => 'page',
			);
			register_post_type( 'box', $args );

			global $current_user;
			global $wp_query;

			$uid = self::factory()->user->create(array(
				'user_login' => 'timber',
				'user_pass' => 'timber',
			));
			$user = wp_set_current_user($uid);
			$user->add_role('administrator');

			$parent_id = self::factory()->post->create(array(
				'post_content' => 'I am parent',
				'post_type' => 'box',
				'post_author' => $uid
			));

			$post_id = self::factory()->post->create(array(
				'post_content' => 'I am child',
				'post_type' => 'box',
				'post_author' => $uid,
				'post_parent' => $parent_id
 			));

 			$revision_id = self::factory()->post->create(array(
				'post_type' => 'revision',
				'post_status' => 'inherit',
				'post_parent' => $post_id,
				'post_content' => 'I am revised'
			));

			$post = new Timber\Post($post_id);
			$parent = new Timber\Post($parent_id);

			//$this->assertEquals($parent_id, $post->parent()->id);


			self::setRevision($post_id);
			$revision = new Timber\Post();

			$this->assertEquals('I am revised', trim(strip_tags($revision->content())) );

			$revision_parent = $revision->parent();
			$this->assertEquals($parent_id, $revision_parent->id);
			$this->assertEquals('I am parent', trim(strip_tags($revision_parent->content())) );

		}

		function testPreviewClass() {
			global $current_user;
			global $wp_query;

			$quote = 'The way to do well is to do well.';
			$post_id = self::factory()->post->create(array(
				'post_content' => $quote,
				'post_author' => 5
			));
			$revision_id = self::factory()->post->create(array(
				'post_type' => 'revision',
				'post_status' => 'inherit',
				'post_parent' => $post_id,
				'post_content' => $quote . 'Yes'
			));

			$uid = self::factory()->user->create(array(
				'user_login' => 'timber',
				'user_pass' => 'timber',
			));

			$original_post = new Timber\Post($post_id);
			$user = wp_set_current_user($uid);

			$user->add_role('administrator');
			$wp_query->queried_object_id = $post_id;
			$wp_query->queried_object = get_post($post_id);
			$_GET['preview'] = true;
			$_GET['preview_nonce'] = wp_create_nonce('post_preview_' . $post_id);
			$post = new TimberPost();
			$this->assertEquals( $original_post->class(), $post->class() );
		}

		function testPreviewTitleWithID() {
			global $current_user;
			global $wp_query;

			$post_id = self::factory()->post->create(array(
				'post_title' => 'I call it banana bread',
				'post_author' => 5
			));
			$revision_id = self::factory()->post->create(array(
				'post_type' => 'revision',
				'post_status' => 'inherit',
				'post_parent' => $post_id,
				'post_title' => 'I call it fromage'
			));

			$uid = self::factory()->user->create(array(
				'user_login' => 'timber',
				'user_pass' => 'timber',
			));
			$user = wp_set_current_user($uid);

			$user->add_role('administrator');
			$wp_query->queried_object_id = $post_id;
			$wp_query->queried_object = get_post($post_id);
			$_GET['preview'] = true;
			$_GET['preview_nonce'] = wp_create_nonce('post_preview_' . $post_id);
			$post = new TimberPost($post_id);
			$this->assertEquals( 'I call it fromage', $post->title() );
		}

		function testPreviewContentWithID() {
			global $current_user;
			global $wp_query;

			$quote = 'The way to do well is to do well.';
			$post_id = self::factory()->post->create(array(
				'post_content' => $quote,
				'post_author' => 5
			));
			$revision_id = self::factory()->post->create(array(
				'post_type' => 'revision',
				'post_status' => 'inherit',
				'post_parent' => $post_id,
				'post_content' => $quote . 'Yes'
			));

			$uid = self::factory()->user->create(array(
				'user_login' => 'timber',
				'user_pass' => 'timber',
			));
			$user = wp_set_current_user($uid);

			$user->add_role('administrator');
			$wp_query->queried_object_id = $post_id;
			$wp_query->queried_object = get_post($post_id);
			$_GET['preview'] = true;
			$_GET['preview_nonce'] = wp_create_nonce('post_preview_' . $post_id);
			$post = new TimberPost($post_id);
			$this->assertEquals( $quote . 'Yes', trim(strip_tags($post->content())) );
		}

		function testPreviewContent(){
			global $current_user;
			global $wp_query;

			$quote = 'The way to do well is to do well.';
			$post_id = self::factory()->post->create(array(
				'post_content' => $quote,
				'post_author' => 5
			));
			$revision_id = self::factory()->post->create(array(
				'post_type' => 'revision',
				'post_status' => 'inherit',
				'post_parent' => $post_id,
				'post_content' => $quote . 'Yes'
			));

			$uid = self::factory()->user->create(array(
				'user_login' => 'timber',
				'user_pass' => 'timber',
			));
			$user = wp_set_current_user($uid);

			$user->add_role('administrator');
			$wp_query->queried_object_id = $post_id;
			$wp_query->queried_object = get_post($post_id);
			$_GET['preview'] = true;
			$_GET['preview_nonce'] = wp_create_nonce('post_preview_' . $post_id);
			$post = new TimberPost();
			$this->assertEquals( $quote . 'Yes', trim(strip_tags($post->content())) );
		}

		function testMultiPreviewRevisions(){
			global $current_user;
			global $wp_query;

			$quote = 'The way to do well is to do well.';
			$post_id = self::factory()->post->create(array(
				'post_content' => $quote,
				'post_author' => 5
			));
			$old_revision_id = self::factory()->post->create(array(
				'post_type' => 'revision',
				'post_status' => 'inherit',
				'post_parent' => $post_id,
				'post_content' => $quote . 'Yes'
			));

			$revision_id = self::factory()->post->create(array(
				'post_type' => 'revision',
				'post_status' => 'inherit',
				'post_parent' => $post_id,
				'post_content' => 'I am the one'
			));

			$uid = self::factory()->user->create(array(
				'user_login' => 'timber',
				'user_pass' => 'timber',
			));
			$user = wp_set_current_user($uid);

			$user->add_role('administrator');
			$wp_query->queried_object_id = $post_id;
			$wp_query->queried_object = get_post($post_id);
			$_GET['preview'] = true;
			$_GET['preview_nonce'] = wp_create_nonce('post_preview_' . $post_id);
			$post = new TimberPost();
			$this->assertEquals('I am the one', trim(strip_tags($post->content())) );
		}

		function testCustomFieldPreviewRevisionMethod(){
			global $current_user;
			global $wp_query;

			$post_id = self::factory()->post->create(array(
				'post_author' => 5,
			));
			update_field('test_field', 'The custom field content', $post_id);

			$assertCustomFieldVal = 'This has been revised';
			$revision_id = self::factory()->post->create(array(
				'post_type' => 'revision',
				'post_status' => 'inherit',
				'post_parent' => $post_id,
			));
			update_field('test_field', $assertCustomFieldVal, $revision_id);

			$uid = self::factory()->user->create(array(
				'user_login' => 'timber',
				'user_pass' => 'timber',
			));
			$user = wp_set_current_user($uid);
			$user->add_role('administrator');

			$wp_query->queried_object_id = $post_id;
			$wp_query->queried_object = get_post($post_id);
			$_GET['preview'] = true;
			$_GET['preview_nonce'] = wp_create_nonce('post_preview_' . $post_id);
			$post = new TimberPost($post_id);
			$str_getfield = Timber::compile_string('{{post.get_field(\'test_field\')}}', array('post' => $post));
			$this->assertEquals( $assertCustomFieldVal, $str_getfield );
		}

		function testCustomFieldPreviewRevisionImported(){
			global $current_user;
			global $wp_query;

			$post_id = self::factory()->post->create(array(
				'post_author' => 5,
			));
			update_field('test_field', 'The custom field content', $post_id);

			$assertCustomFieldVal = 'This has been revised';
			$revision_id = self::factory()->post->create(array(
				'post_type' => 'revision',
				'post_status' => 'inherit',
				'post_parent' => $post_id,
			));
			update_field('test_field', $assertCustomFieldVal, $revision_id);

			$uid = self::factory()->user->create(array(
				'user_login' => 'timber',
				'user_pass' => 'timber',
			));
			$user = wp_set_current_user($uid);
			$user->add_role('administrator');

			$wp_query->queried_object_id = $post_id;
			$wp_query->queried_object = get_post($post_id);
			$_GET['preview'] = true;
			$_GET['preview_nonce'] = wp_create_nonce('post_preview_' . $post_id);
			$post = new TimberPost($post_id);
			$str_direct = Timber::compile_string('{{post.test_field}}', array('post' => $post));
			$this->assertEquals( $assertCustomFieldVal, $str_direct );
		}

		function testCustomFieldPreviewNotRevision() {
			global $current_user;
			global $wp_query;
			$original_content = 'The custom field content';

			$post_id = self::factory()->post->create(array(
				'post_author' => 5,
			));
			update_field('test_field', $original_content, $post_id);

			$assertCustomFieldVal = 'This has been revised';
			$revision_id = self::factory()->post->create(array(
				'post_type' => 'revision',
				'post_status' => 'inherit',
				'post_parent' => $post_id,
			));
			update_field('test_field', $assertCustomFieldVal, $revision_id);

			$uid = self::factory()->user->create(array(
				'user_login' => 'timber',
				'user_pass' => 'timber',
			));
			$user = wp_set_current_user($uid);
			$user->add_role('administrator');

			$wp_query->queried_object_id = $post_id;
			$wp_query->queried_object = get_post($post_id);
			$post = new TimberPost($post_id);

			$str_direct = Timber::compile_string('{{post.test_field}}', array('post' => $post));
			$str_getfield = Timber::compile_string('{{post.get_field(\'test_field\')}}', array('post' => $post));

			$this->assertEquals( $original_content, $str_direct );
			$this->assertEquals( $original_content, $str_getfield );
		}
}