From bd886d918ef2adbabd16c61fdd2e47984e21dfd7 Mon Sep 17 00:00:00 2001 From: Paul McGoldrick Date: Thu, 28 Sep 2017 10:03:40 -0700 Subject: initial seed code commit VVP-5 Change-Id: I6560c87ef48a6d0d1fe8197c7c6439c7e6ad653f Signed-off-by: Paul McGoldrick --- .../engagementmanager/tests/test_invite_members.py | 164 +++++++++++++++++++++ 1 file changed, 164 insertions(+) create mode 100755 django/engagementmanager/tests/test_invite_members.py (limited to 'django/engagementmanager/tests/test_invite_members.py') diff --git a/django/engagementmanager/tests/test_invite_members.py b/django/engagementmanager/tests/test_invite_members.py new file mode 100755 index 0000000..460eded --- /dev/null +++ b/django/engagementmanager/tests/test_invite_members.py @@ -0,0 +1,164 @@ +# +# ============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 +import json +from rest_framework.status import HTTP_200_OK, HTTP_400_BAD_REQUEST +from engagementmanager.models import Vendor, IceUserProfile +from engagementmanager.utils.constants import Constants + + +class TestInviteMembersTestCase(TestBaseEntity): + + def createEng(self, name): + # Create an Engagement with team + engagement = self.creator.createEngagement(name, 'Validation', None) + engagement.reviewer = self.reviewer + engagement.peer_reviewer = self.reviewer + engagement.save() + engagement.engagement_team.add(self.inviter, self.el_user) + self.engList.append(engagement) + print('-----------------------------------------------------') + print('Created Engagement:') + print('UUID: ' + str(engagement.uuid)) + print('-----------------------------------------------------') + + def childSetup(self): + + self.createVendors([Constants.service_provider_company_name, 'Other']) + + self.createDefaultRoles() + self.engList = [] + self.vfList = [] + + # Create a user with role el + self.el_user_email = self.randomGenerator("main-vendor-email") + self.el_user = self.creator.createUser(Vendor.objects.get( + name=Constants.service_provider_company_name), + self.el_user_email, '55501000199', 'el user', self.el, True) + self.inviter = self.creator.createUser(Vendor.objects.get( + name='Other'), self.randomGenerator("main-vendor-email"), + '55501000199', 'inviter user', self.standard_user, True) + self.reviewer = self.creator.createUser(Vendor.objects.get( + name='Other'), self.randomGenerator("main-vendor-email"), + '55501000199', 'reviewer user', self.standard_user, True) + + self.createEng('123456789') + self.createEng('abcdefghi') + + # Create a VF + self.deploymentTarget = self.creator.createDeploymentTarget( + self.randomGenerator("randomString"), self.randomGenerator("randomString")) + + for eng in self.engList: + vf = self.creator.createVF(self.randomGenerator("randomString"), eng, + self.deploymentTarget, False, Vendor.objects.get(name='Other')) + self.vfList.append(vf) + + self.urlStr = self.urlPrefix + "invite-team-members/" + self.data = dict() + self.data2 = dict() + self.token = self.loginAndCreateSessionToken(self.inviter) + + def initBody(self): + self.invitedData = [] + + self.data['email'] = self.randomGenerator("main-vendor-email") + self.data['eng_uuid'] = str(self.engList[0].uuid) + self.invitedData.append(self.data) + + self.data2['email'] = self.el_user_email + self.data2['eng_uuid'] = str(self.engList[0].uuid) + self.invitedData.append(self.data2) + + def inviteContact(self, expectedStatus=HTTP_200_OK): + self.invitedDataStr = json.dumps(self.invitedData, ensure_ascii=False) + response = self.c.post(self.urlStr, self.invitedDataStr, content_type='application/json', + **{'HTTP_AUTHORIZATION': "token " + self.token}) + print('Got response : ' + str(response.status_code), str(response.content)) + self.assertEqual(response.status_code, expectedStatus) + return response + + def createContactUser(self): + self.contact = self.creator.createUser(Vendor.objects.get( + name=Constants.service_provider_company_name), self.data['email'], self.data['phone_number'], self.data['full_name'], self.standard_user, True) + print('-----------------------------------------------------') + print('Created User:') + print('UUID: ' + str(self.contact.uuid)) + print('Full Name: ' + self.contact.full_name) + print('-----------------------------------------------------') + + ### TESTS ### + def testAddContactForNonExistingContact(self): + self.initBody() + self.inviteContact() + + def testThrotellingInviteSameEmailSameEng(self): + self.invitedData = [] + + self.data['email'] = self.el_user_email + self.data['eng_uuid'] = str(self.engList[0].uuid) + self.invitedData.append(self.data) + + self.data2['email'] = self.el_user_email + self.data2['eng_uuid'] = str(self.engList[0].uuid) + self.invitedData.append(self.data2) + + self.inviteContact(expectedStatus=HTTP_400_BAD_REQUEST) + + def testThrotellingInviteMoreThan5EmailsToSameEng(self): + self.invitedData = [] + + for i in range(0, 30): + data = dict() + data['email'] = self.randomGenerator("main-vendor-email") + data['eng_uuid'] = str(self.engList[0].uuid) + self.invitedData.append(data) + + self.inviteContact(expectedStatus=HTTP_400_BAD_REQUEST) + + def testMultipleInvitationsForSameUserDiffEng(self): + for i in range(0, 2): + data = dict() + data['email'] = self.el_user_email + data['eng_uuid'] = str(self.engList[i].uuid) + self.invitedData = [] + self.invitedData.append(data) + self.inviteContact(expectedStatus=HTTP_200_OK) + invitedUser = IceUserProfile.objects.get(email=data['email']) + self.assertTrue(invitedUser in self.engList[i].engagement_team.all()) -- cgit 1.2.3-korg