0d84038968c5a3a1572fbb04405fde32a132f7d0
[dcaegen2/platform.git] / adapter / acumos / tests / test_docker.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
20 from aoconversion import docker_gen
21
22 TEST_META = get_json_fixture("models/example-model/metadata.json")
23
24
25 def test_generate_dockerfile():
26     assert (
27         docker_gen._generate_dockerfile(TEST_META, "example-model")
28         == """
29     FROM python:3.6.8
30
31     ENV MODELNAME example-model
32     RUN mkdir /app
33     WORKDIR /app
34
35     ADD ./example-model /app/example-model
36     ADD ./requirements.txt /app
37
38     RUN pip install -r /app/requirements.txt && \
39         pip install acumos_dcae_model_runner
40
41     ENV DCAEPORT=10000
42     EXPOSE $DCAEPORT
43
44     ENTRYPOINT ["acumos_dcae_model_runner"]
45     CMD ["/app/example-model"]
46     """
47     )