summaryrefslogtreecommitdiff
path: root/dev-java/commons-text/files/commons-text-1.14.0-StringSubstitutorWithInterpolatorStringLookupTest.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-java/commons-text/files/commons-text-1.14.0-StringSubstitutorWithInterpolatorStringLookupTest.patch')
-rw-r--r--dev-java/commons-text/files/commons-text-1.14.0-StringSubstitutorWithInterpolatorStringLookupTest.patch74
1 files changed, 74 insertions, 0 deletions
diff --git a/dev-java/commons-text/files/commons-text-1.14.0-StringSubstitutorWithInterpolatorStringLookupTest.patch b/dev-java/commons-text/files/commons-text-1.14.0-StringSubstitutorWithInterpolatorStringLookupTest.patch
new file mode 100644
index 000000000000..fb6e5d7e0a96
--- /dev/null
+++ b/dev-java/commons-text/files/commons-text-1.14.0-StringSubstitutorWithInterpolatorStringLookupTest.patch
@@ -0,0 +1,74 @@
+
+─ testJavaScript()
+ tags: []
+ uniqueId: [engine:junit-jupiter]/[class:org.apache.commons.text.StringSubstitutorWithInterpolatorStringLookupTest]/[method:testJavaScript()]
+ parent: [engine:junit-jupiter]/[class:org.apache.commons.text.StringSubstitutorWithInterpolatorStringLookupTest]
+ source: MethodSource [className = 'org.apache.commons.text.StringSubstitutorWithInterpolatorStringLookupTest', methodName = 'testJavaScript', methodParameterTypes = '']
+ caught: java.lang.IllegalArgumentException: Error in script engine [javascript] evaluating script ["Hello World!"].
+ at org.apache.commons.text.lookup.IllegalArgumentExceptions.format(IllegalArgumentExceptions.java:49)
+ at org.apache.commons.text.lookup.ScriptStringLookup.lookup(ScriptStringLookup.java:88)
+ at org.apache.commons.text.lookup.StringLookup.apply(StringLookup.java:66)
+ at org.apache.commons.text.lookup.InterpolatorStringLookup.lookup(InterpolatorStringLookup.java:127)
+ at org.apache.commons.text.lookup.StringLookup.apply(StringLookup.java:66)
+ at org.apache.commons.text.StringSubstitutor.resolveVariable(StringSubstitutor.java:1154)
+ at org.apache.commons.text.StringSubstitutor.substitute(StringSubstitutor.java:1520)
+ at org.apache.commons.text.StringSubstitutor.substitute(StringSubstitutor.java:1395)
+ at org.apache.commons.text.StringSubstitutor.replace(StringSubstitutor.java:899)
+ at org.apache.commons.text.StringSubstitutorWithInterpolatorStringLookupTest.testJavaScript(StringSubstitutorWithInterpolatorStringLookupTest.java:206)
+ at java.base/java.lang.reflect.Method.invoke(Method.java:565)
+ at java.base/java.util.ArrayList.forEach(ArrayList.java:1604)
+ at java.base/java.util.ArrayList.forEach(ArrayList.java:1604)
+ Caused by: java.lang.IllegalArgumentException: No script engine named javascript
+ at org.apache.commons.text.lookup.ScriptStringLookup.lookup(ScriptStringLookup.java:84)
+ ... 11 more
+ duration: 1 ms
+ status: ✘ FAILED
+─ testDnsLookupAddress()
+ tags: []
+ uniqueId: [engine:junit-jupiter]/[class:org.apache.commons.text.StringSubstitutorWithInterpolatorStringLookupTest]/[method:testDnsLookupAddress()]
+ parent: [engine:junit-jupiter]/[class:org.apache.commons.text.StringSubstitutorWithInterpolatorStringLookupTest]
+ source: MethodSource [className = 'org.apache.commons.text.StringSubstitutorWithInterpolatorStringLookupTest', methodName = 'testDnsLookupAddress', methodParameterTypes = '']
+ caught: java.net.UnknownHostException: apache.org: Temporary failure in name resolution
+ at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
+ at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Inet6AddressImpl.java:52)
+ at java.base/java.net.InetAddress$PlatformResolver.lookupByName(InetAddress.java:1134)
+ at java.base/java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1712)
+ at java.base/java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:1060)
+ at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1702)
+ at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1582)
+ at java.base/java.net.InetAddress.getByName(InetAddress.java:1492)
+ at org.apache.commons.text.StringSubstitutorWithInterpolatorStringLookupTest.testDnsLookupAddress(StringSubstitutorWithInterpolatorStringLookupTest.java:161)
+ at java.base/java.lang.reflect.Method.invoke(Method.java:565)
+ at java.base/java.util.ArrayList.forEach(ArrayList.java:1604)
+ at java.base/java.util.ArrayList.forEach(ArrayList.java:1604)
+ duration: 1 ms
+ status: ✘ FAILED
+
+--- a/src/test/java/org/apache/commons/text/StringSubstitutorWithInterpolatorStringLookupTest.java
++++ b/src/test/java/org/apache/commons/text/StringSubstitutorWithInterpolatorStringLookupTest.java
+@@ -28,6 +28,7 @@ import org.apache.commons.text.lookup.DefaultStringLookup;
+ import org.apache.commons.text.lookup.StringLookup;
+ import org.apache.commons.text.lookup.StringLookupFactory;
+ import org.junit.jupiter.api.Assertions;
++import org.junit.jupiter.api.Disabled;
+ import org.junit.jupiter.api.Test;
+
+ class StringSubstitutorWithInterpolatorStringLookupTest {
+@@ -154,7 +155,7 @@ class StringSubstitutorWithInterpolatorStringLookupTest {
+ Assertions.assertEquals(input, strSubst.replace(input));
+ }
+
+- @Test
++ @Test @Disabled
+ void testDnsLookupAddress() throws UnknownHostException {
+ final StringSubstitutor strSubst =
+ new StringSubstitutor(createInterpolatorWithLookups(DefaultStringLookup.DNS));
+@@ -198,7 +199,7 @@ class StringSubstitutorWithInterpolatorStringLookupTest {
+ Assertions.assertEquals(unknown, strSubst.replace(unknown));
+ }
+
+- @Test
++ @Test @Disabled
+ void testJavaScript() {
+ final StringSubstitutor strSubst =
+ new StringSubstitutor(createInterpolatorWithLookups(DefaultStringLookup.SCRIPT));