class AcquiaConnectorModuleTest in Acquia Connector 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/AcquiaConnectorModuleTest.php \Drupal\Tests\acquia_connector\Functional\AcquiaConnectorModuleTest
- 3.x tests/src/Functional/AcquiaConnectorModuleTest.php \Drupal\Tests\acquia_connector\Functional\AcquiaConnectorModuleTest
Tests the functionality of the Acquia Connector module.
@group Acquia connector
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses FunctionalTestSetupTrait, TestSetupTrait, AssertLegacyTrait, BlockCreationTrait, ConfigTestTrait, ContentTypeCreationTrait, NodeCreationTrait, PhpunitCompatibilityTrait, RandomGeneratorTrait, TestRequirementsTrait, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\Tests\acquia_connector\Functional\AcquiaConnectorModuleTest
Expanded class hierarchy of AcquiaConnectorModuleTest
File
- tests/
src/ Functional/ AcquiaConnectorModuleTest.php, line 15
Namespace
Drupal\Tests\acquia_connector\FunctionalView source
class AcquiaConnectorModuleTest extends BrowserTestBase {
/**
* Drupal 8.8 requires default theme to be specified.
*
* @var string
*/
protected $defaultTheme = 'stark';
/**
* Test user e-mail.
*
* @var string
*/
protected $acqtestEmail = 'TEST_networkuser@example.com';
/**
* Test user password.
*
* @var string
*/
protected $acqtestPass = 'TEST_password';
/**
* Test user ID.
*
* @var string
*/
protected $acqtestId = 'TEST_AcquiaConnectorTestID';
/**
* Test Acquia Connector key.
*
* @var string
*/
protected $acqtestKey = 'TEST_AcquiaConnectorTestKey';
/**
* Test site name.
*
* @var string
*/
protected $acqtestName = 'test name';
/**
* Test machine name.
*
* @var string
*/
protected $acqtestMachineName = 'test_name';
/**
* Test Acquia Connector expired ID.
*
* @var string
*/
protected $acqtestExpiredId = 'TEST_AcquiaConnectorTestIDExp';
/**
* Test Acquia Connector expired Key.
*
* @var string
*/
protected $acqtestExpiredKey = 'TEST_AcquiaConnectorTestKeyExp';
/**
* Test Acquia Connector 503 ID.
*
* @var string
*/
protected $acqtest503Id = 'TEST_AcquiaConnectorTestID503';
/**
* Test Acquia Connector 503 Key.
*
* @var string
*/
protected $acqtest503Key = 'TEST_AcquiaConnectorTestKey503';
/**
* Test Acquia Connector ID with error.
*
* @var string
*/
protected $acqtestErrorId = 'TEST_AcquiaConnectorTestIDErr';
/**
* Test Acquia Connector key with error.
*
* @var string
*/
protected $acqtestErrorKey = 'TEST_AcquiaConnectorTestKeyErr';
/**
* Test privileged user.
*
* @var object
*/
protected $privilegedUser;
/**
* Test user with subscription.
*
* @var object
*/
protected $networkUser;
/**
* URL to get Acquia Cloud Free.
*
* @var string
*/
protected $cloudFreeUrl;
/**
* Module setup path.
*
* @var string
*/
protected $setupPath;
/**
* Module credentials path.
*
* @var string
*/
protected $credentialsPath;
/**
* Module settings path.
*
* @var string
*/
protected $settingsPath;
/**
* Module environment change path.
*
* @var string
*/
protected $environmentChangePath;
/**
* Drupal status report path.
*
* @var string
*/
protected $statusReportUrl;
/**
* Modules to enable.
*
* @var array
*/
public static $modules = [
'acquia_connector',
'toolbar',
'acquia_connector_test',
'node',
];
/**
* {@inheritdoc}
*/
public function setUp() {
parent::setUp();
// Create and log in our privileged user.
$this->privilegedUser = $this
->drupalCreateUser([
'administer site configuration',
'access administration pages',
'access toolbar',
]);
$this
->drupalLogin($this->privilegedUser);
// Create a user that has a Network subscription.
$this->networkUser = $this
->drupalCreateUser();
$this->networkUser->mail = $this->acqtestEmail;
$this->networkUser->pass = $this->acqtestPass;
$this->networkUser
->save();
// $this->drupalLogin($this->network_user);
// Setup variables.
$this->cloudFreeUrl = 'https://www.acquia.com/acquia-cloud-free';
$this->setupPath = 'admin/config/system/acquia-connector/setup';
$this->credentialsPath = 'admin/config/system/acquia-connector/credentials';
$this->settingsPath = 'admin/config/system/acquia-connector';
$this->environmentChangePath = '/admin/config/system/acquia-connector/environment-change';
$this->statusReportUrl = 'admin/reports/status';
\Drupal::configFactory()
->getEditable('acquia_connector.settings')
->set('spi.server', 'http://mock-spi-server')
->save();
\Drupal::configFactory()
->getEditable('acquia_connector.settings')
->set('spi.ssl_verify', FALSE)
->save();
\Drupal::configFactory()
->getEditable('acquia_connector.settings')
->set('spi.ssl_override', TRUE)
->save();
// Create a node, since some SPI data is only gathered if nodes exist.
$this
->createContentType([
'type' => 'test_content_type',
'name' => 'Test content type',
]);
$this
->createNode([
'type' => 'test_content_type',
'title' => 'Dummy node',
'body' => [
[
'value' => 'Dummy node body',
],
],
]);
}
/**
* Helper function for storing UI strings.
*/
private function acquiaConnectorStrings($id) {
switch ($id) {
case 'free':
return 'Sign up for Acquia Cloud Free, a free Drupal sandbox to experiment with new features, test your code quality, and apply continuous integration best practices.';
case 'get-connected':
return 'If you have an Acquia Subscription, connect now. Otherwise, you can turn this message off by disabling the Acquia Connector modules.';
case 'enter-email':
return 'Enter the email address you use to login to the Acquia Subscription';
case 'enter-password':
return 'Enter your Acquia Subscription password';
case 'account-not-found':
return 'Account not found';
case 'id-key':
return 'Enter your product keys from your application overview or log in to connect your site to Acquia Insight.';
case 'enter-key':
return 'Network key';
case 'subscription-not-found':
return 'Error: Subscription not found (1000)';
case 'saved':
return 'The configuration options have been saved.';
case 'subscription':
// Assumes subscription name is same as id.
return 'Subscription: ' . $this->acqtestId;
case 'menu-active':
return 'Subscription active (expires 2023/10/8)';
case 'menu-inactive':
return 'Subscription not active';
case 'site-name-required':
return 'Name field is required.';
case 'site-machine-name-required':
return 'Machine name field is required.';
case 'first-connection':
return 'This is the first connection from this site, it may take awhile for it to appear.';
}
}
/**
* Test get connected.
*/
public function testAcquiaConnectorGetConnectedTests() {
// Check for call to get connected.
$this
->drupalGet('admin');
$this
->assertText($this
->acquiaConnectorStrings('free'), 'The explanation of services text exists');
$this
->assertLinkByHref($this->cloudFreeUrl, 0, 'Link to Acquia.com Cloud Services exists');
$this
->assertText($this
->acquiaConnectorStrings('get-connected'), 'The call-to-action to connect text exists');
$this
->assertLink('connect now', 0, 'The "connect now" link exists');
// Check connection setup page.
$this
->drupalGet($this->setupPath);
$this
->assertText($this
->acquiaConnectorStrings('enter-email'), 'The email address field label exists');
$this
->assertText($this
->acquiaConnectorStrings('enter-password'), 'The password field label exists');
$this
->assertLinkByHref($this->cloudFreeUrl, 0, 'Link to Acquia.com free signup exists');
// Check errors on automatic setup page.
$edit_fields = [
'email' => $this
->randomString(),
'pass' => $this
->randomString(),
];
$submit_button = 'Next';
$this
->drupalPostForm($this->setupPath, $edit_fields, $submit_button);
$this
->assertText($this
->acquiaConnectorStrings('account-not-found'), 'Account not found for random automatic setup attempt');
$this
->assertText($this
->acquiaConnectorStrings('menu-inactive'), 'Subscription not active menu message appears');
// Check manual connection.
$this
->drupalGet($this->credentialsPath);
$this
->assertText($this
->acquiaConnectorStrings('id-key'), 'The network key and id description exists');
$this
->assertText($this
->acquiaConnectorStrings('enter-key'), 'The network key field label exists');
$this
->assertLinkByHref($this->cloudFreeUrl, 0, 'Link to Acquia.com free signup exists');
// Check errors on connection page.
$edit_fields = [
'acquia_identifier' => $this
->randomString(),
'acquia_key' => $this
->randomString(),
];
$submit_button = 'Connect';
$this
->drupalPostForm($this->credentialsPath, $edit_fields, $submit_button);
$this
->assertText($this
->acquiaConnectorStrings('subscription-not-found'), 'Subscription not found for random credentials');
$this
->assertText($this
->acquiaConnectorStrings('menu-inactive'), 'Subscription not active menu message appears');
// Connect site on key and id.
$edit_fields = [
'acquia_identifier' => $this->acqtestId,
'acquia_key' => $this->acqtestKey,
];
$submit_button = 'Connect';
$this
->drupalPostForm($this->credentialsPath, $edit_fields, $submit_button);
$this
->drupalGet($this->settingsPath);
$this
->assertText($this
->acquiaConnectorStrings('subscription'), 'Subscription connected with key and identifier');
$this
->assertLinkByHref($this->setupPath, 0, 'Link to change subscription exists');
$this
->disconnectSite();
// Connect via automatic setup.
$edit_fields = [
'email' => $this->acqtestEmail,
'pass' => $this->acqtestPass,
];
$submit_button = 'Next';
$this
->drupalPostForm($this->setupPath, $edit_fields, $submit_button);
$this
->drupalGet($this->setupPath);
$this
->drupalGet($this->settingsPath);
$this
->assertText($this
->acquiaConnectorStrings('subscription'), 'Subscription connected with credentials');
// Confirm menu reports active subscription.
$this
->drupalGet('admin');
$this
->assertText($this
->acquiaConnectorStrings('menu-active'), 'Subscription active menu message appears');
// Check errors if name or machine name empty.
$submit_button = 'Save configuration';
$this
->drupalPostForm($this->settingsPath, [], $submit_button);
$this
->assertText($this
->acquiaConnectorStrings('site-name-required'), 'Name is required message appears');
$this
->assertText($this
->acquiaConnectorStrings('site-machine-name-required'), 'Machine name is required message appears');
// Acquia hosted sites.
$edit_fields = [
'acquia_dynamic_banner' => TRUE,
'name' => 'test_name',
'machine_name' => 'test_name',
];
$submit_button = 'Save configuration';
$this
->drupalPostForm($this->settingsPath, $edit_fields, $submit_button);
$this
->assertFieldChecked('edit-acquia-dynamic-banner', '"Receive updates from Acquia" option stays saved');
// Test acquia hosted site.
$settings['_SERVER']['AH_SITE_NAME'] = (object) [
'value' => 'acqtest_drupal',
'required' => TRUE,
];
$settings['_SERVER']['AH_SITE_ENVIRONMENT'] = (object) [
'value' => 'dev',
'required' => TRUE,
];
$this
->writeSettings($settings);
sleep(10);
$this
->drupalGet($this->settingsPath);
$elements = $this
->xpath('//input[@name=:name]', [
':name' => 'machine_name',
]);
foreach ($elements as $element) {
$this
->assertIdentical($element
->getAttribute('disabled'), 'disabled', 'Machine name field is disabled.');
}
$this
->disconnectSite();
}
/**
* Test Connector subscription methods.
*/
public function testAcquiaConnectorSubscriptionTests() {
$subscription = new Subscription();
// Starts as inactive.
$is_active = $subscription
->isActive();
$this
->assertFalse($is_active, 'Subscription is not currently active.');
// Confirm HTTP request count is 0 because without credentials no request
// should have been made.
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 0);
$check_subscription = $subscription
->update();
\Drupal::state()
->resetCache();
$this
->assertFalse($check_subscription, 'Subscription is currently false.');
// Confirm HTTP request count is still 0.
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 0);
// Fail a connection.
$random_id = $this
->randomString();
$edit_fields = [
'acquia_identifier' => $random_id,
'acquia_key' => $this
->randomString(),
];
$submit_button = 'Connect';
$this
->drupalPostForm($this->credentialsPath, $edit_fields, $submit_button);
// Confirm HTTP request count is 1.
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 1, 'Made 1 HTTP request in attempt to connect subscription.');
$is_active = $subscription
->isActive();
$this
->assertFalse($is_active, 'Subscription is not active after failed attempt to connect.');
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 1, 'Still have made only 1 HTTP request');
$check_subscription = $subscription
->update();
\Drupal::state()
->resetCache();
$this
->assertFalse($check_subscription, 'Subscription is false after failed attempt to connect.');
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 1, 'Still have made only 1 HTTP request');
// Test default from acquia_agent_settings().
$stored = \Drupal::config('acquia_connector.settings');
$current_subscription = \Drupal::state()
->get('acquia_subscription_data');
// Not identical since acquia_agent_has_credentials() causes stored to be
// deleted.
$this
->assertNotIdentical($check_subscription, $current_subscription, 'Stored subscription data not same before connected subscription.');
$this
->assertTrue($current_subscription['active'] === FALSE, 'Default is inactive.');
// Reset HTTP request counter;.
\Drupal::state()
->set('acquia_connector_test_request_count', 0);
// Connect.
$edit_fields = [
'acquia_identifier' => $this->acqtestId,
'acquia_key' => $this->acqtestKey,
];
$this
->drupalPostForm($this->credentialsPath, $edit_fields, $submit_button);
// HTTP requests should now be 3 (acquia.agent.subscription.name and
// acquia.agent.subscription and acquia.agent.validate.
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 3, '3 HTTP requests were made during first connection.');
$is_active = $subscription
->isActive();
$this
->assertTrue($is_active, 'Subscription is active after successful connection.');
$check_subscription = $subscription
->update();
\Drupal::state()
->resetCache();
$this
->assertIsArray($check_subscription, 'Subscription is array after successful connection.');
// Now stored subscription data should match.
$stored = \Drupal::config('acquia_connector.settings');
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 4, '1 additional HTTP request made via acquia_agent_check_subscription().');
$this
->drupalGet($this->baseUrl);
$this
->drupalGet('admin');
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 4, 'No extra requests made during visits to other pages.');
// Reset HTTP request counter;.
\Drupal::state()
->set('acquia_connector_test_request_count', 0);
// Connect on expired subscription.
$edit_fields = [
'acquia_identifier' => $this->acqtestExpiredId,
'acquia_key' => $this->acqtestExpiredKey,
];
$this
->drupalPostForm($this->credentialsPath, $edit_fields, $submit_button);
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 3, '3 HTTP requests were made during expired connection attempt.');
$is_active = $subscription
->isActive();
$this
->assertFalse($is_active, 'Subscription is not active after connection with expired subscription.');
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 3, 'No additional HTTP requests made via acquia_agent_subscription_is_active().');
$this
->drupalGet($this->baseUrl);
$this
->drupalGet('admin');
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 3, 'No HTTP requests made during visits to other pages.');
// Stored subscription data will now be the expired integer.
$check_subscription = $subscription
->update();
\Drupal::state()
->resetCache();
$this
->assertIdentical($check_subscription, 1200, 'Subscription is expired after connection with expired subscription.');
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 4, '1 additional request made via acquia_agent_check_subscription().');
$stored = \Drupal::config('acquia_connector.settings');
$current_subscription = \Drupal::state()
->get('acquia_subscription_data');
$this
->assertIdentical($check_subscription, $current_subscription, 'Stored expected subscription data.');
// Reset HTTP request counter;.
\Drupal::state()
->set('acquia_connector_test_request_count', 0);
// Connect on subscription that will trigger a 503 response..
$edit_fields = [
'acquia_identifier' => $this->acqtest503Id,
'acquia_key' => $this->acqtest503Key,
];
$this
->drupalPostForm($this->credentialsPath, $edit_fields, $submit_button);
$is_active = $subscription
->isActive();
$this
->assertTrue($is_active, 'Subscription is active after successful connection.');
// Make another request which will trigger 503 server error.
$check_subscription = $subscription
->update();
\Drupal::state()
->resetCache();
// Hold onto subcription data for comparison.
$stored = \Drupal::config('acquia_connector.settings');
$this
->assertNotIdentical($check_subscription, '503', 'Subscription is not storing 503.');
$this
->assertIsArray($check_subscription, 'Storing subscription array data.');
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 4, 'Have made 4 HTTP requests so far.');
}
/**
* Tests the site status callback.
*/
public function testAcquiaConnectorSiteStatusTests() {
$uuid = '0dee0d07-4032-44ea-a2f2-84182dc10d54';
$test_url = "https://insight.acquia.com/node/uuid/{$uuid}/dashboard";
$test_data = [
'active' => 1,
'href' => $test_url,
];
// Set some sample test data.
\Drupal::state()
->set('acquia_subscription_data', $test_data);
// Test StatusControllerTest::getIdFromSub.
$getIdFromSub = new StatusController();
$key = $getIdFromSub
->getIdFromSub($test_data);
$this
->assertIdentical($key, $uuid);
// Add a 'uuid' key to the data and make sure that is returned.
$test_data['uuid'] = $uuid;
$test_data['href'] = 'http://example.com';
$key = $getIdFromSub
->getIdFromSub($test_data);
$this
->assertIdentical($key, $uuid);
$query = [
'key' => hash('sha1', "{$key}:test"),
'nonce' => 'test',
];
$json = json_decode($this
->drupalGet('system/acquia-connector-status', [
'query' => $query,
]), TRUE);
// Test the version.
$this
->assertIdentical($json['version'], '1.0', 'Correct API version found.');
// Test invalid query string parameters for access.
// A random key value should fail.
$query['key'] = $this
->randomString(16);
$this
->drupalGet('system/acquia-connector-status', [
'query' => $query,
]);
$this
->assertResponse(403);
}
/**
* Tests the SPI change form.
*
* This should be a separate test.
*/
public function testSpiChangeFormTests() {
// Connect site on key and id.
$edit_fields = [
'acquia_identifier' => $this->acqtestId,
'acquia_key' => $this->acqtestKey,
];
$submit_button = 'Connect';
$this
->drupalPostForm($this->credentialsPath, $edit_fields, $submit_button);
$this
->drupalGet($this->settingsPath);
$this
->assertText($this
->acquiaConnectorStrings('subscription'), 'Subscription connected with key and identifier');
// No changes detected.
$edit_fields = [
'acquia_dynamic_banner' => TRUE,
'name' => $this->acqtestName,
'machine_name' => $this->acqtestMachineName,
];
$submit_button = 'Save configuration';
$this
->drupalPostForm($this->settingsPath, $edit_fields, $submit_button);
$this
->assertText($this
->acquiaConnectorStrings('saved'), 'The configuration options have been saved.');
$this
->drupalGet($this->statusReportUrl);
$this
->clickLink('manually send SPI data');
$this
->drupalGet($this->environmentChangePath);
$this
->assertText('No changes detected', 'No changes are currently detected.');
// Detect Changes.
$edit_fields = [
'acquia_dynamic_banner' => TRUE,
'name' => $this->acqtestName,
'machine_name' => $this->acqtestMachineName . '_change',
];
$submit_button = 'Save configuration';
$this
->drupalPostForm($this->settingsPath, $edit_fields, $submit_button);
$this
->assertText($this
->acquiaConnectorStrings('saved'), 'The configuration options have been saved.');
$this
->assertText('A change has been detected in your site environment. Please check the Acquia SPI status on your Status Report page for more information', 'Changes have been detected');
$this
->drupalGet($this->environmentChangePath);
// Check environment change action.
$elements = $this
->xpath('//input[@name=:name]', [
':name' => 'env_change_action',
]);
$expected_values = [
'block',
'update',
'create',
];
foreach ($elements as $element) {
$expected = array_shift($expected_values);
$this
->assertIdentical($element
->getAttribute('value'), $expected);
}
// Test "block" the connector from sending data to NSPI.
$edit_fields = [
'env_change_action' => 'block',
];
$submit_button = 'Save configuration';
$this
->drupalPostForm($this->environmentChangePath, $edit_fields, $submit_button);
$this
->assertText('This site has been disabled from sending profile data to Acquia.');
$this
->assertText('You have disabled your site from sending data to Acquia Cloud.');
// Test unblock site.
$this
->clickLink('Enable this site');
$this
->assertText('The Acquia Connector is disabled and is not sending site profile data to Acquia Cloud for evaluation.');
$edit_fields = [
'env_change_action[unblock]' => TRUE,
];
$submit_button = 'Save configuration';
$this
->drupalPostForm($this->environmentChangePath, $edit_fields, $submit_button);
$this
->assertText('Your site has been enabled and is sending data to Acquia Cloud.');
$this
->clickLink('manually send SPI data');
$this
->assertText('A change has been detected in your site environment. Please check the Acquia SPI status on your Status Report page for more information.');
// Test update existing site.
$this
->clickLink('confirm the action you wish to take');
$edit_fields = [
'env_change_action' => 'update',
];
$submit_button = 'Save configuration';
$this
->drupalPostForm($this->environmentChangePath, $edit_fields, $submit_button);
// Test new site in Acquia Cloud.
$edit_fields = [
'acquia_dynamic_banner' => TRUE,
'name' => $this->acqtestName,
'machine_name' => $this->acqtestMachineName,
];
$submit_button = 'Save configuration';
$this
->drupalPostForm($this->settingsPath, $edit_fields, $submit_button);
$this
->assertText($this
->acquiaConnectorStrings('saved'), 'The configuration options have been saved.');
$this
->assertText('A change has been detected in your site environment. Please check the Acquia SPI status on your Status Report page for more information.');
$this
->drupalGet($this->statusReportUrl);
$this
->clickLink('confirm the action you wish to take');
$edit_fields = [
'env_change_action' => 'create',
'name' => '',
'machine_name' => '',
];
$submit_button = 'Save configuration';
$this
->drupalPostForm($this->environmentChangePath, $edit_fields, $submit_button);
$this
->assertText($this
->acquiaConnectorStrings('site-name-required'), 'Name field is required.');
$this
->assertText($this
->acquiaConnectorStrings('site-machine-name-required'), 'Machine name field is required.');
$edit_fields = [
'env_change_action' => 'create',
'name' => $this->acqtestName,
'machine_name' => $this->acqtestMachineName,
];
$submit_button = 'Save configuration';
$this
->drupalPostForm($this->environmentChangePath, $edit_fields, $submit_button);
$this
->assertText($this
->acquiaConnectorStrings('first-connection'), 'First connection from this site');
}
/**
* Clear the connection data thus simulating a disconnected site.
*/
protected function disconnectSite() {
$config = \Drupal::configFactory()
->getEditable('acquia_connector.settings');
\Drupal::state()
->delete('acquia_subscription_data');
\Drupal::state()
->set('acquia_subscription_data', [
'active' => FALSE,
]);
$config
->save();
$storage = new Storage();
$storage
->setKey('');
$storage
->setIdentifier('');
\Drupal::state()
->set('acquia_connector_test_request_count', 0);
\Drupal::state()
->delete('spi.site_name');
\Drupal::state()
->delete('spi.site_machine_name');
\Drupal::state()
->resetCache();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AcquiaConnectorModuleTest:: |
protected | property | Test Acquia Connector 503 ID. | |
AcquiaConnectorModuleTest:: |
protected | property | Test Acquia Connector 503 Key. | |
AcquiaConnectorModuleTest:: |
protected | property | Test user e-mail. | |
AcquiaConnectorModuleTest:: |
protected | property | Test Acquia Connector ID with error. | |
AcquiaConnectorModuleTest:: |
protected | property | Test Acquia Connector key with error. | |
AcquiaConnectorModuleTest:: |
protected | property | Test Acquia Connector expired ID. | |
AcquiaConnectorModuleTest:: |
protected | property | Test Acquia Connector expired Key. | |
AcquiaConnectorModuleTest:: |
protected | property | Test user ID. | |
AcquiaConnectorModuleTest:: |
protected | property | Test Acquia Connector key. | |
AcquiaConnectorModuleTest:: |
protected | property | Test machine name. | |
AcquiaConnectorModuleTest:: |
protected | property | Test site name. | |
AcquiaConnectorModuleTest:: |
protected | property | Test user password. | |
AcquiaConnectorModuleTest:: |
protected | property | URL to get Acquia Cloud Free. | |
AcquiaConnectorModuleTest:: |
protected | property | Module credentials path. | |
AcquiaConnectorModuleTest:: |
protected | property |
Drupal 8.8 requires default theme to be specified. Overrides BrowserTestBase:: |
|
AcquiaConnectorModuleTest:: |
protected | property | Module environment change path. | |
AcquiaConnectorModuleTest:: |
public static | property |
Modules to enable. Overrides BrowserTestBase:: |
|
AcquiaConnectorModuleTest:: |
protected | property | Test user with subscription. | |
AcquiaConnectorModuleTest:: |
protected | property | Test privileged user. | |
AcquiaConnectorModuleTest:: |
protected | property | Module settings path. | |
AcquiaConnectorModuleTest:: |
protected | property | Module setup path. | |
AcquiaConnectorModuleTest:: |
protected | property | Drupal status report path. | |
AcquiaConnectorModuleTest:: |
private | function | Helper function for storing UI strings. | |
AcquiaConnectorModuleTest:: |
protected | function | Clear the connection data thus simulating a disconnected site. | |
AcquiaConnectorModuleTest:: |
public | function |
Overrides BrowserTestBase:: |
|
AcquiaConnectorModuleTest:: |
public | function | Test get connected. | |
AcquiaConnectorModuleTest:: |
public | function | Tests the site status callback. | |
AcquiaConnectorModuleTest:: |
public | function | Test Connector subscription methods. | |
AcquiaConnectorModuleTest:: |
public | function | Tests the SPI change form. | |
AssertHelperTrait:: |
protected static | function | Casts MarkupInterface objects into strings. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead. | |
AssertLegacyTrait:: |
protected | function | Asserts whether an expected cache tag was present in the last response. | |
AssertLegacyTrait:: |
protected | function | Asserts that the element with the given CSS selector is not present. | |
AssertLegacyTrait:: |
protected | function | Asserts that the element with the given CSS selector is present. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Passes if the raw text IS found escaped on the loaded page, fail otherwise. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field exists with the given name or ID. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field exists with the given ID and value. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field exists with the given name and value. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field exists in the current page by the given XPath. | |
AssertLegacyTrait:: |
protected | function | Asserts that a checkbox field in the current page is checked. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field exists in the current page with a given Xpath result. | |
AssertLegacyTrait:: |
protected | function | Checks that current response header equals value. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertSame() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Passes if a link with the specified label is found. | |
AssertLegacyTrait:: |
protected | function | Passes if a link containing a given href (part) is found. | |
AssertLegacyTrait:: |
protected | function | Asserts whether an expected cache tag was absent in the last response. | |
AssertLegacyTrait:: |
protected | function | Passes if the raw text is not found escaped on the loaded page. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field does NOT exist with the given name or ID. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field does not exist with the given ID and value. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field does not exist with the given name and value. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field does not exist or its value does not match, by XPath. | |
AssertLegacyTrait:: |
protected | function | Asserts that a checkbox field in the current page is not checked. | |
AssertLegacyTrait:: |
protected | function | Passes if a link with the specified label is not found. | |
AssertLegacyTrait:: |
protected | function | Passes if a link containing a given href (part) is not found. | |
AssertLegacyTrait:: |
protected | function | Asserts that a select option does NOT exist in the current page. | |
AssertLegacyTrait:: |
protected | function | Triggers a pass if the Perl regex pattern is not found in the raw content. | |
AssertLegacyTrait:: |
protected | function | Passes if the raw text IS not found on the loaded page, fail otherwise. | 1 |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Passes if the page (with HTML stripped) does not contains the text. | 1 |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotSame() instead. | |
AssertLegacyTrait:: |
protected | function | Passes if the text is found MORE THAN ONCE on the text version of the page. | |
AssertLegacyTrait:: |
protected | function | Asserts that a select option in the current page exists. | |
AssertLegacyTrait:: |
protected | function | Asserts that a select option with the visible text exists. | |
AssertLegacyTrait:: |
protected | function | Asserts that a select option in the current page is checked. | |
AssertLegacyTrait:: |
protected | function | Triggers a pass if the Perl regex pattern is found in the raw content. | |
AssertLegacyTrait:: |
protected | function | Passes if the raw text IS found on the loaded page, fail otherwise. | 1 |
AssertLegacyTrait:: |
protected | function | Asserts the page responds with the specified response code. | 1 |
AssertLegacyTrait:: |
protected | function | Passes if the page (with HTML stripped) contains the text. | 1 |
AssertLegacyTrait:: |
protected | function | Helper for assertText and assertNoText. | |
AssertLegacyTrait:: |
protected | function | Pass if the page title is the given string. | |
AssertLegacyTrait:: |
protected | function | Passes if the text is found ONLY ONCE on the text version of the page. | |
AssertLegacyTrait:: |
protected | function | Passes if the internal browser's URL matches the given path. | |
AssertLegacyTrait:: |
protected | function | Builds an XPath query. | |
AssertLegacyTrait:: |
protected | function | Helper: Constructs an XPath for the given set of attributes and value. | |
AssertLegacyTrait:: |
protected | function | Get all option elements, including nested options, in a select. | |
AssertLegacyTrait:: |
protected | function | Gets the current raw content. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead. | |
AssertLegacyTrait:: |
protected | function | ||
BlockCreationTrait:: |
protected | function | Creates a block instance based on default settings. Aliased as: drupalPlaceBlock | |
BrowserHtmlDebugTrait:: |
protected | property | The Base URI to use for links to the output files. | |
BrowserHtmlDebugTrait:: |
protected | property | Class name for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | Counter for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | Counter storage for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | Directory name for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | HTML output output enabled. | |
BrowserHtmlDebugTrait:: |
protected | property | The file name to write the list of URLs to. | |
BrowserHtmlDebugTrait:: |
protected | property | HTML output test ID. | |
BrowserHtmlDebugTrait:: |
protected | function | Formats HTTP headers as string for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | function | Returns headers in HTML output format. | 1 |
BrowserHtmlDebugTrait:: |
protected | function | Logs a HTML output message in a text file. | |
BrowserHtmlDebugTrait:: |
protected | function | Creates the directory to store browser output. | |
BrowserTestBase:: |
protected | property | The base URL. | |
BrowserTestBase:: |
protected | property | The config importer that can be used in a test. | |
BrowserTestBase:: |
protected | property | An array of custom translations suitable for drupal_rewrite_settings(). | |
BrowserTestBase:: |
protected | property | The database prefix of this test run. | |
BrowserTestBase:: |
protected | property | Mink session manager. | |
BrowserTestBase:: |
protected | property | ||
BrowserTestBase:: |
protected | property | 1 | |
BrowserTestBase:: |
protected | property | The original container. | |
BrowserTestBase:: |
protected | property | The original array of shutdown function callbacks. | |
BrowserTestBase:: |
protected | property | ||
BrowserTestBase:: |
protected | property | The profile to install as a basis for testing. | 39 |
BrowserTestBase:: |
protected | property | The app root. | |
BrowserTestBase:: |
protected | property | Browser tests are run in separate processes to prevent collisions between code that may be loaded by tests. | |
BrowserTestBase:: |
protected | property | Time limit in seconds for the test. | |
BrowserTestBase:: |
protected | property | The translation file directory for the test environment. | |
BrowserTestBase:: |
protected | function | Clean up the Simpletest environment. | |
BrowserTestBase:: |
protected | function | Configuration accessor for tests. Returns non-overridden configuration. | |
BrowserTestBase:: |
protected | function | Translates a CSS expression to its XPath equivalent. | |
BrowserTestBase:: |
protected | function | Gets the value of an HTTP response header. | |
BrowserTestBase:: |
protected | function | Returns all response headers. | |
BrowserTestBase:: |
public static | function | Ensures test files are deletable. | |
BrowserTestBase:: |
protected | function | Gets an instance of the default Mink driver. | |
BrowserTestBase:: |
protected | function | Gets the JavaScript drupalSettings variable for the currently-loaded page. | 1 |
BrowserTestBase:: |
protected | function | Obtain the HTTP client for the system under test. | |
BrowserTestBase:: |
protected | function | Get the Mink driver args from an environment variable, if it is set. Can be overridden in a derived class so it is possible to use a different value for a subset of tests, e.g. the JavaScript tests. | 1 |
BrowserTestBase:: |
protected | function | Helper function to get the options of select field. | |
BrowserTestBase:: |
protected | function |
Provides a Guzzle middleware handler to log every response received. Overrides BrowserHtmlDebugTrait:: |
|
BrowserTestBase:: |
public | function | Returns Mink session. | |
BrowserTestBase:: |
protected | function | Get session cookies from current session. | |
BrowserTestBase:: |
protected | function |
Retrieves the current calling line in the class under test. Overrides BrowserHtmlDebugTrait:: |
|
BrowserTestBase:: |
protected | function | Visits the front page when initializing Mink. | 3 |
BrowserTestBase:: |
protected | function | Initializes Mink sessions. | 1 |
BrowserTestBase:: |
public | function | Installs Drupal into the Simpletest site. | 1 |
BrowserTestBase:: |
protected | function | Registers additional Mink sessions. | |
BrowserTestBase:: |
protected | function | 3 | |
BrowserTestBase:: |
protected | function | Transforms a nested array into a flat array suitable for drupalPostForm(). | |
BrowserTestBase:: |
protected | function | Performs an xpath search on the contents of the internal browser. | |
BrowserTestBase:: |
public | function | 1 | |
BrowserTestBase:: |
public | function | Prevents serializing any properties. | |
ConfigTestTrait:: |
protected | function | Returns a ConfigImporter object to import test configuration. | |
ConfigTestTrait:: |
protected | function | Copies configuration objects from source storage to target storage. | |
ContentTypeCreationTrait:: |
protected | function | Creates a custom content type based on default settings. Aliased as: drupalCreateContentType | 1 |
FunctionalTestSetupTrait:: |
protected | property | The flag to set 'apcu_ensure_unique_prefix' setting. | 1 |
FunctionalTestSetupTrait:: |
protected | property | The class loader to use for installation and initialization of setup. | |
FunctionalTestSetupTrait:: |
protected | property | The config directories used in this test. | |
FunctionalTestSetupTrait:: |
protected | property | The "#1" admin user. | |
FunctionalTestSetupTrait:: |
protected | function | Execute the non-interactive installer. | 1 |
FunctionalTestSetupTrait:: |
protected | function | Returns all supported database driver installer objects. | |
FunctionalTestSetupTrait:: |
protected | function | Initialize various configurations post-installation. | 2 |
FunctionalTestSetupTrait:: |
protected | function | Initializes the kernel after installation. | |
FunctionalTestSetupTrait:: |
protected | function | Initialize settings created during install. | |
FunctionalTestSetupTrait:: |
protected | function | Initializes user 1 for the site to be installed. | |
FunctionalTestSetupTrait:: |
protected | function | Installs the default theme defined by `static::$defaultTheme` when needed. | |
FunctionalTestSetupTrait:: |
protected | function | Install modules defined by `static::$modules`. | 1 |
FunctionalTestSetupTrait:: |
protected | function | Returns the parameters that will be used when Simpletest installs Drupal. | 9 |
FunctionalTestSetupTrait:: |
protected | function | Prepares the current environment for running the test. | 23 |
FunctionalTestSetupTrait:: |
protected | function | Creates a mock request and sets it on the generator. | |
FunctionalTestSetupTrait:: |
protected | function | Prepares site settings and services before installation. | 2 |
FunctionalTestSetupTrait:: |
protected | function | Resets and rebuilds the environment after setup. | |
FunctionalTestSetupTrait:: |
protected | function | Rebuilds \Drupal::getContainer(). | |
FunctionalTestSetupTrait:: |
protected | function | Resets all data structures after having enabled new modules. | |
FunctionalTestSetupTrait:: |
protected | function | Changes parameters in the services.yml file. | |
FunctionalTestSetupTrait:: |
protected | function | Sets up the base URL based upon the environment variable. | |
FunctionalTestSetupTrait:: |
protected | function | Rewrites the settings.php file of the test site. | |
NodeCreationTrait:: |
protected | function | Creates a node based on default settings. Aliased as: drupalCreateNode | |
NodeCreationTrait:: |
public | function | Get a node from the database based on its title. Aliased as: drupalGetNodeByTitle | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
RandomGeneratorTrait:: |
protected | property | The random generator. | |
RandomGeneratorTrait:: |
protected | function | Gets the random generator for the utility methods. | |
RandomGeneratorTrait:: |
protected | function | Generates a unique random string containing letters and numbers. | 1 |
RandomGeneratorTrait:: |
public | function | Generates a random PHP object. | |
RandomGeneratorTrait:: |
public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | |
RandomGeneratorTrait:: |
public | function | Callback for random string validation. | |
RefreshVariablesTrait:: |
protected | function | Refreshes in-memory configuration and state information. | 3 |
SessionTestTrait:: |
protected | property | The name of the session cookie. | |
SessionTestTrait:: |
protected | function | Generates a session cookie name. | |
SessionTestTrait:: |
protected | function | Returns the session name in use on the child site. | |
StorageCopyTrait:: |
protected static | function | Copy the configuration from one storage to another and remove stale items. | |
TestRequirementsTrait:: |
private | function | Checks missing module requirements. | |
TestRequirementsTrait:: |
protected | function | Check module requirements for the Drupal use case. | 1 |
TestRequirementsTrait:: |
protected static | function | Returns the Drupal root directory. | |
TestSetupTrait:: |
protected static | property | An array of config object names that are excluded from schema checking. | |
TestSetupTrait:: |
protected | property | The dependency injection container used in the test. | |
TestSetupTrait:: |
protected | property | The DrupalKernel instance used in the test. | |
TestSetupTrait:: |
protected | property | The site directory of the original parent site. | |
TestSetupTrait:: |
protected | property | The private file directory for the test environment. | |
TestSetupTrait:: |
protected | property | The public file directory for the test environment. | |
TestSetupTrait:: |
protected | property | The site directory of this test run. | |
TestSetupTrait:: |
protected | property | Set to TRUE to strict check all configuration saved. | 2 |
TestSetupTrait:: |
protected | property | The temporary file directory for the test environment. | |
TestSetupTrait:: |
protected | property | The test run ID. | |
TestSetupTrait:: |
protected | function | Changes the database connection to the prefixed one. | |
TestSetupTrait:: |
protected | function | Gets the config schema exclusions for this test. | |
TestSetupTrait:: |
public static | function | Returns the database connection to the site running Simpletest. | |
TestSetupTrait:: |
protected | function | Generates a database prefix for running tests. | 2 |
UiHelperTrait:: |
protected | property | The current user logged in using the Mink controlled browser. | |
UiHelperTrait:: |
protected | property | The number of meta refresh redirects to follow, or NULL if unlimited. | |
UiHelperTrait:: |
protected | property | The number of meta refresh redirects followed during ::drupalGet(). | |
UiHelperTrait:: |
public | function | Returns WebAssert object. | 1 |
UiHelperTrait:: |
protected | function | Builds an a absolute URL from a system path or a URL object. | |
UiHelperTrait:: |
protected | function | Checks for meta refresh tag and if found call drupalGet() recursively. | |
UiHelperTrait:: |
protected | function | Clicks the element with the given CSS selector. | |
UiHelperTrait:: |
protected | function | Follows a link by complete name. | |
UiHelperTrait:: |
protected | function | Searches elements using a CSS selector in the raw content. | |
UiHelperTrait:: |
protected | function | Retrieves a Drupal path or an absolute path. | 3 |
UiHelperTrait:: |
protected | function | Logs in a user using the Mink controlled browser. | |
UiHelperTrait:: |
protected | function | Logs a user out of the Mink controlled browser and confirms. | |
UiHelperTrait:: |
protected | function | Executes a form submission. | |
UiHelperTrait:: |
protected | function | Returns whether a given user account is logged in. | |
UiHelperTrait:: |
protected | function | Takes a path and returns an absolute path. | |
UiHelperTrait:: |
protected | function | Retrieves the plain-text content from the current page. | |
UiHelperTrait:: |
protected | function | Get the current URL from the browser. | |
UiHelperTrait:: |
protected | function | Prepare for a request to testing site. | 1 |
UiHelperTrait:: |
protected | function | Fills and submits a form. | |
UserCreationTrait:: |
protected | function | Checks whether a given list of permission names is valid. | |
UserCreationTrait:: |
protected | function | Creates an administrative role. | |
UserCreationTrait:: |
protected | function | Creates a role with specified permissions. Aliased as: drupalCreateRole | |
UserCreationTrait:: |
protected | function | Create a user with a given set of permissions. Aliased as: drupalCreateUser | |
UserCreationTrait:: |
protected | function | Grant permissions to a user role. | |
UserCreationTrait:: |
protected | function | Switch the current logged in user. | |
UserCreationTrait:: |
protected | function | Creates a random user account and sets it as current user. | |
XdebugRequestTrait:: |
protected | function | Adds xdebug cookies, from request setup. |