7f6ec4155ab8ffaab4d405195877603c067c4296
[dcaegen2/platform.git] / adapter / acumos / tests / test_spec.py
1 # ============LICENSE_START====================================================
2 # org.onap.dcae
3 # =============================================================================
4 # Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
5 # =============================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END======================================================
18
19 from testing_helpers import get_json_fixture, get_fixture_path
20 from aoconversion import dataformat_gen, spec_gen
21
22 TEST_META = get_json_fixture("models/example-model/metadata.json")
23 DRAFT_4_SCHEMA = get_json_fixture("jsdraft4schema.json")
24 DF_101 = get_json_fixture("dataformat_101.json")
25 CS_SCHEMA = get_json_fixture("dcae-cli-v2_component-spec-schema.json")
26
27
28 def test_generate_spec():
29     """
30     Test generating data formats from the protobuf
31     """
32     test_proto_path = get_fixture_path("models/example-model/model.proto")
33     data_formats = dataformat_gen._generate_dcae_data_formats(test_proto_path, TEST_META, DF_101, DRAFT_4_SCHEMA)
34     assert spec_gen._generate_spec(
35         "example-model", TEST_META, CS_SCHEMA, data_formats, "nexus01.fake.com:18443/example-model:latest"
36     ) == {
37         "self": {
38             "version": "1.0.0",
39             "name": "example-model",
40             "description": "Automatically generated from Acumos model",
41             "component_type": "docker",
42         },
43         "services": {"calls": [], "provides": []},
44         "streams": {
45             "subscribes": [
46                 {"config_key": "add_subscriber", "format": "NumbersIn", "version": "1.0.0", "type": "message_router"}
47             ],
48             "publishes": [
49                 {"config_key": "add_publisher", "format": "NumberOut", "version": "1.0.0", "type": "message_router"}
50             ],
51         },
52         "parameters": [],
53         "auxilary": {"healthcheck": {"type": "http", "endpoint": "/healthcheck"}},
54         "artifacts": [{"type": "docker image", "uri": "nexus01.fake.com:18443/example-model:latest"}],
55     }