Skip to content

Commit

Permalink
Linking ignored tests to bug reports
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Aug 27, 2017
1 parent 7e034d9 commit 07eb380
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 17 deletions.
4 changes: 2 additions & 2 deletions java/client/test/org/openqa/selenium/ClickTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public void testCanClickAnImageMapArea() {

@Test
@Ignore(FIREFOX)
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/901")
public void testShouldBeAbleToClickOnAnElementGreaterThanTwoViewports() {
String url = appServer.whereIs("click_too_big.html");
driver.get(url);
Expand All @@ -275,7 +275,7 @@ public void testShouldBeAbleToClickOnAnElementGreaterThanTwoViewports() {

@SwitchToTopAfterTest
@Test
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/901")
public void testShouldBeAbleToClickOnAnElementInFrameGreaterThanTwoViewports() {
String url = appServer.whereIs("click_too_big_in_frame.html");
driver.get(url);
Expand Down
1 change: 0 additions & 1 deletion java/client/test/org/openqa/selenium/I18nTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ public void testEnteringHebrewTextFromRightToLeft() {
}

@Test
@Ignore(value = MARIONETTE, reason = "Doesn't handle first codepoint correctly.")
@Ignore(value = CHROME, reason = "ChromeDriver only supports characters in the BMP")
public void testEnteringSupplementaryCharacters() {
assumeFalse("IE: versions less thank 10 have issue 5069",
Expand Down
1 change: 0 additions & 1 deletion java/client/test/org/openqa/selenium/TypingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,6 @@ public void testShiftSelectionDeletes() {
}

@Test
@Ignore(MARIONETTE)
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/646")
public void testChordControlHomeShiftEndDelete() {
assumeFalse("FIXME: macs don't have HOME keys, would PGUP work?",
Expand Down
2 changes: 0 additions & 2 deletions java/client/test/org/openqa/selenium/UploadTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import static org.openqa.selenium.support.ui.ExpectedConditions.not;
import static org.openqa.selenium.support.ui.ExpectedConditions.visibilityOf;
import static org.openqa.selenium.testing.Driver.IE;
import static org.openqa.selenium.testing.Driver.MARIONETTE;
import static org.openqa.selenium.testing.Driver.PHANTOMJS;
import static org.openqa.selenium.testing.Driver.SAFARI;

Expand All @@ -35,7 +34,6 @@
import org.junit.Test;
import org.openqa.selenium.testing.Ignore;
import org.openqa.selenium.testing.JUnit4TestBase;
import org.openqa.selenium.testing.NotYetImplemented;
import org.openqa.selenium.testing.SwitchToTopAfterTest;
import org.openqa.selenium.testing.TestUtilities;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ public void testMovingMouseByRelativeOffset() {
}

@Test
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/789")
@NotYetImplemented(HTMLUNIT)
public void testMovingMouseToRelativeElementOffset() {
driver.get(pages.mouseTrackerPage);
Expand All @@ -386,7 +386,7 @@ public void testMovingMouseToRelativeElementOffset() {
}

@Test
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/789")
@NotYetImplemented(HTMLUNIT)
public void testMovingMouseToRelativeZeroElementOffset() {
driver.get(pages.mouseTrackerPage);
Expand Down Expand Up @@ -417,7 +417,7 @@ public void testMoveRelativeToBody() {
}

@Test
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/789")
@NotYetImplemented(HTMLUNIT)
public void testMoveMouseByOffsetOverAndOutOfAnElement() {
driver.get(pages.mouseOverPage);
Expand Down Expand Up @@ -445,7 +445,7 @@ public void testMoveMouseByOffsetOverAndOutOfAnElement() {
}

@Test
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/789")
@NotYetImplemented(HTMLUNIT)
public void testCanMoveOverAndOutOfAnElement() {
driver.get(pages.mouseOverPage);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void testPlainClickingOnMultiSelectionList() {
@Ignore(CHROME)
@Ignore(IE)
@Ignore(FIREFOX)
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/646")
public void testShiftClickingOnMultiSelectionList() {
driver.get(pages.formSelectionPage);

Expand Down Expand Up @@ -116,7 +116,7 @@ public void testShiftClickingOnMultiSelectionList() {
@Ignore(IE)
@Ignore(FIREFOX)
@Ignore(PHANTOMJS)
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/646")
public void testControlClickingOnMultiSelectionList() {
driver.get(pages.formSelectionPage);

Expand All @@ -142,7 +142,7 @@ public void testControlClickingOnMultiSelectionList() {
@Test
@Ignore(IE)
@Ignore(PHANTOMJS)
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/646")
public void testControlClickingOnCustomMultiSelectionList() {
driver.get(pages.selectableItemsPage);

Expand Down Expand Up @@ -226,7 +226,7 @@ public void testCanClickOnLinksWithAnOffset() {
}

@Test
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/789")
@NotYetImplemented(HTMLUNIT)
public void testClickAfterMoveToAnElementWithAnOffsetShouldUseLastMousePosition() {
driver.get(pages.clickEventPage);
Expand Down Expand Up @@ -281,7 +281,7 @@ public void testMouseMovementWorksWhenNavigatingToAnotherPage() {
}

@Test
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/646")
public void testChordControlCutAndPaste() {
assumeFalse("FIXME: macs don't have CONRTROL key", getEffectivePlatform().is(Platform.MAC));
assumeFalse("Windows: native events library does not support storing modifiers state yet",
Expand Down Expand Up @@ -320,7 +320,7 @@ public void testChordControlCutAndPaste() {
}

@Test
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/646")
@Ignore(IE)
public void testCombiningShiftAndClickResultsInANewWindow() {
driver.get(pages.linkedImage);
Expand All @@ -341,7 +341,7 @@ public void testCombiningShiftAndClickResultsInANewWindow() {
}

@Test
@Ignore(MARIONETTE)
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/646")
@Ignore(IE)
public void testHoldingDownShiftKeyWhileClicking() {
driver.get(pages.clickEventPage);
Expand Down

0 comments on commit 07eb380

Please sign in to comment.