|
Apache/2.4.41 (Ubuntu) Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) server ip : 62.171.164.128 | your ip : 127.0.0.1 safemode OFF > / home / dev2.destoffenstraat.com / vendor / magento / framework / Crontab / Test / Unit / |
Filename | /home/dev2.destoffenstraat.com/vendor/magento/framework/Crontab/Test/Unit/CrontabManagerTest.php |
Size | 14.54 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 17-Aug-2025 10:26 |
Last modified | 07-Jan-2021 21:08 |
Last accessed | 23-Aug-2025 03:56 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Crontab\Test\Unit;
use Magento\Framework\App\Filesystem\DirectoryList;
use Magento\Framework\Crontab\CrontabManager;
use Magento\Framework\Crontab\CrontabManagerInterface;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Filesystem;
use Magento\Framework\Filesystem\Directory\ReadInterface;
use Magento\Framework\Filesystem\DriverPool;
use Magento\Framework\Phrase;
use Magento\Framework\ShellInterface;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
/**
* Tests crontab manager functionality.
*/
class CrontabManagerTest extends TestCase
{
/**
* @var ShellInterface|MockObject
*/
private $shellMock;
/**
* @var Filesystem|MockObject
*/
private $filesystemMock;
/**
* @var CrontabManager
*/
private $crontabManager;
/**
* @inheritDoc
*/
protected function setUp(): void
{
$this->shellMock = $this->getMockBuilder(ShellInterface::class)
->getMockForAbstractClass();
$this->filesystemMock = $this->getMockBuilder(Filesystem::class)
->disableOriginalClone()
->disableOriginalConstructor()
->getMock();
$this->crontabManager = new CrontabManager($this->shellMock, $this->filesystemMock);
}
/**
* Verify get tasks without cronetab.
*
* @return void
*/
public function testGetTasksNoCrontab(): void
{
$exception = new \Exception('crontab: no crontab for user');
$localizedException = new LocalizedException(new Phrase('Some error'), $exception);
$this->shellMock->expects($this->once())
->method('execute')
->with('crontab -l 2>/dev/null', [])
->willThrowException($localizedException);
$this->assertEquals([], $this->crontabManager->getTasks());
}
/**
* Verify get tasks.
*
* @param string $content
* @param array $tasks
* @return void
* @dataProvider getTasksDataProvider
*/
public function testGetTasks($content, $tasks): void
{
$this->shellMock->expects($this->once())
->method('execute')
->with('crontab -l 2>/dev/null', [])
->willReturn($content);
$this->assertEquals($tasks, $this->crontabManager->getTasks());
}
/**
* Data provider to get tasks.
*
* @return array
*/
public function getTasksDataProvider(): array
{
return [
[
'content' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * /bin/php /var/www/magento/bin/magento cron:run' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
'tasks' => ['* * * * * /bin/php /var/www/magento/bin/magento cron:run'],
],
[
'content' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * /bin/php /var/www/magento/bin/magento cron:run' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
'tasks' => [
'* * * * * /bin/php /var/www/magento/bin/magento cron:run',
],
],
[
'content' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL,
'tasks' => [],
],
[
'content' => '',
'tasks' => [],
],
];
}
/**
* Verify remove tasks with exception.
*
* @return void
*/
public function testRemoveTasksWithException(): void
{
$this->expectException('Magento\Framework\Exception\LocalizedException');
$this->expectExceptionMessage('Shell error');
$exception = new \Exception('Shell error');
$localizedException = new LocalizedException(new Phrase('Some error'), $exception);
$this->shellMock->expects($this->at(0))
->method('execute')
->with('crontab -l 2>/dev/null', [])
->willReturn('');
$this->shellMock->expects($this->at(1))
->method('execute')
->with('echo "" | crontab -', [])
->willThrowException($localizedException);
$this->crontabManager->removeTasks();
}
/**
* Verify remove tasks.
*
* @param string $contentBefore
* @param string $contentAfter
* @return void
* @dataProvider removeTasksDataProvider
*/
public function testRemoveTasks($contentBefore, $contentAfter): void
{
$this->shellMock->expects($this->at(0))
->method('execute')
->with('crontab -l 2>/dev/null', [])
->willReturn($contentBefore);
$this->shellMock->expects($this->at(1))
->method('execute')
->with('echo "' . $contentAfter . '" | crontab -', []);
$this->crontabManager->removeTasks();
}
/**
* Data provider to remove tasks.
*
* @return array
*/
public function removeTasksDataProvider(): array
{
return [
[
'contentBefore' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * /bin/php /var/www/magento/bin/magento cron:run' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
'contentAfter' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
],
[
'contentBefore' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * /bin/php /var/www/magento/bin/magento cron:run' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
'contentAfter' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
],
[
'contentBefore' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL,
'contentAfter' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
],
[
'contentBefore' => '',
'contentAfter' => ''
],
];
}
/**
* Verify save tasks with empty tasks list.
*
* @return void
*/
public function testSaveTasksWithEmptyTasksList(): void
{
$this->expectException('Magento\Framework\Exception\LocalizedException');
$this->expectExceptionMessage('The list of tasks is empty. Add tasks and try again.');
$baseDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$baseDirMock->expects($this->never())
->method('getAbsolutePath')
->willReturn('/var/www/magento2/');
$logDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$logDirMock->expects($this->never())
->method('getAbsolutePath');
$this->filesystemMock->expects($this->any())
->method('getDirectoryRead')
->willReturnMap([
[DirectoryList::ROOT, DriverPool::FILE, $baseDirMock],
[DirectoryList::LOG, DriverPool::FILE, $logDirMock],
]);
$this->crontabManager->saveTasks([]);
}
/**
* Verify save tasks with out command.
*
* @return void
*/
public function testSaveTasksWithoutCommand(): void
{
$this->expectException('Magento\Framework\Exception\LocalizedException');
$this->expectExceptionMessage('The command shouldn\'t be empty. Enter and try again.');
$baseDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$baseDirMock->expects($this->once())
->method('getAbsolutePath')
->willReturn('/var/www/magento2/');
$logDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$logDirMock->expects($this->once())
->method('getAbsolutePath')
->willReturn('/var/www/magento2/var/log/');
$this->filesystemMock->expects($this->any())
->method('getDirectoryRead')
->willReturnMap([
[DirectoryList::ROOT, DriverPool::FILE, $baseDirMock],
[DirectoryList::LOG, DriverPool::FILE, $logDirMock],
]);
$this->crontabManager->saveTasks([
'myCron' => ['expression' => '* * * * *']
]);
}
/**
* Verify sava task.
*
* @param array $tasks
* @param string $content
* @param string $contentToSave
* @return void
* @dataProvider saveTasksDataProvider
*/
public function testSaveTasks($tasks, $content, $contentToSave): void
{
$baseDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$baseDirMock->expects($this->once())
->method('getAbsolutePath')
->willReturn('/var/www/magento2/');
$logDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$logDirMock->expects($this->once())
->method('getAbsolutePath')
->willReturn('/var/www/magento2/var/log/');
$this->filesystemMock->expects($this->any())
->method('getDirectoryRead')
->willReturnMap([
[DirectoryList::ROOT, DriverPool::FILE, $baseDirMock],
[DirectoryList::LOG, DriverPool::FILE, $logDirMock],
]);
$this->shellMock->expects($this->at(0))
->method('execute')
->with('crontab -l 2>/dev/null', [])
->willReturn($content);
$this->shellMock->expects($this->at(1))
->method('execute')
->with('echo "' . $contentToSave . '" | crontab -', []);
$this->crontabManager->saveTasks($tasks);
}
/**
* Data provider to save tasks.
*
* @return array
*/
public function saveTasksDataProvider(): array
{
$content = '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * /bin/php /var/www/magento/bin/magento cron:run' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL;
return [
[
'tasks' => [
['expression' => '* * * * *', 'command' => 'run.php']
],
'content' => $content,
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * ' . PHP_BINARY . ' run.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
[
'tasks' => [
['expression' => '1 2 3 4 5', 'command' => 'run.php']
],
'content' => $content,
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '1 2 3 4 5 ' . PHP_BINARY . ' run.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
[
'tasks' => [
['command' => '{magentoRoot}run.php >> {magentoLog}cron.log']
],
'content' => $content,
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * ' . PHP_BINARY . ' /var/www/magento2/run.php >>'
. ' /var/www/magento2/var/log/cron.log' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
[
'tasks' => [
['command' => '{magentoRoot}run.php % cron:run | grep -v "Ran \'jobs\' by schedule"']
],
'content' => $content,
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * ' . PHP_BINARY . ' /var/www/magento2/run.php'
. ' %% cron:run | grep -v \"Ran \'jobs\' by schedule\"' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
[
'tasks' => [
['command' => '{magentoRoot}run.php % cron:run | grep -v "Ran \'jobs\' by schedule"']
],
'content' => '* * * * * /bin/php /var/www/cron.php',
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * ' . PHP_BINARY . ' /var/www/magento2/run.php'
. ' %% cron:run | grep -v \"Ran \'jobs\' by schedule\"' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
[
'tasks' => [
['command' => '{magentoRoot}run.php mysqldump db > db-$(date +%F).sql']
],
'content' => '* * * * * /bin/php /var/www/cron.php',
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * ' . PHP_BINARY . ' /var/www/magento2/run.php'
. ' mysqldump db > db-\$(date +%%F).sql' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
];
}
}
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Crontab\Test\Unit;
use Magento\Framework\App\Filesystem\DirectoryList;
use Magento\Framework\Crontab\CrontabManager;
use Magento\Framework\Crontab\CrontabManagerInterface;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Filesystem;
use Magento\Framework\Filesystem\Directory\ReadInterface;
use Magento\Framework\Filesystem\DriverPool;
use Magento\Framework\Phrase;
use Magento\Framework\ShellInterface;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
/**
* Tests crontab manager functionality.
*/
class CrontabManagerTest extends TestCase
{
/**
* @var ShellInterface|MockObject
*/
private $shellMock;
/**
* @var Filesystem|MockObject
*/
private $filesystemMock;
/**
* @var CrontabManager
*/
private $crontabManager;
/**
* @inheritDoc
*/
protected function setUp(): void
{
$this->shellMock = $this->getMockBuilder(ShellInterface::class)
->getMockForAbstractClass();
$this->filesystemMock = $this->getMockBuilder(Filesystem::class)
->disableOriginalClone()
->disableOriginalConstructor()
->getMock();
$this->crontabManager = new CrontabManager($this->shellMock, $this->filesystemMock);
}
/**
* Verify get tasks without cronetab.
*
* @return void
*/
public function testGetTasksNoCrontab(): void
{
$exception = new \Exception('crontab: no crontab for user');
$localizedException = new LocalizedException(new Phrase('Some error'), $exception);
$this->shellMock->expects($this->once())
->method('execute')
->with('crontab -l 2>/dev/null', [])
->willThrowException($localizedException);
$this->assertEquals([], $this->crontabManager->getTasks());
}
/**
* Verify get tasks.
*
* @param string $content
* @param array $tasks
* @return void
* @dataProvider getTasksDataProvider
*/
public function testGetTasks($content, $tasks): void
{
$this->shellMock->expects($this->once())
->method('execute')
->with('crontab -l 2>/dev/null', [])
->willReturn($content);
$this->assertEquals($tasks, $this->crontabManager->getTasks());
}
/**
* Data provider to get tasks.
*
* @return array
*/
public function getTasksDataProvider(): array
{
return [
[
'content' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * /bin/php /var/www/magento/bin/magento cron:run' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
'tasks' => ['* * * * * /bin/php /var/www/magento/bin/magento cron:run'],
],
[
'content' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * /bin/php /var/www/magento/bin/magento cron:run' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
'tasks' => [
'* * * * * /bin/php /var/www/magento/bin/magento cron:run',
],
],
[
'content' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL,
'tasks' => [],
],
[
'content' => '',
'tasks' => [],
],
];
}
/**
* Verify remove tasks with exception.
*
* @return void
*/
public function testRemoveTasksWithException(): void
{
$this->expectException('Magento\Framework\Exception\LocalizedException');
$this->expectExceptionMessage('Shell error');
$exception = new \Exception('Shell error');
$localizedException = new LocalizedException(new Phrase('Some error'), $exception);
$this->shellMock->expects($this->at(0))
->method('execute')
->with('crontab -l 2>/dev/null', [])
->willReturn('');
$this->shellMock->expects($this->at(1))
->method('execute')
->with('echo "" | crontab -', [])
->willThrowException($localizedException);
$this->crontabManager->removeTasks();
}
/**
* Verify remove tasks.
*
* @param string $contentBefore
* @param string $contentAfter
* @return void
* @dataProvider removeTasksDataProvider
*/
public function testRemoveTasks($contentBefore, $contentAfter): void
{
$this->shellMock->expects($this->at(0))
->method('execute')
->with('crontab -l 2>/dev/null', [])
->willReturn($contentBefore);
$this->shellMock->expects($this->at(1))
->method('execute')
->with('echo "' . $contentAfter . '" | crontab -', []);
$this->crontabManager->removeTasks();
}
/**
* Data provider to remove tasks.
*
* @return array
*/
public function removeTasksDataProvider(): array
{
return [
[
'contentBefore' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * /bin/php /var/www/magento/bin/magento cron:run' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
'contentAfter' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
],
[
'contentBefore' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * /bin/php /var/www/magento/bin/magento cron:run' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
'contentAfter' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
],
[
'contentBefore' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL,
'contentAfter' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
],
[
'contentBefore' => '',
'contentAfter' => ''
],
];
}
/**
* Verify save tasks with empty tasks list.
*
* @return void
*/
public function testSaveTasksWithEmptyTasksList(): void
{
$this->expectException('Magento\Framework\Exception\LocalizedException');
$this->expectExceptionMessage('The list of tasks is empty. Add tasks and try again.');
$baseDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$baseDirMock->expects($this->never())
->method('getAbsolutePath')
->willReturn('/var/www/magento2/');
$logDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$logDirMock->expects($this->never())
->method('getAbsolutePath');
$this->filesystemMock->expects($this->any())
->method('getDirectoryRead')
->willReturnMap([
[DirectoryList::ROOT, DriverPool::FILE, $baseDirMock],
[DirectoryList::LOG, DriverPool::FILE, $logDirMock],
]);
$this->crontabManager->saveTasks([]);
}
/**
* Verify save tasks with out command.
*
* @return void
*/
public function testSaveTasksWithoutCommand(): void
{
$this->expectException('Magento\Framework\Exception\LocalizedException');
$this->expectExceptionMessage('The command shouldn\'t be empty. Enter and try again.');
$baseDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$baseDirMock->expects($this->once())
->method('getAbsolutePath')
->willReturn('/var/www/magento2/');
$logDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$logDirMock->expects($this->once())
->method('getAbsolutePath')
->willReturn('/var/www/magento2/var/log/');
$this->filesystemMock->expects($this->any())
->method('getDirectoryRead')
->willReturnMap([
[DirectoryList::ROOT, DriverPool::FILE, $baseDirMock],
[DirectoryList::LOG, DriverPool::FILE, $logDirMock],
]);
$this->crontabManager->saveTasks([
'myCron' => ['expression' => '* * * * *']
]);
}
/**
* Verify sava task.
*
* @param array $tasks
* @param string $content
* @param string $contentToSave
* @return void
* @dataProvider saveTasksDataProvider
*/
public function testSaveTasks($tasks, $content, $contentToSave): void
{
$baseDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$baseDirMock->expects($this->once())
->method('getAbsolutePath')
->willReturn('/var/www/magento2/');
$logDirMock = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$logDirMock->expects($this->once())
->method('getAbsolutePath')
->willReturn('/var/www/magento2/var/log/');
$this->filesystemMock->expects($this->any())
->method('getDirectoryRead')
->willReturnMap([
[DirectoryList::ROOT, DriverPool::FILE, $baseDirMock],
[DirectoryList::LOG, DriverPool::FILE, $logDirMock],
]);
$this->shellMock->expects($this->at(0))
->method('execute')
->with('crontab -l 2>/dev/null', [])
->willReturn($content);
$this->shellMock->expects($this->at(1))
->method('execute')
->with('echo "' . $contentToSave . '" | crontab -', []);
$this->crontabManager->saveTasks($tasks);
}
/**
* Data provider to save tasks.
*
* @return array
*/
public function saveTasksDataProvider(): array
{
$content = '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * /bin/php /var/www/magento/bin/magento cron:run' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL;
return [
[
'tasks' => [
['expression' => '* * * * *', 'command' => 'run.php']
],
'content' => $content,
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * ' . PHP_BINARY . ' run.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
[
'tasks' => [
['expression' => '1 2 3 4 5', 'command' => 'run.php']
],
'content' => $content,
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '1 2 3 4 5 ' . PHP_BINARY . ' run.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
[
'tasks' => [
['command' => '{magentoRoot}run.php >> {magentoLog}cron.log']
],
'content' => $content,
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * ' . PHP_BINARY . ' /var/www/magento2/run.php >>'
. ' /var/www/magento2/var/log/cron.log' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
[
'tasks' => [
['command' => '{magentoRoot}run.php % cron:run | grep -v "Ran \'jobs\' by schedule"']
],
'content' => $content,
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * ' . PHP_BINARY . ' /var/www/magento2/run.php'
. ' %% cron:run | grep -v \"Ran \'jobs\' by schedule\"' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
[
'tasks' => [
['command' => '{magentoRoot}run.php % cron:run | grep -v "Ran \'jobs\' by schedule"']
],
'content' => '* * * * * /bin/php /var/www/cron.php',
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * ' . PHP_BINARY . ' /var/www/magento2/run.php'
. ' %% cron:run | grep -v \"Ran \'jobs\' by schedule\"' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
[
'tasks' => [
['command' => '{magentoRoot}run.php mysqldump db > db-$(date +%F).sql']
],
'content' => '* * * * * /bin/php /var/www/cron.php',
'contentToSave' => '* * * * * /bin/php /var/www/cron.php' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_START . ' ' . hash("sha256", BP) . PHP_EOL
. '* * * * * ' . PHP_BINARY . ' /var/www/magento2/run.php'
. ' mysqldump db > db-\$(date +%%F).sql' . PHP_EOL
. CrontabManagerInterface::TASKS_BLOCK_END . ' ' . hash("sha256", BP) . PHP_EOL,
],
];
}
}