mirror of https://github.com/apache/nifi.git
NIFI-1660: Fix formatting; update to NOTICE files of nars that bring in EL. Closed Reader that was opened in TestQuery.
This commit is contained in:
parent
abad7d805e
commit
6de738fd04
|
@ -1360,8 +1360,7 @@ public class Query {
|
||||||
toStringEvaluator(argEvaluators.get(0), "first argument to jsonPath")), "jsonPath");
|
toStringEvaluator(argEvaluators.get(0), "first argument to jsonPath")), "jsonPath");
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
throw new AttributeExpressionLanguageParsingException(
|
throw new AttributeExpressionLanguageParsingException("Expected a Function-type expression but got " + tree.toString());
|
||||||
"Expected a Function-type expression but got " + tree.toString());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -241,7 +241,7 @@ public class TestQuery {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testJsonPath() {
|
public void testJsonPath() throws IOException {
|
||||||
final Map<String, String> attributes = new HashMap<>();
|
final Map<String, String> attributes = new HashMap<>();
|
||||||
attributes.put("json", getResourceAsString("/json/address-book.json"));
|
attributes.put("json", getResourceAsString("/json/address-book.json"));
|
||||||
verifyEquals("${json:jsonPath('$.firstName')}", attributes, "John");
|
verifyEquals("${json:jsonPath('$.firstName')}", attributes, "John");
|
||||||
|
@ -1315,8 +1315,8 @@ public class TestQuery {
|
||||||
assertEquals(expectedResult, result.getValue());
|
assertEquals(expectedResult, result.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getResourceAsString(String resourceName) {
|
private String getResourceAsString(String resourceName) throws IOException {
|
||||||
Reader reader = new InputStreamReader(new BufferedInputStream(getClass().getResourceAsStream(resourceName)));
|
try (final Reader reader = new InputStreamReader(new BufferedInputStream(getClass().getResourceAsStream(resourceName)))) {
|
||||||
int n = 0;
|
int n = 0;
|
||||||
char[] buf = new char[1024];
|
char[] buf = new char[1024];
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
@ -1331,8 +1331,6 @@ public class TestQuery {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -100,6 +100,14 @@ The following binary components are provided under the Apache Software License v
|
||||||
Swagger Core 1.5.3-M1
|
Swagger Core 1.5.3-M1
|
||||||
Copyright 2015 Reverb Technologies, Inc.
|
Copyright 2015 Reverb Technologies, Inc.
|
||||||
|
|
||||||
|
(ASLv2) JSON-SMART
|
||||||
|
The following NOTICE information applies:
|
||||||
|
Copyright 2011 JSON-SMART authors
|
||||||
|
|
||||||
|
(ASLv2) JsonPath
|
||||||
|
The following NOTICE information applies:
|
||||||
|
Copyright 2011 JsonPath authors
|
||||||
|
|
||||||
************************
|
************************
|
||||||
Common Development and Distribution License 1.1
|
Common Development and Distribution License 1.1
|
||||||
************************
|
************************
|
||||||
|
|
|
@ -17,3 +17,11 @@ The following binary components are provided under the Apache Software License v
|
||||||
|
|
||||||
This product includes software from the Spring Framework,
|
This product includes software from the Spring Framework,
|
||||||
under the Apache License 2.0 (see: StringUtils.containsWhitespace())
|
under the Apache License 2.0 (see: StringUtils.containsWhitespace())
|
||||||
|
|
||||||
|
(ASLv2) JSON-SMART
|
||||||
|
The following NOTICE information applies:
|
||||||
|
Copyright 2011 JSON-SMART authors
|
||||||
|
|
||||||
|
(ASLv2) JsonPath
|
||||||
|
The following NOTICE information applies:
|
||||||
|
Copyright 2011 JsonPath authors
|
||||||
|
|
Loading…
Reference in New Issue