Github user JPercivall commented on a diff in the pull request:
https://github.com/apache/nifi/pull/803#discussion_r79011075
--- Diff: nifi-mock/src/main/java/org/apache/nifi/util/MockFlowFile.java ---
@@ -290,4 +291,18 @@ public long getLineageStartIndex() {
public long getQueueDateIndex() {
return 0;
}
+
+ public boolean isAttributeEqual(final String attributeName, final
String expectedValue) {
+ // unknown attribute name, so cannot be equal.
+ if (attributes.containsKey(attributeName) == false)
+ return false;
+
+ String value = attributes.get(attributeName);
+ return Objects.equals(expectedValue, value);
+ }
+
+ public boolean isContentEqual(String excpected) {
+ final String value = new String(this.data,
Charset.forName("UTF-8"));
+ return Objects.equals(excpected, value);
--- End diff --
Actually I'm confused why this is added when "assertContentEquals"[1] and
it's various overloading methods exist.
[1]
https://github.com/apache/nifi/blob/master/nifi-mock/src/main/java/org/apache/nifi/util/MockFlowFile.java#L233-L233
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---