feeds-8.x-3.0-alpha1/tests/src/Functional/FeedsBrowserTestBase.php
tests/src/Functional/FeedsBrowserTestBase.php
<?php
namespace Drupal\Tests\feeds\Functional;
use Drupal\feeds\FeedInterface;
use Drupal\Tests\BrowserTestBase;
use Drupal\Tests\feeds\Traits\FeedCreationTrait;
use Drupal\Tests\feeds\Traits\FeedsCommonTrait;
use Drupal\Tests\Traits\Core\CronRunTrait;
/**
* Provides a base class for Feeds functional tests.
*/
abstract class FeedsBrowserTestBase extends BrowserTestBase {
use CronRunTrait;
use FeedCreationTrait;
use FeedsCommonTrait;
/**
* Modules to enable.
*
* @var array
*/
public static $modules = [
'feeds',
'node',
'user',
];
/**
* A test user with administrative privileges.
*
* @var \Drupal\user\UserInterface
*/
protected $adminUser;
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
// Create a content type.
$this->setUpNodeType();
// Create an user with Feeds admin privileges.
$this->adminUser = $this->drupalCreateUser([
'administer feeds',
]);
$this->drupalLogin($this->adminUser);
}
/**
* Starts a batch import.
*
* @param \Drupal\feeds\FeedInterface $feed
* The feed to import.
*/
protected function batchImport(FeedInterface $feed) {
$this->drupalGet('feed/' . $feed->id() . '/import');
$this->submitForm([], 'Import');
}
}
