class AppendOpTest
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Integration/AppendOpTest.php \Drupal\Tests\Composer\Plugin\Scaffold\Integration\AppendOpTest
- 10 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Integration/AppendOpTest.php \Drupal\Tests\Composer\Plugin\Scaffold\Integration\AppendOpTest
- 11.x core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Integration/AppendOpTest.php \Drupal\Tests\Composer\Plugin\Scaffold\Integration\AppendOpTest
@coversDefaultClass \Drupal\Composer\Plugin\Scaffold\Operations\AppendOp
@group Scaffold
Hierarchy
- class \Drupal\Tests\Composer\Plugin\Scaffold\Integration\AppendOpTest extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\Traits\PhpUnitWarnings
Expanded class hierarchy of AppendOpTest
File
-
core/
tests/ Drupal/ Tests/ Composer/ Plugin/ Scaffold/ Integration/ AppendOpTest.php, line 16
Namespace
Drupal\Tests\Composer\Plugin\Scaffold\IntegrationView source
class AppendOpTest extends TestCase {
use PhpUnitWarnings;
/**
* @covers ::process
*/
public function testProcess() {
$fixtures = new Fixtures();
$destination = $fixtures->destinationPath('[web-root]/robots.txt');
$options = ScaffoldOptions::create([]);
// Assert that there is no target file before we run our test.
$this->assertFileDoesNotExist($destination->fullPath());
// Create a file.
file_put_contents($destination->fullPath(), "# This is a test\n");
$prepend = $fixtures->sourcePath('drupal-drupal-test-append', 'prepend-to-robots.txt');
$append = $fixtures->sourcePath('drupal-drupal-test-append', 'append-to-robots.txt');
$sut = new AppendOp($prepend, $append, TRUE);
$sut->scaffoldAtNewLocation($destination);
$expected = <<<EOT
# robots.txt fixture scaffolded from "file-mappings" in drupal-drupal-test-append composer.json fixture.
# This content is prepended to the top of the existing robots.txt fixture.
# ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# This is a test
# ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# This content is appended to the bottom of the existing robots.txt fixture.
# robots.txt fixture scaffolded from "file-mappings" in drupal-drupal-test-append composer.json fixture.
EOT;
$pre_calculated_contents = $sut->contents();
$this->assertEquals(trim($expected), trim($pre_calculated_contents));
// Test the system under test.
$sut->process($destination, $fixtures->io(), $options);
// Assert that the target file was created.
$this->assertFileExists($destination->fullPath());
// Assert the target contained the contents from the correct scaffold files.
$contents = trim(file_get_contents($destination->fullPath()));
$this->assertEquals(trim($expected), $contents);
// Confirm that expected output was written to our io fixture.
$output = $fixtures->getOutput();
$this->assertStringContainsString('Prepend to [web-root]/robots.txt from assets/prepend-to-robots.txt', $output);
$this->assertStringContainsString('Append to [web-root]/robots.txt from assets/append-to-robots.txt', $output);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
AppendOpTest::testProcess | public | function | @covers ::process |
PhpUnitWarnings::$deprecationWarnings | private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). |
PhpUnitWarnings::addWarning | public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.