aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/test/resources/simpleDeploy/createGroupsNewSubNotFound.json
diff options
context:
space:
mode:
authorjrh3 <jrh3@att.com>2019-06-20 14:57:50 -0400
committerjrh3 <jrh3@att.com>2019-06-20 16:12:30 -0400
commitb346fda03f450ccf9f8adb143f872cfce6ba76a8 (patch)
tree5dc6167e8a8bf143dd92d24682e587fd47ef5f2d /main/src/test/resources/simpleDeploy/createGroupsNewSubNotFound.json
parent82cc7e0ccf799e0ea5d9afd033a3cff88468b6bf (diff)
Allow integer version when using PDP Group Deploy
The policies listed in a "PDP Group Deploy" request may not have fully qualified versions. Modified the code to replace the versions in the request with fully qualified versions. Also improved performance by avoiding look-ups of policies that are already in the subgroup. Change-Id: I37899c2b45228b97a80b7ef44f69694ba57e8f4a Issue-ID: POLICY-1784 Signed-off-by: jrh3 <jrh3@att.com>
Diffstat (limited to 'main/src/test/resources/simpleDeploy/createGroupsNewSubNotFound.json')
-rw-r--r--main/src/test/resources/simpleDeploy/createGroupsNewSubNotFound.json56
1 files changed, 56 insertions, 0 deletions
diff --git a/main/src/test/resources/simpleDeploy/createGroupsNewSubNotFound.json b/main/src/test/resources/simpleDeploy/createGroupsNewSubNotFound.json
new file mode 100644
index 00000000..f4717008
--- /dev/null
+++ b/main/src/test/resources/simpleDeploy/createGroupsNewSubNotFound.json
@@ -0,0 +1,56 @@
+{
+ "groups": [
+ {
+ "name": "groupA",
+ "version": "200.2.3",
+ "description": "my description",
+ "pdpGroupState": "ACTIVE",
+ "properties": {
+ "hello": "world"
+ },
+ "pdpSubgroups": [
+ {
+ "pdpType": "pdpTypeA",
+ "desiredInstanceCount": 1,
+ "properties": {
+ "abc": "def"
+ },
+ "supportedPolicyTypes": [
+ {
+ "name": "typeA",
+ "version": "100.2.3"
+ }
+ ],
+ "pdpInstances": [
+ {
+ "instanceId": "pdpA"
+ }
+ ],
+ "policies": [
+ {
+ "name": "policy-unknown",
+ "version": "9.9.9"
+ }
+ ]
+ },
+ {
+ "pdpType": "pdpTypeB",
+ "desiredInstanceCount": 1,
+ "currentInstanceCount": 22,
+ "supportedPolicyTypes": [
+ {
+ "name": "typeA",
+ "version": "100.2.3"
+ }
+ ],
+ "pdpInstances": [
+ {
+ "instanceId": "pdpB"
+ }
+ ],
+ "policies": []
+ }
+ ]
+ }
+ ]
+}