summaryrefslogtreecommitdiffstats
path: root/django/engagementmanager/tests/test_pull_notifications.py
blob: 1c22437bfe68c45384c80d39d229b1d8d0283881 (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
#  
# ============LICENSE_START========================================== 
# org.onap.vvp/engagementmgr
# ===================================================================
# 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 engagementmanager.tests.test_base_entity import TestBaseEntity
from engagementmanager.apps import bus_service
from engagementmanager.bus.messages.activity_event_message import ActivityEventMessage
from engagementmanager.models import Vendor
from engagementmanager.utils.constants import Constants, ActivityType
from engagementmanager.utils.activities_data import ActivityData, UserJoinedEngagementActivityData
from engagementmanager.service.logging_service import LoggingServiceFactory

logger = LoggingServiceFactory.get_logger()


class NotificationsTestCase(TestBaseEntity):

    def childSetup(self):
        self.createVendors([Constants.service_provider_company_name, 'Other'])

        self.createDefaultRoles()
        # Create a user with role el
        vendor = Vendor.objects.get(name=Constants.service_provider_company_name)
        self.peer_reviewer = self.creator.createUser(Vendor.objects.get(
            name=Constants.service_provider_company_name), self.randomGenerator("main-vendor-email"),
            '55501000199', 'peer-reviewer user', self.el, True)
        self.el_user = self.creator.createUser(vendor,
                                               self.randomGenerator("main-vendor-email"),
                                               self.randomGenerator("randomNumber"),
                                               self.randomGenerator("randomString"), self.el, True)
        print('-----------------------------------------------------')
        print('Created User:')
        print('UUID: ' + str(self.el_user.uuid))
        print('Full Name: ' + self.el_user.full_name)
        print('-----------------------------------------------------')

        # Create a user with role standard_user
        vendor = Vendor.objects.get(name='Other')
        self.user = self.creator.createUser(vendor, self.randomGenerator("email"), self.randomGenerator(
            "randomNumber"), self.randomGenerator("randomString"), self.standard_user, True)
        print('-----------------------------------------------------')
        print('Created User:')
        print('UUID: ' + str(self.user.uuid))
        print('Full Name: ' + self.user.full_name)
        print('-----------------------------------------------------')

        # Create an Engagement with team
        self.engagement = self.creator.createEngagement(self.randomGenerator(
            "randomString"), self.randomGenerator("randomString"), None)
        self.engagement.engagement_team.add(self.user, self.el_user)
        print('-----------------------------------------------------')
        print('Created Engagement:')
        print('UUID: ' + str(self.engagement.uuid))
        print('-----------------------------------------------------')
        self.engagement.reviewer = self.el_user
        self.engagement.peer_reviewer = self.peer_reviewer
        # Create a VF
        self.deploymentTarget = self.creator.createDeploymentTarget(
            self.randomGenerator("randomString"), self.randomGenerator("randomString"))
        self.vf = self.creator.createVF(self.randomGenerator("randomString"),
                                        self.engagement, self.deploymentTarget, False, vendor)

        print('-----------------------------------------------------')
        print('Created VF:')
        print('UUID: ' + str(vendor.uuid))
        print('-----------------------------------------------------')

        self.token = self.loginAndCreateSessionToken(self.user)

    def testPullNotifications(self):

        urlStr = self.urlPrefix + 'notifications/'

        logger.debug("Starting pull notification test")
        logger.debug("Creating a random new user")
        vendor = Vendor.objects.get(name='Other')
        randomUser = self.creator.createUser(vendor, self.randomGenerator("email"), self.randomGenerator(
            "randomNumber"), self.randomGenerator("randomString"), self.standard_user, True)
        self.engagement.engagement_team.add(randomUser)
        self.engagement.save()

        logger.debug(
            "created a new user & added them to the engagement team, going to create the activity and consider it as a notification")
        usersList = []
        usersList.append(randomUser)
        activity_data = UserJoinedEngagementActivityData(
            self.vf, usersList, self.engagement)
        bus_service.send_message(ActivityEventMessage(activity_data))

        response = self.c.get(urlStr + str(randomUser.uuid) +
                              "/0/1", **{'HTTP_AUTHORIZATION': "token " + self.token})
        content = response.content
        status = response.status_code
        logger.debug("Got response : " + str(status))
        logger.debug("Got response : " + str(content))
        if (status != 200):
            logger.error("Got response : " + str(status) +
                         " , wrong http response returned ")
            self.assertEqual(response.status_code, 200)
        logger.debug("Ended pullNotifications test ")