aboutsummaryrefslogtreecommitdiffstats
path: root/tests/uiTests/test_admin_dropdown.py
blob: 25621f4a91aa1b2c7f7104e2b5f24402ac283006 (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
 
# ============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.
from django.conf import settings

from iceci.decorator.exception_decor import exception
from services.constants import Constants
from services.logging_service import LoggingServiceFactory
from services.session import session
from services.types import API, DB, Frontend
from tests.uiTests.test_ui_base import TestUiBase

logger = LoggingServiceFactory.get_logger()


class TestAdminDropdown(TestUiBase):
    user_content = None

    @classmethod
    def setUpClass(cls):
        super(TestAdminDropdown, cls).setUpClass()

        cls.user_content = API.VirtualFunction.create_engagement(
            wait_for_gitlab=False)

    @exception()
    def test_archive_engagement(self):
        Frontend.User.login(
            Constants.Users.Admin.EMAIL, Constants.Default.Password.TEXT)
        # Creating new engagement because we will archive it
        user_content = API.Bridge.create_engagement()
        API.VirtualFunction.set_eng_stage(
            user_content, Constants.EngagementStages.ACTIVE)
        # Verify users were added to git (only after git finishes its work on
        # the engagement we are able to archive the engagement)
        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 engagement lead user (%s) in GitLab." % user_content['email'])
        Frontend.Dashboard.statuses_search_vf(
            user_content['engagement_manual_id'], user_content['vfName'])
        Frontend.Overview.click_on_archeive_engagement_from_dropdown()
        Frontend.Overview.archive_engagement_modal(
            user_content['engagement_manual_id'], user_content['vfName'])

    @exception()
    def test_change_reviewer(self):
        try:
            Frontend.User.login(
                Constants.Users.Admin.EMAIL, Constants.Default.Password.TEXT)
            user_content = API.VirtualFunction.create_engagement(
                wait_for_gitlab=False)
            other_user = DB.User.select_el_not_in_engagement(
                user_content['el_name'], user_content['pr_name'])
            Frontend.Dashboard.statuses_search_vf(
                user_content['engagement_manual_id'], user_content['vfName'])
            Frontend.Overview.click_on_change_reviewer_from_dropdown()
            Frontend.Overview.change_engagement_lead_modal(other_user)
        finally:
            DB.User.rollback_for_el_not_in_engagement()

    @exception()
    def test_change_peer_reviewer(self):
        try:
            Frontend.User.login(
                Constants.Users.Admin.EMAIL, Constants.Default.Password.TEXT)
            other_user = DB.User.select_el_not_in_engagement(
                self.user_content['el_name'], self.user_content['pr_name'])
            Frontend.Dashboard.statuses_search_vf(
                self.user_content['engagement_manual_id'], self.user_content['vfName'])
            Frontend.Overview.click_on_change_peer_reviewer_from_dropdown()
            Frontend.Overview.change_engagement_lead_modal(
                other_user, is_reviewer=False)
        finally:
            DB.User.rollback_for_el_not_in_engagement()

    @exception()
    def test_update_status(self):
        Frontend.User.login(
            Constants.Users.Admin.EMAIL, Constants.Default.Password.TEXT)
        Frontend.Dashboard.statuses_search_vf(
            self.user_content['engagement_manual_id'], self.user_content['vfName'])
        Frontend.Overview.click_on_update_status_from_dropdown()
        Frontend.Overview.fill_update_status_form_admin_dropdown()

    @exception()
    def test_update_status_via_EL(self):
        Frontend.User.login(
            self.user_content['el_email'], Constants.Default.Password.TEXT)
        Frontend.Dashboard.statuses_search_vf(
            self.user_content['engagement_manual_id'], self.user_content['vfName'])
        Frontend.Overview.click_on_update_status_from_dropdown()
        Frontend.Overview.fill_update_status_form_admin_dropdown()

    @exception()
    def test_update_status_via_peer_reviewer(self):
        user_content = API.VirtualFunction.create_engagement(
            wait_for_gitlab=False)
        Frontend.User.login(
            user_content['pr_email'], Constants.Default.Password.TEXT)
        Frontend.Dashboard.statuses_search_vf(
            user_content['engagement_manual_id'], user_content['vfName'])
        Frontend.Overview.click_on_update_status_from_dropdown()
        Frontend.Overview.fill_update_status_form_admin_dropdown()

    @exception()
    def test_update_status_via_other_el(self):
        try:
            Frontend.User.login(
                Constants.Users.Admin.EMAIL, Constants.Default.Password.TEXT)
            other_el = DB.User.select_el_not_in_engagement(
                self.user_content['el_name'], self.user_content['pr_name'])
            other_el_email = DB.User.get_email_by_full_name(other_el)
            Frontend.Dashboard.statuses_search_vf(
                self.user_content['engagement_manual_id'], self.user_content['vfName'])
            engName = self.user_content[
                'engagement_manual_id'] + ": " + self.user_content['vfName']
            vf_left_nav_id = "clickable-" + engName
            Frontend.User.open_invite_team_member_form(vf_left_nav_id)
            Frontend.User.invite_single_user_to_team(other_el_email)
            Frontend.General.re_open(Constants.Default.LoginURL.TEXT)
            Frontend.Overview.invite_and_reopen_link(
                self.user_content, other_el_email)
            Frontend.User.login(other_el_email, Constants.Default.Password.TEXT,
                                Constants.Dashboard.Default.DASHBOARD_ID)
            Frontend.Overview.click_on_update_status_from_dropdown()
            Frontend.Overview.fill_update_status_form_admin_dropdown()
        finally:
            DB.User.rollback_for_el_not_in_engagement()

    @exception()
    def test_remove_standard_users_after_archive_engagement(self):
        Frontend.User.login(
            Constants.Users.Admin.EMAIL, Constants.Default.Password.TEXT)
        # Creating new engagement because we will archive it
        user_content = API.Bridge.create_engagement()
        API.VirtualFunction.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 settings.DATABASE_TYPE != 'local':
            git_user = API.GitLab.get_git_user(user_content['email'])
            git_user_id = str(git_user['id'])
            Frontend.Dashboard.statuses_search_vf(
                user_content['engagement_manual_id'], user_content['vfName'])
            Frontend.Overview.click_on_archeive_engagement_from_dropdown()
            Frontend.Overview.archive_engagement_modal(
                user_content['engagement_manual_id'], user_content['vfName'])
            API.GitLab.negative_validate_git_project_member(
                path_with_namespace, user_content['email'], git_user_id)