/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Tests that sample images, recipes and articles are not accessible.
*/
public function testAccessDeniedToFiles() { // The demo_umami profile should not be used because we want to ensure that
// if you install another profile these files are not available.
$this->
assertNotSame('demo_umami', \Drupal::
installProfile());
$files_to_test =
[ 'images/heritage-carrots.jpg',
'languages/en/recipe_instructions/mediterranean-quiche-umami.html',
'languages/en/article_body/lets-hear-it-for-carrots.html',
'languages/en/node/article.csv',
];
foreach ($files_to_test as $file) { // Hard code the path since the demo_umami profile is not installed.
$content_path = "core/profiles/demo_umami/modules/demo_umami_content/default_content/
$file";
$this->
assertFileExists($this->root . '/' .
$content_path);