You are here

function EncryptEncryptionMethodPluginsTest::testPluginDependencies in Encrypt 7.3

Same name and namespace in other branches
  1. 7.2 encrypt.test \EncryptEncryptionMethodPluginsTest::testPluginDependencies()

Test that plugins cannot be enabled if dependencies are not met.

File

./encrypt.test, line 203
Tests for encrypt.module

Class

EncryptEncryptionMethodPluginsTest
Test encryption method hooks.

Code

function testPluginDependencies() {

  // First, set the variable to trigger our unmet dependency.
  variable_set('encrypt_test_trigger_unmet_deps', TRUE);

  // Then make sure dependency errors appear on the page, and the method
  // cannot be enabled.
  $this
    ->drupalGet('admin/config/system/encrypt/add');
  $this
    ->assertText('This is an unmet dependency.');
  $this
    ->assertFieldByXPath('//input[@name="encrypt_encryption_method" and @value="test" and @disabled]');

  // Now disable the unmet dependency and make sure all is OK. Note that this
  // should also implicitly test the plugin cache-clearing mechanism.
  variable_set('encrypt_test_trigger_unmet_deps', FALSE);
  $this
    ->drupalGet('admin/config/system/encrypt');
  $this
    ->assertNoText('This is an unmet dependency.');
  $this
    ->assertNoFieldByXPath('//input[@name="encrypt_encryption_method" and @value="test" and @disabled]');
}