Uploaded image for project: 'ZooKeeper'
  1. ZooKeeper
  2. ZOOKEEPER-734

QuorumPeerTestBase.java and ZooKeeperServerMainTest.java do not handle windows path correctly

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 3.3.0
    • 3.3.1, 3.4.0
    • tests
    • None
    • Windows 32-bit

    • Reviewed

    Description

      While runniing "ant test-core-java" QuorumPeerTestBase.java and ZooKeeperServerMainTest.java fail. The problem seems to be in ZookeeperserverMainTest.java:MainThread():66 and in QuorumPeerBaseTest.java:MainThread:76.

      FileWriter.write() writes windows path to the conf file. Java does not like windows path. Therefore, the test complains that it cannot find myid and fails.

      Solution - convert windows path to UNIX path. This worked for me on windows. Diffs are attached below. Solution not tested on Linux since for some reason build is failing (due to problems not related to this change).

      vmc-floorb-dhcp116-114:/opt/zksrc/zookeeper-3.3.0/src/java/test/org/apache/zookeeper/server # svn diff
      Index: ZooKeeperServerMainTest.java
      ===================================================================
      — ZooKeeperServerMainTest.java (revision 931240)
      +++ ZooKeeperServerMainTest.java (working copy)
      @@ -61,7 +61,8 @@
      if (!dataDir.mkdir())

      { throw new IOException("unable to mkdir " + dataDir); }
      • fwriter.write("dataDir=" + dataDir.toString() + "\n");
        + String data = dataDir.toString().replace('
        ', '/');
        + fwriter.write("dataDir=" + data + "\n");

      fwriter.write("clientPort=" + clientPort + "\n");
      fwriter.flush();
      Index: quorum/QuorumPeerTestBase.java
      ===================================================================
      — quorum/QuorumPeerTestBase.java (revision 931240)
      +++ quorum/QuorumPeerTestBase.java (working copy)
      @@ -73,7 +73,8 @@
      if (!dataDir.mkdir())

      { throw new IOException("Unable to mkdir " + dataDir); }
      • fwriter.write("dataDir=" + dataDir.toString() + "\n");
        + String data = dataDir.toString().replace('
        ', '/');
        + fwriter.write("dataDir=" + data + "\n");

      fwriter.write("clientPort=" + clientPort + "\n");
      fwriter.write(quorumCfgSection + "\n");

      Attachments

        1. ZOOKEEPER-734.patch
          2 kB
          Vishal Kher

        Activity

          People

            vishalmlst Vishal Kher
            vishalmlst Vishal Kher
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: