Uploaded image for project: 'ODE'
  1. ODE
  2. ODE-881

SchemaCaptureTest fails locally with spaces in path

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 1.3.4
    • 1.3.5
    • Test environment
    • None
    • Project setup at a path with spaces (e.g. "/srv/dev/apache ode/...")

    Description

      The SchemaCaptureTest test in ODE Utilities fails when someone uses a path with spaces locally. In that case the following line returns a file path containing "%20" instead of " " in the file path:

      InputStream xsdStream = new FileInputStream(TestResources.getRetailerSchema().getFile());

      I fixed mine here for spaces, but in generally the problem exists for any character that is escaped in a URL:

      InputStream xsdStream = new FileInputStream(TestResources.getRetailerSchema().getFile().replaceAll("%20", " "));

      Attachments

        Activity

          People

            vanto Tammo van Lessen
            ancoron Ancoron Luciferis
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: