You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zeppelin.apache.org by bzz <gi...@git.apache.org> on 2015/12/17 06:53:50 UTC

[GitHub] incubator-zeppelin pull request: ZEPPELIN-510: refactor Integratio...

GitHub user bzz opened a pull request:

    https://github.com/apache/incubator-zeppelin/pull/546

    ZEPPELIN-510: refactor Integration Test

    This is another approach to solve [ZEPPELIN-510](https://issues.apache.org/jira/browse/ZEPPELIN-510) problem of flacky integration tests.
    
    It uses [FluentWait](http://selenium.googlecode.com/svn/trunk/docs/api/java/org/openqa/selenium/support/ui/FluentWait.html) to poll every 1s untill 30s timeout.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/bzz/incubator-zeppelin fix/zeppelin-510-integration-tests

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/incubator-zeppelin/pull/546.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #546
    
----
commit 53b6491c57800230dad47453624fd1c0e0574184
Author: Alexander Bezzubov <bz...@apache.org>
Date:   2015-12-17T05:48:59Z

    ZEPPELIN-510: increase MAX browsear delay 30s + poll every 1s

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: ZEPPELIN-510: refactor Integratio...

Posted by bzz <gi...@git.apache.org>.
Github user bzz commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/546#issuecomment-165358089
  
    As this is a hotfix I'll mere if there is no discussion (see #540)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: ZEPPELIN-510: refactor Integratio...

Posted by bzz <gi...@git.apache.org>.
Github user bzz commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/546#issuecomment-165365309
  
    Thank you for reviews!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: ZEPPELIN-510: refactor Integratio...

Posted by prabhjyotsingh <gi...@git.apache.org>.
Github user prabhjyotsingh commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/546#issuecomment-165412030
  
    Sorry, for late reply, but, originally "waitForParagraph" had a 60sec delay, which now has decreased to 30sec.
    Can we increase it back to 60?
    
        diff --git a/zeppelin-server/src/test/java/org/apache/zeppelin/ZeppelinIT.java b/zeppelin-server/src/test/java/org/apache/zeppelin/ZeppelinIT.java
            index 47caaa3..2a32c9c 100644
            --- a/zeppelin-server/src/test/java/org/apache/zeppelin/ZeppelinIT.java
            +++ b/zeppelin-server/src/test/java/org/apache/zeppelin/ZeppelinIT.java
        @@ -65,6 +65,7 @@ import com.google.common.base.Function;
        public class ZeppelinIT {
          private static final Logger LOG = LoggerFactory.getLogger(ZeppelinIT.class);
          private static final long MAX_BROWSER_TIMEOUT_SEC = 30;
          +  private static final long MAX_PARAGRAPH_TIMEOUT_SEC = 60;
          private WebDriver driver;
        
          private void setWebDriver() {
            @@ -112,7 +113,7 @@ public class ZeppelinIT {
        
              while (System.currentTimeMillis() - start < 60 * 1000) {
                try { // wait for page load
                  -        WebElement element = pollingWait(By.partialLinkText("Create new note"));
                  +        WebElement element = pollingWait(By.partialLinkText("Create new note"), MAX_BROWSER_TIMEOUT_SEC);
                  loaded = element.isDisplayed();
                  break;
                } catch (TimeoutException e) {
                  @@ -149,22 +150,22 @@ public class ZeppelinIT {
                    boolean waitForParagraph(final int paragraphNo, final String state) {
                      By locator = By.xpath(getParagraphXPath(paragraphNo)
                          + "//div[contains(@class, 'control')]//span[1][contains(.,'" + state + "')]");
                      -    WebElement element = pollingWait(locator);
                      +    WebElement element = pollingWait(locator, MAX_PARAGRAPH_TIMEOUT_SEC);
                      return element.isDisplayed();
                    }
        
                    boolean waitForText(final String txt, final By locator) {
                      try {
                        -      WebElement element = pollingWait(locator);
                        +      WebElement element = pollingWait(locator, MAX_BROWSER_TIMEOUT_SEC);


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: ZEPPELIN-510: refactor Integratio...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/incubator-zeppelin/pull/546


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: ZEPPELIN-510: refactor Integratio...

Posted by corneadoug <gi...@git.apache.org>.
Github user corneadoug commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/546#issuecomment-165363871
  
    Go!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: ZEPPELIN-510: refactor Integratio...

Posted by prabhjyotsingh <gi...@git.apache.org>.
Github user prabhjyotsingh commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/546#issuecomment-165358669
  
    Thanks, this looks better ```Elapsed time 33 min 30 sec``` 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---