Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

# ============LICENSE_START========================================== 

# =================================================================== 

# Copyright (c) 2018-2020 AT&T 

# 

# Licensed under the Apache License, Version 2.0 (the "License"); 

# you may not use this file except in compliance with the License. 

# You may obtain a copy of the License at 

# 

#         http://www.apache.org/licenses/LICENSE-2.0 

# 

# Unless required by applicable law or agreed to in writing, software 

# distributed under the License is distributed on an "AS IS" BASIS, 

# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 

# See the License for the specific language governing permissions and 

# limitations under the License. 

# ============LICENSE_END============================================ 

 

 

from os import path 

import unittest 

import mock 

import plugin.tasks 

 

from cloudify.test_utils import workflow_test 

from cloudify.mocks import MockNodeInstanceContext 

from cloudify.mocks import MockCloudifyContext 

from cloudify.state import current_ctx 

from cloudify import ctx 

 

 

class TestPlugin(unittest.TestCase): 

 

    @workflow_test(path.join('blueprint', 'blueprint.yaml'), 

                   resources_to_copy=[(path.join('blueprint', 'plugin', 

                                                 'test_plugin.yaml'), 

                                       'plugin')]) 

    @mock.patch('plugin.tasks.os.remove') 

    @mock.patch('plugin.tasks.execute_command') 

    def test_stop(self, cfy_local, mock_execute_command, mock_os_remove): 

        # execute install workflow 

        """ 

 

        :param cfy_local: 

        """ 

        with mock.patch('plugin.tasks.shutil.rmtree'): 

            cfy_local.execute('uninstall', task_retries=0) 

 

        # extract single node instance 

        instance = cfy_local.storage.get_node_instances()[0] 

 

        mock_execute_command.assert_called_with('helm delete --purge onap-test_node --host 1.1.1.1:8888 ') 

 

    @workflow_test(path.join('blueprint', 'blueprint.yaml'), 

                   resources_to_copy=[(path.join('blueprint', 'plugin', 

                                                 'test_plugin.yaml'), 

                                       'plugin')]) 

    @mock.patch('plugin.tasks.execute_command') 

    def test_start(self, cfy_local, mock_execute_command): 

        # execute install workflow 

        """ 

 

        :param cfy_local: 

        """ 

        with mock.patch('plugin.tasks.config'): 

            with mock.patch('plugin.tasks.get_current_helm_value'): 

                with mock.patch('plugin.tasks.get_helm_history'): 

                    cfy_local.execute('install', task_retries=0) 

 

        # extract single node instance 

        instance = cfy_local.storage.get_node_instances()[0] 

 

        mock_execute_command.assert_called_with('helm install local/test_node-2.0.0.tgz --name onap-test_node --namespace onap --host 1.1.1.1:8888 ') 

 

    @workflow_test(path.join('blueprint', 'blueprint.yaml'), 

                   resources_to_copy=[(path.join('blueprint', 'plugin', 

                                                 'test_plugin.yaml'), 

                                       'plugin')]) 

    @mock.patch('plugin.tasks.execute_command') 

    def test_config(self, cfy_local, mock_execute_command): 

        # execute install workflow 

        """ 

 

        :param cfy_local: 

        """ 

        with mock.patch('plugin.tasks.start'): 

            cfy_local.execute('install', task_retries=0) 

 

        # extract single node instance 

        instance = cfy_local.storage.get_node_instances()[0] 

 

        mock_execute_command.assert_called_with('helm init --client-only --stable-repo-url http://0.0.0.0/stable') 

 

    @workflow_test(path.join('blueprint', 'blueprint.yaml'), 

                   resources_to_copy=[(path.join('blueprint', 'plugin', 

                                                 'test_plugin.yaml'), 

                                       'plugin')]) 

    def test_rollback(self, cfy_local): 

        # execute install workflow 

        """ 

 

        :param cfy_local: 

        """ 

        node_instance_id = 'node_instance_id' 

        revision = 1 

        try: 

            cfy_local.execute('rollback', task_retries=0, 

                                     parameters={'node_instance_id': node_instance_id, 'revision': revision}) 

            self.fail('Expected exception due to operation not exist') 

        except Exception as e: 

            self.assertTrue('operation not available') 

 

    @workflow_test(path.join('blueprint', 'blueprint.yaml'), 

                   resources_to_copy=[(path.join('blueprint', 'plugin', 

                                                 'test_plugin.yaml'), 

                                       'plugin')]) 

    def test_upgrade(self, cfy_local): 

        # execute install workflow 

        """ 

 

        :param cfy_local: 

        """ 

        node_instance_id = 'node_instance_id' 

        config_json = '' 

        config_url = 'http://test:test@11.22.33.44:80/stable' 

        config_format = 'json' 

        chartVersion = '2.0.0' 

        chartRepo = 'repo' 

        repo_user = '' 

        repo_user_passwd = '' 

        try: 

            cfy_local.execute('upgrade', task_retries=0, 

                                     parameters={'node_instance_id': node_instance_id, 'config': config_json, 

                                                    'config_url': config_url, 'config_format': config_format, 

                                                    'chart_version': chartVersion, 'chart_repo_url': chartRepo, 

                                                    'repo_user': repo_user, 'repo_user_password': repo_user_passwd}) 

            self.fail('Expected exception due to operation not exist') 

        except Exception as e: 

            self.assertTrue('operation not available') 

 

    @mock.patch('plugin.tasks.execute_command') 

    def test_op_rollback(self, mock_execute_command): 

        # test operation rollback 

        """ 

 

        :rollback operation test: 

        """ 

        props = { 

            'component_name': 'test_node', 

            'namespace': 'onap', 

            'tiller_port': '8888', 

            'tiller_ip': '1.1.1.1', 

            'tls_enable': 'false' 

        } 

        args = {'revision': '1'} 

        mock_ctx = MockCloudifyContext(node_id='test_node_id', node_name='test_node_name', 

                                         properties=props) 

        try: 

            current_ctx.set(mock_ctx) 

            with mock.patch('plugin.tasks.get_current_helm_value'): 

                with mock.patch('plugin.tasks.get_helm_history'): 

                    plugin.tasks.rollback(**args) 

        finally: 

            current_ctx.clear() 

 

    @mock.patch('plugin.tasks.execute_command') 

    def test_op_upgrade(self, mock_execute_command): 

        # test operation upgrade 

        """ 

 

        :upgrade operation test: 

        """ 

        props = { 

            'component_name': 'test_node', 

            'namespace': 'onap', 

            'tiller_port': '8888', 

            'tiller_ip': '1.1.1.1', 

            'tls_enable': 'false', 

            'config_dir': '/tmp' 

        } 

        args = {'revision': '1', 'config': '', 'chart_repo': 'repo', 'chart_version': '2', 

                     'config_set': 'config_set', 'config_json': '', 'config_url': '', 

                     'config_format': 'format', 'repo_user': '', 'repo_user_passwd': ''} 

        mock_ctx = MockCloudifyContext(node_id='test_node_id', node_name='test_node_name', 

                                         properties=props) 

        try: 

            current_ctx.set(mock_ctx) 

            with mock.patch('plugin.tasks.get_current_helm_value'): 

                with mock.patch('plugin.tasks.get_helm_history'): 

                    with mock.patch('plugin.tasks.gen_config_str'): 

                        plugin.tasks.upgrade(**args) 

        finally: 

            current_ctx.clear()