You are here

SortWidgetKernelTest.php in Better Exposed Filters 8.4

Same filename and directory in other branches
  1. 8.5 tests/src/Kernel/Plugin/sort/SortWidgetKernelTest.php

File

tests/src/Kernel/Plugin/sort/SortWidgetKernelTest.php
View source
<?php

namespace Drupal\Tests\better_exposed_filters\Kernel\Plugin\sort;

use Drupal\Tests\better_exposed_filters\Kernel\BetterExposedFiltersKernelTestBase;
use Drupal\views\Views;

/**
 * Tests the advanced options of a sort widget.
 *
 * @group better_exposed_filters
 *
 * @see \Drupal\better_exposed_filters\Plugin\better_exposed_filters\sort\SortWidgetBase
 */
class SortWidgetKernelTest extends BetterExposedFiltersKernelTestBase {

  /**
   * {@inheritdoc}
   */
  public static $testViews = [
    'bef_test',
  ];

  /**
   * Tests combining sort options (sort order and sort by).
   */
  public function testCombineSortOptions() {
    $view = Views::getView('bef_test');
    $display =& $view->storage
      ->getDisplay('default');

    // Ensure our sort "created" is exposed.
    $display['display_options']['sorts']['created']['exposed'] = TRUE;
    $display['display_options']['sorts']['created']['expose']['label'] = 'Created';

    // Enable combined sort.
    $this
      ->setBetterExposedOptions($view, [
      'sort' => [
        'advanced' => [
          'combine' => TRUE,
        ],
      ],
    ]);

    // Get the exposed form render array.
    $output = $this
      ->getExposedFormRenderArray($view);

    // Assert our "sort_bef_combine" contains both sort by and sort order
    // options.
    $options = $output['sort_bef_combine']['#options'];
    $assert = [
      'created_ASC' => 'Created Asc',
      'created_DESC' => 'Created Desc',
    ];

    // Assert our combined sort options are added.
    $this
      ->assertEqual($options, $assert, 'Sort options are combined.');
    $view
      ->destroy();
  }

  /**
   * Tests combining and rewriting sort options (sort order and sort by).
   */
  public function testCombineRewriteSortOptions() {
    $view = Views::getView('bef_test');
    $display =& $view->storage
      ->getDisplay('default');

    // Ensure our sort "created" is exposed.
    $display['display_options']['sorts']['created']['exposed'] = TRUE;
    $display['display_options']['sorts']['created']['expose']['label'] = 'Created';

    // Enable combined sort and rewrite options.
    $this
      ->setBetterExposedOptions($view, [
      'sort' => [
        'advanced' => [
          'combine' => TRUE,
          'combine_rewrite' => "Created Desc|down\r\nCreated Asc|up",
        ],
      ],
    ]);

    // Get the exposed form render array.
    $output = $this
      ->getExposedFormRenderArray($view);

    // Assert our "sort_bef_combine" contains both sort by and sort order
    // options, and has its options rewritten.
    $options = $output['sort_bef_combine']['#options'];
    $assert = [
      'created_DESC' => 'down',
      'created_ASC' => 'up',
    ];

    // Assert our combined sort options are added.
    $this
      ->assertEqual($options, $assert, 'Sort options are combined and rewritten.');
    $view
      ->destroy();
  }

  /**
   * Tests adding a reset sort option.
   */
  public function testResetSortOptions() {
    $view = Views::getView('bef_test');
    $display =& $view->storage
      ->getDisplay('default');

    // Ensure our sort "created" is exposed.
    $display['display_options']['sorts']['created']['exposed'] = TRUE;
    $display['display_options']['sorts']['created']['expose']['label'] = 'Created';

    // Enable combined sort and rewrite options.
    $this
      ->setBetterExposedOptions($view, [
      'sort' => [
        'advanced' => [
          'combine' => TRUE,
          'reset' => TRUE,
          'reset_label' => 'Reset sort',
        ],
      ],
    ]);

    // Get the exposed form render array.
    $output = $this
      ->getExposedFormRenderArray($view);

    // Assert our "sort_bef_combine" contains a reset option at the top.
    $options = $output['sort_bef_combine']['#options'];
    $assert = [
      ' ' => 'Reset sort',
      'created_ASC' => 'Created Asc',
      'created_DESC' => 'Created Desc',
    ];

    // Assert our combined sort options are added.
    $this
      ->assertEqual($options, $assert, 'Reset sort option was added.');
    $view
      ->destroy();
  }

}

Classes

Namesort descending Description
SortWidgetKernelTest Tests the advanced options of a sort widget.