Added PAN9

This commit is contained in:
cesar991 2016-07-14 16:42:10 +02:00
parent a4247adee6
commit b675be3be3
1 changed files with 65 additions and 0 deletions

65
tests/console/PAN9.py Normal file
View File

@ -0,0 +1,65 @@
# -*- coding: utf-8 -*-
from include.common_classes_60 import PandoraWebDriverTestCase
from include.common_functions_60 import login, click_menu_element, detect_and_pass_all_wizards, logout
from include.agent_functions import create_agent, search_agent, create_agent_group
from include.user_functions import create_user, create_user_profile
from include.module_functions import create_network_server_module
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException
import unittest, time, re
class PAN9(PandoraWebDriverTestCase):
test_name = u'PAN_9'
test_description = u'ACL Propagation test: Creates one group "A" with ACL propagation, then a group "B" son of "A" with no ACL propagation, and finally group "C". The test asserts if a user with privileges to "A" can see the agent of "B" but no agents of "C". '
tickets_associated = []
def test_pan9(self):
driver = self.driver
login(driver)
detect_and_pass_all_wizards(driver)
create_agent_group(driver,"PAN9_A",propagate_acl=True,description="Group A, with propagate ACL, son of ALL")
create_agent_group(driver,"PAN9_B",parent_group="PAN9_A",description="Group B, son of A")
create_agent_group(driver,"PAN9_C",parent_group="PAN9_B",description="Group C, son of B")
create_agent(driver,"PAN9_agent_B",description="Agent in group B",group="PAN9_B")
create_agent(driver,"PAN9_agent_C",description="Agent in group C",group="PAN9_C")
l=[("Chief Operator","PAN9_A",[])]
create_user(driver,"PAN9_user","pandora",profile_list=l)
logout(driver,self.base_url)
login(driver,user="PAN9_user")
detect_and_pass_all_wizards(driver)
search_agent(driver,"PAN9_agent_B",go_to_agent=False)
time.sleep(6)
try:
driver.find_element_by_xpath('//td[contains(.,"PAN9_agent_B")]')
self.assertEqual(True,u"PAN9_agent_B" in driver.page_source)
except AssertionError as e:
self.verificationErrors.append(str(e))
search_agent(driver,"PAN9_agent",go_to_agent=False)
time.sleep(6)
try:
self.assertEqual(False,u"PAN9_agent_C" in driver.page_source)
except AssertionError as e:
self.verificationErrors.append(str(e))
if __name__ == "__main__":
unittest.main()