X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fsystem%2Fsrc%2FTests%2FForm%2FElementsVerticalTabsTest.php;fp=web%2Fcore%2Fmodules%2Fsystem%2Fsrc%2FTests%2FForm%2FElementsVerticalTabsTest.php;h=0000000000000000000000000000000000000000;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hp=3ef90e13a190d86bd491232d518b7f732bf6f498;hpb=aea91e65e895364e460983b890e295aa5d5540a5;p=yaffs-website diff --git a/web/core/modules/system/src/Tests/Form/ElementsVerticalTabsTest.php b/web/core/modules/system/src/Tests/Form/ElementsVerticalTabsTest.php deleted file mode 100644 index 3ef90e13a..000000000 --- a/web/core/modules/system/src/Tests/Form/ElementsVerticalTabsTest.php +++ /dev/null @@ -1,89 +0,0 @@ -adminUser = $this->drupalCreateUser(['access vertical_tab_test tabs']); - $this->webUser = $this->drupalCreateUser(); - $this->drupalLogin($this->adminUser); - } - - /** - * Ensures that vertical-tabs.js is included before collapse.js. - * - * Otherwise, collapse.js adds "SHOW" or "HIDE" labels to the tabs. - */ - public function testJavaScriptOrdering() { - $this->drupalGet('form_test/vertical-tabs'); - $position1 = strpos($this->content, 'core/misc/vertical-tabs.js'); - $position2 = strpos($this->content, 'core/misc/collapse.js'); - $this->assertTrue($position1 !== FALSE && $position2 !== FALSE && $position1 < $position2, 'vertical-tabs.js is included before collapse.js'); - } - - /** - * Ensures that vertical tab markup is not shown if user has no tab access. - */ - public function testWrapperNotShownWhenEmpty() { - // Test admin user can see vertical tabs and wrapper. - $this->drupalGet('form_test/vertical-tabs'); - $wrapper = $this->xpath("//div[@data-vertical-tabs-panes]"); - $this->assertTrue(isset($wrapper[0]), 'Vertical tab panes found.'); - - // Test wrapper markup not present for non-privileged web user. - $this->drupalLogin($this->webUser); - $this->drupalGet('form_test/vertical-tabs'); - $wrapper = $this->xpath("//div[@data-vertical-tabs-panes]"); - $this->assertFalse(isset($wrapper[0]), 'Vertical tab wrappers are not displayed to unprivileged users.'); - } - - /** - * Ensures that default vertical tab is correctly selected. - */ - public function testDefaultTab() { - $this->drupalGet('form_test/vertical-tabs'); - $this->assertFieldByName('vertical_tabs__active_tab', 'edit-tab3', t('The default vertical tab is correctly selected.')); - } - - /** - * Ensures that vertical tab form values are cleaned. - */ - public function testDefaultTabCleaned() { - $values = Json::decode($this->drupalPostForm('form_test/form-state-values-clean', [], t('Submit'))); - $this->assertFalse(isset($values['vertical_tabs__active_tab']), SafeMarkup::format('%element was removed.', ['%element' => 'vertical_tabs__active_tab'])); - } - -}