Skip to content
The Jenkins Controller is preparing for shutdown. No new builds can be started.
Unstable

Changes

Summary

  1. Bug 908: Fix URI/URL double encoding, ensuring encoded/decoded variants (details)
Commit 0b07f9107c5b033913f5c4cbeb906ae6dafc2d77 by Sven Gothel
Bug 908: Fix URI/URL double encoding, ensuring encoded/decoded variants are used properly (Added unit test)

Bug 908 was caused by confusing URI encoded parts (e.g. scheme-specific-part) and it's decoded variant.

This especially happened due to:
  - the fact, that the encoded and unencoded variant uses the same String type,
  - the URI/URL decoding differs, is not complete (e.g. %20 .. SPACE remains in decoded part),
  - and does not comply w/ RFC 2396 and RFC 3986 (encoding), e.g. not all RESERVED chars are encoded.

In branch 'v2.3.0_branch', we will introduce our own Uri and Uri.Encoded class
to solve above issue by replacing all URI usage w/ Uri.

- Backporting results of own Uri class introduction in branch 'v2.3.0_branch'

- Ensure the encoded URI parts are used where required, i.e. IOUtil.compose(..) etc

- TestNetIOURIReservedCharsBug908: Automated test, launching GlueGen jar file from an <i>odd pathname</i>.
The file was modified src/java/com/jogamp/common/util/IOUtil.java (diff)
The file was modified make/scripts/runtest.sh (diff)
The file was addedsrc/junit/com/jogamp/common/net/TestNetIOURIReservedCharsBug908.java (diff)
The file was modified src/java/com/jogamp/common/util/JarUtil.java (diff)
The file was modified src/junit/com/jogamp/common/util/TestIOUtilURIHandling.java (diff)
The file was modified src/junit/com/jogamp/common/net/URIDumpUtil.java (diff)
The file was modified src/junit/com/jogamp/common/util/TestJarUtil.java (diff)
The file was modified make/scripts/runtest-x64.bat (diff)
The file was addedsrc/junit/com/jogamp/junit/util/MiscUtils.java (diff)
The file was modified make/scripts/java-win64.bat (diff)