diff options
author | Jim Hahn <jrh3@att.com> | 2021-07-21 13:50:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-07-21 13:50:44 +0000 |
commit | f01fce93c17db824d772240b9c68c07d15c6869a (patch) | |
tree | 62db091689fefce9b812efaf0b23d01417ec69fd /applications/match/src | |
parent | 527c3c8542dfc4d0078213441529ec68eec1372e (diff) | |
parent | 24446884306a87a1d22fb8d0b28efbf41201a87c (diff) |
Merge "Include returned attributes in Decision"
Diffstat (limited to 'applications/match/src')
-rw-r--r-- | applications/match/src/test/java/org/onap/policy/xacml/pdp/application/match/MatchPdpApplicationTest.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/applications/match/src/test/java/org/onap/policy/xacml/pdp/application/match/MatchPdpApplicationTest.java b/applications/match/src/test/java/org/onap/policy/xacml/pdp/application/match/MatchPdpApplicationTest.java index 03222342..a855f3e2 100644 --- a/applications/match/src/test/java/org/onap/policy/xacml/pdp/application/match/MatchPdpApplicationTest.java +++ b/applications/match/src/test/java/org/onap/policy/xacml/pdp/application/match/MatchPdpApplicationTest.java @@ -184,6 +184,12 @@ public class MatchPdpApplicationTest { assertThat(response).isNotNull(); assertThat(response.getPolicies()).isEmpty(); // + // Match applications should not have this information returned + // + assertThat(response.getAdvice()).isNull(); + assertThat(response.getObligations()).isNull(); + assertThat(response.getAttributes()).isNull(); + // // Ask for foo // baseRequest.getResource().put("matchable", "foo"); @@ -194,6 +200,12 @@ public class MatchPdpApplicationTest { assertThat(response).isNotNull(); assertThat(response.getPolicies()).hasSize(1); // + // Match applications should not have this information returned + // + assertThat(response.getAdvice()).isNull(); + assertThat(response.getObligations()).isNull(); + assertThat(response.getAttributes()).isNull(); + // // Validate it // validateDecision(response, baseRequest, "value1"); |