Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / user / src / Tests / Views / FilterPermissionUiTest.php
diff --git a/web/core/modules/user/src/Tests/Views/FilterPermissionUiTest.php b/web/core/modules/user/src/Tests/Views/FilterPermissionUiTest.php
deleted file mode 100644 (file)
index f9444bc..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-<?php
-
-namespace Drupal\user\Tests\Views;
-
-use Drupal\views\Tests\ViewTestBase;
-use Drupal\views\Tests\ViewTestData;
-
-/**
- * Tests the permission field handler ui.
- *
- * @group user
- * @see \Drupal\user\Plugin\views\filter\Permissions
- */
-class FilterPermissionUiTest extends ViewTestBase {
-
-  /**
-   * Views used by this test.
-   *
-   * @var array
-   */
-  public static $testViews = ['test_filter_permission'];
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  public static $modules = ['user', 'user_test_views', 'views_ui'];
-
-  protected function setUp() {
-    parent::setUp(TRUE);
-
-    ViewTestData::createTestViews(get_class($this), ['user_test_views']);
-    $this->enableViewsTestModule();
-  }
-
-  /**
-   * Tests basic filter handler settings in the UI.
-   */
-  public function testHandlerUI() {
-    $this->drupalLogin($this->drupalCreateUser(['administer views', 'administer users']));
-
-    $this->drupalGet('admin/structure/views/view/test_filter_permission/edit/default');
-    // Verify that the handler summary is correctly displaying the selected
-    // permission.
-    $this->assertLink('User: Permission (= View user information)');
-    $this->drupalPostForm(NULL, [], 'Save');
-    // Verify that we can save the view.
-    $this->assertNoText('No valid values found on filter: User: Permission.');
-    $this->assertText('The view test_filter_permission has been saved.');
-
-    // Verify that the handler summary is also correct when multiple values are
-    // selected in the filter.
-    $edit = [
-      'options[value][]' => [
-        'access user profiles',
-        'administer views',
-      ],
-    ];
-    $this->drupalPostForm('admin/structure/views/nojs/handler/test_filter_permission/default/filter/permission', $edit, 'Apply');
-    $this->assertLink('User: Permission (or View us…)');
-    $this->drupalPostForm(NULL, [], 'Save');
-    // Verify that we can save the view.
-    $this->assertNoText('No valid values found on filter: User: Permission.');
-    $this->assertText('The view test_filter_permission has been saved.');
-  }
-
-}