RIC-769: Committing individual files rather than tar archive
[ric-plt/appmgr.git] / xapp_orchestrater / dev / xapp_onboarder / tests / test_helm_controller.py
1 ################################################################################
2 #   Copyright (c) 2020 AT&T Intellectual Property.                             #
3 #                                                                              #
4 #   Licensed under the Apache License, Version 2.0 (the "License");            #
5 #   you may not use this file except in compliance with the License.           #
6 #   You may obtain a copy of the License at                                    #
7 #                                                                              #
8 #       http://www.apache.org/licenses/LICENSE-2.0                             #
9 #                                                                              #
10 #   Unless required by applicable law or agreed to in writing, software        #
11 #   distributed under the License is distributed on an "AS IS" BASIS,          #
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
13 #   See the License for the specific language governing permissions and        #
14 #   limitations under the License.                                             #
15 ################################################################################
16 import os
17 import shutil
18 from xapp_onboarder.helm_controller.xApp_builder import xApp, xAppError
19 from tests.constants import config_file, controls_schema_file
20 from xapp_onboarder.server import settings
21
22
23 def test_packaging_xapp(client):
24         chart_workspace_path = settings.CHART_WORKSPACE_PATH + '/test_xapp-1.0.0'
25         if os.path.exists(chart_workspace_path):
26                 shutil.rmtree(chart_workspace_path)
27
28         xapp = xApp(config_file, controls_schema_file)
29         xapp.package_chart()
30         assert os.path.isfile(chart_workspace_path + '/test_xapp-1.0.0.tgz'), 'xApp packaging error'
31
32