You are here

public function DefaultConfigTest::testDefaultConfigEntityInclusion in Search Autocomplete 2.x

Same name and namespace in other branches
  1. 8 src/Tests/Entity/DefaultConfigTest.php \Drupal\search_autocomplete\Tests\Entity\DefaultConfigTest::testDefaultConfigEntityInclusion()

Check that default entities are properly included.

1) check for search_block default configuration.

File

src/Tests/Entity/DefaultConfigTest.php, line 40

Class

DefaultConfigTest
Test default configurations.

Namespace

Drupal\search_autocomplete\Tests\Entity

Code

public function testDefaultConfigEntityInclusion() {

  // Build a configuration data.
  $config = [
    'id' => 'search_block',
    'label' => 'Search Block',
    'selector' => '',
    'status' => TRUE,
    'minChar' => 3,
    'maxSuggestions' => 10,
    'autoSubmit' => TRUE,
    'autoRedirect' => TRUE,
    'noResultLabel' => 'No results found for [search-phrase]. Click to perform full search.',
    'noResultValue' => '[search-phrase]',
    'noResultLink' => '',
    'moreResultsLabel' => 'View all results for [search-phrase].',
    'moreResultsValue' => '[search-phrase]',
    'moreResultsLink' => '',
    'source' => 'autocompletion_callbacks_nodes::nodes_autocompletion_callback',
    'theme' => 'basic-blue.css',
    'editable' => TRUE,
    'deletable' => FALSE,
  ];

  // ----------------------------------------------------------------------
  // 1) Verify that the search_block default config is properly added.
  $entity = AutocompletionConfiguration::load($config['id']);
  $this
    ->assertNotNull($entity, 'Default configuration search_block created during installation process.');
  $this
    ->assertEqual($entity
    ->id(), $config['id']);
  $this
    ->assertEqual($entity
    ->label(), $config['label']);
  $this
    ->assertEqual($entity
    ->getStatus(), $config['status']);
  $this
    ->assertEqual($entity
    ->getSelector(), $config['selector']);
  $this
    ->assertEqual($entity
    ->getMinChar(), $config['minChar']);
  $this
    ->assertEqual($entity
    ->getMaxSuggestions(), $config['maxSuggestions']);
  $this
    ->assertEqual($entity
    ->getAutoSubmit(), $config['autoSubmit']);
  $this
    ->assertEqual($entity
    ->getAutoRedirect(), $config['autoRedirect']);
  $this
    ->assertEqual($entity
    ->getNoResultLabel(), $config['noResultLabel']);
  $this
    ->assertEqual($entity
    ->getNoResultValue(), $config['noResultValue']);
  $this
    ->assertEqual($entity
    ->getNoResultLink(), $config['noResultLink']);
  $this
    ->assertEqual($entity
    ->getMoreResultsLabel(), $config['moreResultsLabel']);
  $this
    ->assertEqual($entity
    ->getMoreResultsValue(), $config['moreResultsValue']);
  $this
    ->assertEqual($entity
    ->getMoreResultsLink(), $config['moreResultsLink']);
  $this
    ->assertEqual($entity
    ->getSource(), $config['source']);
  $this
    ->assertEqual($entity
    ->getTheme(), $config['theme']);
  $this
    ->assertEqual($entity
    ->getEditable(), $config['editable']);
  $this
    ->assertEqual($entity
    ->getDeletable(), $config['deletable']);
}