From 698fb766ab97734f0e6b72405a333bec657a47a4 Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Wed, 18 Jan 2023 13:24:23 +0000 Subject: [CPS] Create basic_cps test Create test to check if creating basic cps resources (dataspace, schema-set, anchor) works and it's possible to create a node on an anchor. Issue-ID: INT-2194 Signed-off-by: Michal Jagiello Change-Id: I86c5a80da65b90e2f1a228fcc7fc46a54bee92bc --- src/onaptests/configuration/basic_cps_settings.py | 46 +++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/onaptests/configuration/basic_cps_settings.py (limited to 'src/onaptests/configuration/basic_cps_settings.py') diff --git a/src/onaptests/configuration/basic_cps_settings.py b/src/onaptests/configuration/basic_cps_settings.py new file mode 100644 index 0000000..bea9646 --- /dev/null +++ b/src/onaptests/configuration/basic_cps_settings.py @@ -0,0 +1,46 @@ +from .settings import * + +import json +from pathlib import Path + +from onaptests.utils.resources import get_resource_location + +CLEANUP_FLAG = True + +ANCHOR_DATA = json.dumps({ + "bookstore": { + "bookstore-name": "Chapters", + "categories": [ + { + "code": 1, + "name": "SciFi", + "books": [ + { + "title": "2001: A Space Odyssey", + "price": 5 + }, + { + "title": "Dune", + "price": 5 + } + ] + }, + { + "code": 2, + "name": "Kids", + "books": [ + { + "title": "Matilda" + } + ] + } + ] + } + }) +ANCHOR_NAME = "basic-cps-test-anchor" +DATASPACE_NAME = "basic-cps-test-dataspace" +SCHEMA_SET_NAME = "basic-cps-test-schema-set" +SCHEMA_SET_FILE = Path(get_resource_location("templates/artifacts/cps/bookstore.yang")) + +SERVICE_NAME = "Basic CPS test" +SERVICE_COMPONENTS = "CPS" -- cgit 1.2.3-korg