Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); /** * This file is part of CodeIgniter 4 framework. * ..
Decoded Output download
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\Commands;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\StreamFilterTrait;
use PHPUnit\Framework\Attributes\Group;
/**
* @internal
*/
#[Group('Others')]
final class CellGeneratorTest extends CIUnitTestCase
{
use StreamFilterTrait;
protected function tearDown(): void
{
$dirName = APPPATH . DIRECTORY_SEPARATOR . 'Cells';
// remove dir
if (is_dir($dirName)) {
$files = array_diff(scandir($dirName), ['.', '..']);
foreach ($files as $file) {
(is_dir("{$dirName}/{$file}")) ? rmdir("{$dirName}/{$file}") : unlink("{$dirName}/{$file}");
}
rmdir($dirName);
}
}
protected function getFileContents(string $filepath): string
{
if (! is_file($filepath)) {
return '';
}
return file_get_contents($filepath) ?: '';
}
public function testGenerateCell(): void
{
command('make:cell RecentCell');
// Check the class was generated
$file = APPPATH . 'Cells/RecentCell.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertStringContainsString('class RecentCell extends Cell', $this->getFileContents($file));
// Check the view was generated
$file = APPPATH . 'Cells/recent.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertSame("<div>
<!-- Your HTML here -->
</div>
", $this->getFileContents($file));
}
public function testGenerateCellSimpleName(): void
{
command('make:cell Another');
// Check the class was generated
$file = APPPATH . 'Cells/AnotherCell.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertStringContainsString('class AnotherCell extends Cell', $this->getFileContents($file));
// Check the view was generated
$file = APPPATH . 'Cells/another.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertSame("<div>
<!-- Your HTML here -->
</div>
", $this->getFileContents($file));
}
public function testGenerateCellWithCellInBetween(): void
{
command('make:cell PippoCellular');
// Check the class was generated
$file = APPPATH . 'Cells/PippoCellularCell.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertStringContainsString('class PippoCellularCell extends Cell', $this->getFileContents($file));
// Check the view was generated
$file = APPPATH . 'Cells/pippo_cellular.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertSame("<div>
<!-- Your HTML here -->
</div>
", $this->getFileContents($file));
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\Commands;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\StreamFilterTrait;
use PHPUnit\Framework\Attributes\Group;
/**
* @internal
*/
#[Group('Others')]
final class CellGeneratorTest extends CIUnitTestCase
{
use StreamFilterTrait;
protected function tearDown(): void
{
$dirName = APPPATH . DIRECTORY_SEPARATOR . 'Cells';
// remove dir
if (is_dir($dirName)) {
$files = array_diff(scandir($dirName), ['.', '..']);
foreach ($files as $file) {
(is_dir("{$dirName}/{$file}")) ? rmdir("{$dirName}/{$file}") : unlink("{$dirName}/{$file}");
}
rmdir($dirName);
}
}
protected function getFileContents(string $filepath): string
{
if (! is_file($filepath)) {
return '';
}
return file_get_contents($filepath) ?: '';
}
public function testGenerateCell(): void
{
command('make:cell RecentCell');
// Check the class was generated
$file = APPPATH . 'Cells/RecentCell.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertStringContainsString('class RecentCell extends Cell', $this->getFileContents($file));
// Check the view was generated
$file = APPPATH . 'Cells/recent.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertSame("<div>\n <!-- Your HTML here -->\n</div>\n", $this->getFileContents($file));
}
public function testGenerateCellSimpleName(): void
{
command('make:cell Another');
// Check the class was generated
$file = APPPATH . 'Cells/AnotherCell.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertStringContainsString('class AnotherCell extends Cell', $this->getFileContents($file));
// Check the view was generated
$file = APPPATH . 'Cells/another.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertSame("<div>\n <!-- Your HTML here -->\n</div>\n", $this->getFileContents($file));
}
public function testGenerateCellWithCellInBetween(): void
{
command('make:cell PippoCellular');
// Check the class was generated
$file = APPPATH . 'Cells/PippoCellularCell.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertStringContainsString('class PippoCellularCell extends Cell', $this->getFileContents($file));
// Check the view was generated
$file = APPPATH . 'Cells/pippo_cellular.php';
$this->assertStringContainsString('File created: ' . clean_path($file), $this->getStreamFilterBuffer());
$this->assertFileExists($file);
$this->assertSame("<div>\n <!-- Your HTML here -->\n</div>\n", $this->getFileContents($file));
}
}
Function Calls
None |
Stats
MD5 | 68a033608637d90f08f79e8f1b7c61a0 |
Eval Count | 0 |
Decode Time | 146 ms |