123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- <?php
- /**
- * Copyright © 2013-2017 Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Update;
- class StatusTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Update\Status
- */
- protected $status;
- /**
- * @var string
- */
- protected $statusFilePath;
- /**
- * @var string
- */
- private $statusScrubbedFilePath;
- /**
- * @var string
- */
- protected $tmpStatusFilePath;
- /**
- * @var string
- */
- protected $tmpStatusLogFilePath;
- /**
- * @var string
- */
- protected $updateInProgressFlagFilePath;
- /**
- * @var string
- */
- protected $updateErrorFlagFilePath;
- /**
- * @var string
- */
- private $somePath = '/someDir/someFile.ext';
- protected function setUp()
- {
- parent::setUp();
- $this->statusFilePath = __DIR__ . '/_files/update_status.txt';
- $this->statusScrubbedFilePath = __DIR__ . '/_files/update_status_scrubbed.txt';
- $this->tmpStatusFilePath = TESTS_TEMP_DIR . '/update_status.txt';
- $this->tmpStatusLogFilePath = TESTS_TEMP_DIR . '/update.log';
- $this->updateInProgressFlagFilePath = TESTS_TEMP_DIR . '/update_in_progress.flag';
- $this->updateErrorFlagFilePath = TESTS_TEMP_DIR . '/update_error.flag';
- $statusFileContent = file_get_contents($this->statusFilePath);
- /** Prepare temporary status file which can be modified */
- file_put_contents($this->tmpStatusFilePath, $statusFileContent);
- /** Make sure it was created */
- $this->assertEquals($statusFileContent, file_get_contents($this->tmpStatusFilePath), "Precondition failed.");
- file_put_contents($this->tmpStatusLogFilePath, $statusFileContent);
- $this->assertEquals($statusFileContent, file_get_contents($this->tmpStatusLogFilePath), "Precondition failed.");
- }
- protected function tearDown()
- {
- parent::tearDown();
- if (file_exists($this->tmpStatusFilePath)) {
- unlink($this->tmpStatusFilePath);
- }
- if (file_exists($this->tmpStatusLogFilePath)) {
- unlink($this->tmpStatusLogFilePath);
- }
- if (file_exists($this->updateInProgressFlagFilePath)) {
- unlink($this->updateInProgressFlagFilePath);
- }
- if (file_exists($this->updateErrorFlagFilePath)) {
- unlink($this->updateErrorFlagFilePath);
- }
- }
- public function testGet()
- {
- $tmpFileStatus = TESTS_TEMP_DIR . 'tmpStatus.txt';
- $statusContent = file_get_contents($this->statusFilePath);
- $statusContent .= PHP_EOL . MAGENTO_BP . $this->somePath;
- file_put_contents($tmpFileStatus, $statusContent);
- $status = new \Magento\Update\Status($tmpFileStatus);
- $actualStatusText = $status->get();
- /** Ensure that actual status text is correct */
- $statusContent = file_get_contents($this->statusFilePath);
- $statusScrubbedContent = file_get_contents($this->statusScrubbedFilePath);
- $statusScrubbedContent .= PHP_EOL . '{magento_root}' . $this->somePath;
- $this->assertNotEquals($statusContent, $actualStatusText);
- $this->assertEquals($statusScrubbedContent, $actualStatusText);
- if (file_exists($tmpFileStatus)) {
- unlink($tmpFileStatus);
- }
- }
- public function testGetFileDoesNotExixt()
- {
- $status = new \Magento\Update\Status('invalid_file_path');
- $this->assertEquals('', $status->get());
- }
- public function testGetEmptyFile()
- {
- file_put_contents($this->tmpStatusFilePath, '');
- $status = new \Magento\Update\Status($this->tmpStatusFilePath);
- $this->assertEquals('', $status->get());
- }
- public function testAdd()
- {
- $originalStatus = file_get_contents($this->tmpStatusFilePath);
- $status = new \Magento\Update\Status($this->tmpStatusFilePath, $this->tmpStatusLogFilePath);
- $firstUpdate = <<<FIRST_UPDATE
- Praesent blandit dolor.
- Sed non quam.
- FIRST_UPDATE;
- $status->add($firstUpdate);
- $textAfterFirstUpdate = "$originalStatus\n{$firstUpdate}";
- $this->verifyAddedStatus($textAfterFirstUpdate, $this->tmpStatusFilePath, 1);
- $textAfterFirstUpdate = $originalStatus . $this->getLogFilePattern($firstUpdate);
- $this->verifyAddedStatus($textAfterFirstUpdate, $this->tmpStatusLogFilePath, 3*1);
- $secondUpdate = <<<SECOND_UPDATE
- Donec lacus nunc, viverra nec, blandit vel, egestas et, augue.
- Vestibulum tincidunt malesuada tellus. Ut ultrices ultrices enim.
- Curabitur sit amet mauris. Morbi in dui quis est pulvinar ullamcorper.
- SECOND_UPDATE;
- $this->assertInstanceOf('Magento\Update\Status', $status->add($secondUpdate));
- $textAfterSecondUpdate = "{$originalStatus}\n{$firstUpdate}\n{$secondUpdate}";
- $this->verifyAddedStatus($textAfterSecondUpdate, $this->tmpStatusFilePath, 2);
- $textAfterSecondUpdate = $originalStatus .
- $this->getLogFilePattern($firstUpdate) . ' ' . $this->getLogFilePattern($secondUpdate);
- $this->verifyAddedStatus($textAfterSecondUpdate, $this->tmpStatusLogFilePath, 3*2);
- }
- public function testAddToNotExistingFile()
- {
- unlink($this->tmpStatusFilePath);
- $this->assertFalse(file_exists($this->tmpStatusFilePath), "Precondition failed.");
- $status = new \Magento\Update\Status($this->tmpStatusFilePath);
- $statusUpdate = <<<STATUS_UPDATE
- Praesent blandit dolor.
- Sed non quam.
- STATUS_UPDATE;
- $status->add($statusUpdate);
- $this->verifyAddedStatus($statusUpdate, $this->tmpStatusFilePath, 1);
- }
- public function testClear()
- {
- $originalLogFileContent = file_get_contents($this->tmpStatusLogFilePath);
- $status = new \Magento\Update\Status($this->tmpStatusFilePath, $this->tmpStatusLogFilePath);
- $this->assertInstanceOf('Magento\Update\Status', $status->clear());
- $this->assertEquals('', file_get_contents($this->tmpStatusFilePath));
- $this->assertEquals($originalLogFileContent, file_get_contents($this->tmpStatusLogFilePath));
- }
- public function testClearNotExistingFile()
- {
- unlink($this->tmpStatusFilePath);
- $this->assertFalse(file_exists($this->tmpStatusFilePath), "Precondition failed.");
- $status = new \Magento\Update\Status($this->tmpStatusFilePath);
- $this->assertInstanceOf('Magento\Update\Status', $status->clear());
- $this->assertFalse(file_exists($this->tmpStatusFilePath));
- }
- public function testIsUpdateInProgress()
- {
- $status = new \Magento\Update\Status(
- $this->tmpStatusFilePath,
- $this->tmpStatusLogFilePath,
- $this->updateInProgressFlagFilePath
- );
- $this->assertFalse($status->isUpdateInProgress());
- $this->assertInstanceOf('Magento\Update\Status', $status->setUpdateInProgress());
- $this->assertTrue($status->isUpdateInProgress());
- $this->assertInstanceOf('Magento\Update\Status', $status->setUpdateInProgress(false));
- $this->assertFalse($status->isUpdateInProgress());
- $this->assertInstanceOf('Magento\Update\Status', $status->setUpdateInProgress(true));
- $this->assertTrue($status->isUpdateInProgress());
- }
- public function testIsUpdateError()
- {
- $status = new \Magento\Update\Status(
- $this->tmpStatusFilePath,
- $this->tmpStatusLogFilePath,
- $this->updateInProgressFlagFilePath,
- $this->updateErrorFlagFilePath
- );
- $this->assertFalse($status->isUpdateError());
- $this->assertInstanceOf('Magento\Update\Status', $status->setUpdateError());
- $this->assertTrue($status->isUpdateError());
- $this->assertInstanceOf('Magento\Update\Status', $status->setUpdateError(false));
- $this->assertFalse($status->isUpdateError());
- $this->assertInstanceOf('Magento\Update\Status', $status->setUpdateError(true));
- $this->assertTrue($status->isUpdateError());
- }
- /**
- * @param string $expectedTextAfterUpdate
- * @param string $filePath
- * @param int $expectedNumberOfTimeEntries
- */
- protected function verifyAddedStatus($expectedTextAfterUpdate, $filePath, $expectedNumberOfTimeEntries)
- {
- $actualStatusText = file_get_contents($filePath);
- /** Make sure that number of current date/time entries matches expected value */
- preg_match_all('/\[.*?\]\s/', $actualStatusText, $matches);
- $this->assertCount(1, $matches);
- $this->assertCount($expectedNumberOfTimeEntries, $matches[0]);
- /** Eliminate current date/time entries from the actual status content before text comparison */
- $actualStatusText = trim(preg_replace('/\[.*?\]\s/', '', $actualStatusText));
- $this->assertEquals($expectedTextAfterUpdate, $actualStatusText);
- }
- /**
- * Get log pattern
- *
- * @param string $msg
- * @return string
- */
- private function getLogFilePattern($msg)
- {
- return 'update-cron.INFO: ' . preg_replace('/' . PHP_EOL . '/', ' ', $msg);
- }
- }
|