View source
<?php
namespace Drupal\Tests\acquia_connector\Functional;
use Drupal\acquia_connector\Controller\StatusController;
use Drupal\acquia_connector\Helper\Storage;
use Drupal\acquia_connector\Subscription;
use Drupal\Tests\BrowserTestBase;
class AcquiaConnectorModuleTest extends BrowserTestBase {
protected $defaultTheme = 'stark';
protected $acqtestEmail = 'TEST_networkuser@example.com';
protected $acqtestPass = 'TEST_password';
protected $acqtestId = 'TEST_AcquiaConnectorTestID';
protected $acqtestKey = 'TEST_AcquiaConnectorTestKey';
protected $acqtestName = 'test name';
protected $acqtestMachineName = 'test_name';
protected $acqtestExpiredId = 'TEST_AcquiaConnectorTestIDExp';
protected $acqtestExpiredKey = 'TEST_AcquiaConnectorTestKeyExp';
protected $acqtest503Id = 'TEST_AcquiaConnectorTestID503';
protected $acqtest503Key = 'TEST_AcquiaConnectorTestKey503';
protected $acqtestErrorId = 'TEST_AcquiaConnectorTestIDErr';
protected $acqtestErrorKey = 'TEST_AcquiaConnectorTestKeyErr';
protected $privilegedUser;
protected $networkUser;
protected $cloudFreeUrl;
protected $setupPath;
protected $credentialsPath;
protected $settingsPath;
protected $environmentChangePath;
protected $statusReportUrl;
public static $modules = [
'acquia_connector',
'toolbar',
'acquia_connector_test',
'node',
];
public function setUp() {
parent::setUp();
$this->privilegedUser = $this
->drupalCreateUser([
'administer site configuration',
'access administration pages',
'access toolbar',
]);
$this
->drupalLogin($this->privilegedUser);
$this->networkUser = $this
->drupalCreateUser();
$this->networkUser->mail = $this->acqtestEmail;
$this->networkUser->pass = $this->acqtestPass;
$this->networkUser
->save();
$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();
$this
->createContentType([
'type' => 'test_content_type',
'name' => 'Test content type',
]);
$this
->createNode([
'type' => 'test_content_type',
'title' => 'Dummy node',
'body' => [
[
'value' => 'Dummy node body',
],
],
]);
}
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':
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.';
}
}
public function testAcquiaConnectorGetConnectedTests() {
$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');
$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');
$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');
$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');
$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');
$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();
$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');
$this
->drupalGet('admin');
$this
->assertText($this
->acquiaConnectorStrings('menu-active'), 'Subscription active menu message appears');
$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');
$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');
$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();
}
public function testAcquiaConnectorSubscriptionTests() {
$subscription = new Subscription();
$is_active = $subscription
->isActive();
$this
->assertFalse($is_active, 'Subscription is not currently active.');
$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.');
$this
->assertIdentical(\Drupal::state()
->get('acquia_connector_test_request_count', 0), 0);
$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);
$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');
$stored = \Drupal::config('acquia_connector.settings');
$current_subscription = \Drupal::state()
->get('acquia_subscription_data');
$this
->assertNotIdentical($check_subscription, $current_subscription, 'Stored subscription data not same before connected subscription.');
$this
->assertTrue($current_subscription['active'] === FALSE, 'Default is inactive.');
\Drupal::state()
->set('acquia_connector_test_request_count', 0);
$edit_fields = [
'acquia_identifier' => $this->acqtestId,
'acquia_key' => $this->acqtestKey,
];
$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 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.');
$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.');
\Drupal::state()
->set('acquia_connector_test_request_count', 0);
$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.');
$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.');
\Drupal::state()
->set('acquia_connector_test_request_count', 0);
$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.');
$check_subscription = $subscription
->update();
\Drupal::state()
->resetCache();
$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.');
}
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,
];
\Drupal::state()
->set('acquia_subscription_data', $test_data);
$getIdFromSub = new StatusController();
$key = $getIdFromSub
->getIdFromSub($test_data);
$this
->assertIdentical($key, $uuid);
$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);
$this
->assertIdentical($json['version'], '1.0', 'Correct API version found.');
$query['key'] = $this
->randomString(16);
$this
->drupalGet('system/acquia-connector-status', [
'query' => $query,
]);
$this
->assertResponse(403);
}
public function testSpiChangeFormTests() {
$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');
$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.');
$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);
$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);
}
$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.');
$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.');
$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);
$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');
}
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();
}
}