aboutsummaryrefslogtreecommitdiffstats
path: root/tests/signalTests/test_git_signal.py
blob: 63290d23c3dc089e393f4c45d5869065d874956e (plain)
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# ============LICENSE_START==========================================
# org.onap.vvp/test-engine
# ===================================================================
# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
# ===================================================================
#
# Unless otherwise specified, all software contained herein is licensed
# under the Apache License, Version 2.0 (the “License”);
# you may not use this software 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.
#
#
#
# Unless otherwise specified, all documentation contained herein is licensed
# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
# you may not use this documentation except in compliance with the License.
# You may obtain a copy of the License at
#
#             https://creativecommons.org/licenses/by/4.0/
#
# Unless required by applicable law or agreed to in writing, documentation
# 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============================================
#
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
'''
Created on 16 Nov 2016

'''
from django.conf import settings
from iceci.decorator.exception_decor import exception
from services.api.api_virtual_function import APIVirtualFunction
from services.constants import Constants, ServiceProvider
from services.logging_service import LoggingServiceFactory
from services.types import API
from tests.signalTests.test_signal_base import TestSignalBase
from services.helper import Helper


logger = LoggingServiceFactory.get_logger()


class TestGitSignal(TestSignalBase):

    @exception()
    def test_create_eng(self):

        if settings.DATABASE_TYPE == 'local':
            logger.debug("Local environment, skipping test...")
        else:
            user_content = API.VirtualFunction.create_engagement()
            path_with_namespace = user_content[
                'engagement_manual_id'] + "%2F" + user_content['vfName']
            API.GitLab.get_git_project(path_with_namespace)
            if not API.GitLab.validate_git_project_members(path_with_namespace, user_content['el_email']):
                logger.error("Couldn't find user in GitLab response.")
                raise
            logger.debug(
                "Project was created successfully on GitLab. ELs included")
            try:
                job_name = user_content[
                    'vfName'] + "_" + user_content['engagement_manual_id']
                API.Jenkins.get_jenkins_job(job_name)
            except Exception as e:
                logger.error(
                    "_-_-_-_-_- Unexpected error in test_create_eng: " + str(e))
                raise Exception("Job wasnt created on APIJenkins." + str(e))

    @exception()
    def test_update_account(self):

        if settings.DATABASE_TYPE == 'local':
            logger.debug("Local environment, skipping test...")
        else:
            user_content = API.VirtualFunction.create_engagement()
            sshKey = API.User.update_account(user_content)
            git_user = API.GitLab.get_git_user(user_content['email'])
            git_user_pub_key = API.GitLab.get_git_user_ssh_key(git_user['id'])
            if sshKey != git_user_pub_key:
                logger.error(
                    "The SSH Key received does not equal to the one provided! The key from GitLab:\n" + git_user_pub_key)
                raise
            logger.debug(
                "SSH Key for user " + user_content['full_name'] + " added to GitLab.")

    @exception()
    def test_set_ssh(self):

        if settings.DATABASE_TYPE == 'local':
            logger.debug("Local environment, skipping test...")
        else:
            user_content = API.VirtualFunction.create_engagement()
            sshKey = API.User.set_ssh(user_content)
            git_user = API.GitLab.get_git_user(user_content['email'])
            git_user_pub_key = API.GitLab.get_git_user_ssh_key(git_user['id'])
            if sshKey != git_user_pub_key:
                logger.error(
                    "The SSH Key received does not equal to the one provided! The key from GitLab:\n" + git_user_pub_key)
                raise
            logger.debug(
                "SSH Key for user " + user_content['full_name'] + " added to GitLab.")

    @exception()
    def test_invite_member(self):
        if settings.DATABASE_TYPE == 'local':
            logger.debug("Local environment, skipping test...")
        else:
            user_content = API.VirtualFunction.create_engagement()
            invited_email, invite_token, invite_url = API.VirtualFunction.invite_team_member(
                user_content)
            second_user = API.User.signup_invited_user(
                user_content[
                    'vendor'], invited_email, invite_token, invite_url,
                user_content, activate=True)
            APIVirtualFunction.set_eng_stage(
                user_content, Constants.EngagementStages.ACTIVE)
            path_with_namespace = user_content[
                'engagement_manual_id'] + "%2F" + user_content['vfName']
            if not API.GitLab.validate_git_project_members(path_with_namespace, user_content['email']):
                raise Exception(
                    "Couldn't find the inviter user (%s) in GitLab." % user_content['email'])
            if not API.GitLab.validate_git_project_members(path_with_namespace, second_user['email']):
                raise Exception(
                    "Couldn't find the inviter user (%s) in GitLab." % second_user['email'])
            logger.debug(
                "Inviter and invited users were created successfully on GitLab!")

    @exception()
    def test_add_contact(self):
        if settings.DATABASE_TYPE == 'local':
            logger.debug("Local environment, skipping test...")
        else:
            user_content = API.VirtualFunction.create_engagement()
            APIVirtualFunction.set_eng_stage(
                user_content, Constants.EngagementStages.ACTIVE)
            path_with_namespace = user_content[
                'engagement_manual_id'] + "%2F" + user_content['vfName']
            API.GitLab.get_git_project(path_with_namespace)
            if not API.GitLab.validate_git_project_members(path_with_namespace, user_content['email']):
                raise Exception(
                    "Couldn't find the inviter user (%s) in GitLab." % user_content['email'])
            second_user_email, invite_token, invite_url = API.VirtualFunction.add_contact(
                user_content)
            second_user = API.User.signup_invited_user(ServiceProvider.MainServiceProvider, second_user_email, invite_token, invite_url,
                                                       user_content, "true", True)
            if API.GitLab.validate_git_project_members(path_with_namespace, second_user_email):
                logger.debug(
                    "Invited contact user " + second_user['full_name'] + " found in GitLab.")
            else:
                raise Exception("Couldn't find the invited user in GitLab.")
            logger.debug(
                "Inviter and invited users were created successfully on GitLab!")

    @exception()
    def test_join_of_staff_users_to_new_gitlab_repo(self):
        if settings.DATABASE_TYPE == 'local':
            logger.debug("Local environment, skipping test...")
        else:
            user_content = API.VirtualFunction.create_engagement()
            path_with_namespace = user_content[
                'engagement_manual_id'] + "%2F" + user_content['vfName']
            eng_team_users_emails = [
                user_content['el_email'], user_content['pr_email'], Constants.Users.Admin.EMAIL]
            API.GitLab.are_all_list_users_registered_as_project_members(
                eng_team_users_emails, path_with_namespace)
            logger.debug("Staff users were added successfully to GitLab repo!")

    @exception()
    def test_join_of_stn_users_to_new_rep_after_active(self):
        if settings.DATABASE_TYPE == 'local':
            logger.debug("Local environment, skipping test...")
        else:
            user_content = API.VirtualFunction.create_engagement()
            path_with_namespace = user_content[
                'engagement_manual_id'] + "%2F" + user_content['vfName']
            # invite 2 new users in order to join standard users in the eng
            # team
            invited_email_address, invite_token, invite_url = API.VirtualFunction.invite_team_member(
                user_content)
            invited_email_address = API.User.signup_invited_user(user_content['vendor'], invited_email_address,
                                                                 invite_token, invite_url, user_content)

            second_invited_email, second_invite_token, second_invite_url = API.VirtualFunction.invite_team_member(
                user_content)
            second_invited_email = API.User.signup_invited_user(user_content['vendor'], second_invited_email,
                                                                second_invite_token, second_invite_url, user_content)

            API.VirtualFunction.set_eng_stage(
                user_content, Constants.EngagementStages.ACTIVE)
            eng_team_users_emails = [invited_email_address['email'], second_invited_email['email'],
                                     user_content['email'], user_content[
                                         'el_email'], user_content['pr_email'],
                                     Constants.Users.Admin.EMAIL]

            API.GitLab.are_all_list_users_registered_as_project_members(
                eng_team_users_emails, path_with_namespace)
            logger.debug(
                "Staff, Inviter and invited users were added successfully to GitLab repo!")

    @exception()
    def test_rem_users_from_repo_after_active_and_validated(self):
        if settings.DATABASE_TYPE == 'local':
            logger.debug("Local environment, skipping test...")
        else:
            user_content = API.VirtualFunction.create_engagement()
            # invite 2 new users in order to join standard users in the eng
            # team
            invited_email_address, invite_token, invite_url = API.VirtualFunction.invite_team_member(
                user_content)
            invited_email_address = API.User.signup_invited_user(
                user_content['vendor'], invited_email_address, invite_token, invite_url, user_content)

            second_invited_email, second_invite_token, second_invite_url = API.VirtualFunction.invite_team_member(
                user_content)
            second_invited_email = API.User.signup_invited_user(
                user_content['vendor'], second_invited_email, second_invite_token, second_invite_url, user_content)

            # change eng stage in order to include all standard users in the
            # eng git lab repo
            API.VirtualFunction.set_eng_stage(
                user_content, Constants.EngagementStages.ACTIVE)
            API.VirtualFunction.set_eng_stage(
                user_content, Constants.EngagementStages.VALIDATED)
            path_with_namespace = user_content[
                'engagement_manual_id'] + "%2F" + user_content['vfName']

            # check that all standard users, staff users and admin are in the
            # git lab repo
            API.GitLab.get_git_project(path_with_namespace)
            eng_team_users_emails = [user_content['el_email'],
                                     user_content['pr_email'], Constants.Users.Admin.EMAIL]
            should_not_be_in_repo_users_list = [
                invited_email_address['email'], user_content['email']]
            for email in eng_team_users_emails:
                if not API.GitLab.validate_git_project_members(path_with_namespace, email):
                    if email not in should_not_be_in_repo_users_list:
                        raise Exception(
                            "Couldn't find the invited users: " + email + " in GitLab.")

                logger.debug(
                    "Invited user: " + email + " and" + second_invited_email['full_name'] + " found in GitLab.")
            logger.debug(
                "Inviter and invited users were created successfully on GitLab!")

    @exception()
    def test_rem_users_from_repo_after_completed(self):
        if settings.DATABASE_TYPE == 'local':
            logger.debug("Local environment, skipping test...")
        else:
            user_content = API.VirtualFunction.create_engagement()
            # invite 2 new users in order to join standard users in the eng
            # team
            invited_email, invite_token, invite_url = API.VirtualFunction.invite_team_member(
                user_content)
            invited_email = API.User.signup_invited_user(
                user_content['vendor'], invited_email, invite_token, invite_url, user_content)

            second_invited_email, second_invite_token, second_invite_url = API.VirtualFunction.invite_team_member(
                user_content)
            second_invited_email = API.User.signup_invited_user(
                user_content['vendor'], second_invited_email, second_invite_token, second_invite_url, user_content)

            # change eng stage in order to include all standard users in the
            # eng git lab repo
            API.VirtualFunction.set_eng_stage(
                user_content, Constants.EngagementStages.ACTIVE)
            API.VirtualFunction.set_eng_stage(
                user_content, Constants.EngagementStages.VALIDATED)
            API.VirtualFunction.set_eng_stage(
                user_content, Constants.EngagementStages.COMPLETED)
            path_with_namespace = user_content[
                'engagement_manual_id'] + "%2F" + user_content['vfName']

            # check that all standard users, staff users and admin are in the
            # git lab repo
            API.GitLab.get_git_project(path_with_namespace)
            eng_team_users_emails = [user_content['el_email'],
                                     user_content['pr_email'], Constants.Users.Admin.EMAIL]
            should_not_be_in_repo_users_list = [
                invited_email['email'], user_content['email']]
            for email in eng_team_users_emails:
                if not API.GitLab.validate_git_project_members(path_with_namespace, email):
                    if email not in should_not_be_in_repo_users_list:
                        raise Exception(
                            "Couldn't find the user: " + email + " in GitLab.")

                logger.debug(
                    "Invited user: " + email + " and" + second_invited_email['full_name'] + " found in GitLab.")
            logger.debug(
                "Inviter and invited users were created successfully on GitLab!")