<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
<?php

namespace Extendify\Tests\Integration;

use Extendify\Shared\Services\Import\Post;
use WP_UnitTestCase;

class CronTest extends WP_UnitTestCase
{
    public function test_cron_executes()
    {
        $isLocked = false;
        $cronUserId = null;
        $user = self::factory()->user->create();
        wp_set_current_user($user);
        $postId = self::factory()->post->create(['post_content' => '<p>original</p>']);
        wp_set_post_lock($postId);

        // Cron runs as no user, so we need to reset the current user to 0 to simulate that.
        wp_set_current_user(0);
        add_action('my_cron_hook', function () use ($postId, &$isLocked, &$cronUserId) {
            $isLocked = wp_check_post_lock($postId);
            $cronUserId = get_current_user_id();
        });

        wp_schedule_single_event(time() - 10, 'my_cron_hook');

        $crons = _get_cron_array();
        foreach ($crons as $timestamp => $hooks) {
            if ($timestamp > time()) continue;

            foreach ($hooks as $hook => $events) {
                foreach ($events as $event) {
                    do_action_ref_array($hook, $event['args']);
                }
            }
        }

        $this->assertTrue(Post::isLocked($postId));
        $this->assertNotFalse(wp_check_post_lock($postId));
        $this->assertNotNull($postId);
        $this->assertIsNumeric($isLocked);
        $this->assertSame($user, $isLocked);
        $this->assertSame(0, $cronUserId);
    }
}
