4771a1cae128ac10a41178689ebfb04bf7011196
[dcaegen2/platform.git] / adapter / acumos / tests / test_spec.py
1 # ============LICENSE_START====================================================
2 # org.onap.dcae
3 # =============================================================================
4 # Copyright (c) 2019-2020 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, utils
21
22 TEST_META = get_json_fixture("models/example-model/metadata.json")
23
24
25 def test_generate_spec(mock_schemas):
26     """
27     Test generating data formats from the protobuf
28     """
29     test_proto_path = get_fixture_path("models/example-model/model.proto")
30     data_formats = dataformat_gen._generate_dcae_data_formats(test_proto_path, TEST_META, utils.dataformat_schema.get(), utils.schema_schema.get())
31     assert spec_gen._generate_spec(
32         "example-model", TEST_META, utils.component_schema.get(), data_formats, "nexus01.fake.com:18443/example-model:latest"
33     ) == {
34         "self": {
35             "version": "1.0.0",
36             "name": "example-model",
37             "description": "Automatically generated from Acumos model",
38             "component_type": "docker",
39         },
40         "services": {"calls": [], "provides": []},
41         "streams": {
42             "subscribes": [
43                 {"config_key": "add_subscriber", "format": "NumbersIn", "version": "1.0.0", "type": "message_router"}
44             ],
45             "publishes": [
46                 {"config_key": "add_publisher", "format": "NumberOut", "version": "1.0.0", "type": "message_router"}
47             ],
48         },
49         "parameters": [],
50         "auxilary": {"healthcheck": {"type": "http", "endpoint": "/healthcheck"}},
51         "artifacts": [{"type": "docker image", "uri": "nexus01.fake.com:18443/example-model:latest"}],
52     }