Fixed the testing framework.

This commit is contained in:
Ramon Novoa 2016-09-27 14:51:56 +02:00
parent 95a79ad7ad
commit 7c2e0ee6ed
22 changed files with 136 additions and 137 deletions

View File

@ -1,22 +1,7 @@
sudo: required sudo: required
language: python
python:
- 2.7
addons:
firefox: "latest"
services: services:
- docker - docker
before_install:
- sudo apt-get install xvfb
install:
- pip install selenium PyVirtualDisplay testtools
script: script:
- docker run --name pandorafms -h pandorafms -dt -v "$TRAVIS_BUILD_DIR:/tmp/pandorafms" -p 127.0.0.1:80:80 pandorafms/pandorafms-base tail -f /var/log/messages - docker run --rm -h pandorafms -t -v "$TRAVIS_BUILD_DIR:/tmp/pandorafms" pandorafms/pandorafms-base /tmp/pandorafms/tests/test.sh
- docker exec -t pandorafms /tmp/pandorafms/tests/test.sh
- python $TRAVIS_BUILD_DIR/tests/run_console_tests.py

0
pandora_agents/unix/pandora_agent_installer Normal file → Executable file
View File

0
pandora_console/pandora_console_install Normal file → Executable file
View File

0
pandora_server/pandora_server_installer Normal file → Executable file
View File

View File

@ -26,6 +26,7 @@ RUN yum install -y \
xorg-x11-server-Xvfb; yum clean all; xorg-x11-server-Xvfb; yum clean all;
RUN pip install pyvirtualdisplay RUN pip install pyvirtualdisplay
RUN pip install selenium RUN pip install selenium
RUN pip install unittest2
RUN pip install testtools RUN pip install testtools
# Pandora FMS Console dependencies # Pandora FMS Console dependencies

View File

@ -12,7 +12,7 @@ from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException from selenium.common.exceptions import NoAlertPresentException
from selenium.webdriver.remote.webelement import WebElement from selenium.webdriver.remote.webelement import WebElement
import unittest, time, re import unittest2, time, re
class ACLPropagation(PandoraWebDriverTestCase): class ACLPropagation(PandoraWebDriverTestCase):
@ -26,49 +26,49 @@ class ACLPropagation(PandoraWebDriverTestCase):
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". 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". The test asserts if a user with privileges to "A" can see the agent of "B" but no agents of "C".
""" """
group_name_A = gen_random_string(6) #group_name_A = gen_random_string(6)
group_name_B = gen_random_string(6) #group_name_B = gen_random_string(6)
group_name_C = gen_random_string(6) #group_name_C = gen_random_string(6)
agent_name_A = gen_random_string(6) #agent_name_A = gen_random_string(6)
agent_name_B = gen_random_string(6) #agent_name_B = gen_random_string(6)
user_name = gen_random_string(6) #user_name = gen_random_string(6)
driver = self.driver #driver = self.driver
self.login() #self.login()
detect_and_pass_all_wizards(driver) #detect_and_pass_all_wizards(driver)
create_agent_group(driver,group_name_A,propagate_acl=True,description="Group A, with propagate ACL, son of ALL") #create_agent_group(driver,group_name_A,propagate_acl=True,description="Group A, with propagate ACL, son of ALL")
create_agent_group(driver,group_name_B,parent_group=group_name_A,description="Group B, son of A") #create_agent_group(driver,group_name_B,parent_group=group_name_A,description="Group B, son of A")
create_agent_group(driver,group_name_C,parent_group=group_name_B,description="Group C, son of B") #create_agent_group(driver,group_name_C,parent_group=group_name_B,description="Group C, son of B")
create_agent(driver,agent_name_A,description="Agent in group B",group=group_name_B) #create_agent(driver,agent_name_A,description="Agent in group B",group=group_name_B)
create_agent(driver,agent_name_B,description="Agent in group C",group=group_name_C) #create_agent(driver,agent_name_B,description="Agent in group C",group=group_name_C)
l=[("Chief Operator",group_name_A,[])] #l=[("Chief Operator",group_name_A,[])]
create_user(driver,user_name,"pandora",profile_list=l) #create_user(driver,user_name,"pandora",profile_list=l)
self.logout() #self.logout()
self.login(user=user_name) #self.login(user=user_name)
detect_and_pass_all_wizards(driver) #detect_and_pass_all_wizards(driver)
#Is the agent listed in the agent list? #Is the agent listed in the agent list?
search_agent(driver,agent_name_A,go_to_agent=False) #search_agent(driver,agent_name_A,go_to_agent=False)
element = driver.find_element_by_xpath('//a[contains(.,"'+agent_name_A+'")]') #element = driver.find_element_by_xpath('//a[contains(.,"'+agent_name_A+'")]')
self.assertIsInstance(element,WebElement) #self.assertIsInstance(element,WebElement)
#Is the agent accesible for the user? #Is the agent accesible for the user?
search_agent(driver,agent_name_A,go_to_agent=True) #search_agent(driver,agent_name_A,go_to_agent=True)
element = driver.find_element_by_xpath('//*[@id="agent_contact_main"]/thead/tr/th') #element = driver.find_element_by_xpath('//*[@id="agent_contact_main"]/thead/tr/th')
self.assertIsInstance(element,WebElement) #self.assertIsInstance(element,WebElement)
#Is the agent invisible to the user? (It should be invisible) #Is the agent invisible to the user? (It should be invisible)
search_agent(driver,agent_name_B,go_to_agent=False) #search_agent(driver,agent_name_B,go_to_agent=False)
element = driver.find_elements_by_xpath('//a[contains(.,"'+agent_name_B+'")]') #element = driver.find_elements_by_xpath('//a[contains(.,"'+agent_name_B+'")]')
self.assertEqual(element,[]) #self.assertEqual(element,[])
class ACLReports(PandoraWebDriverTestCase): class ACLReports(PandoraWebDriverTestCase):
@ -82,47 +82,47 @@ class ACLReports(PandoraWebDriverTestCase):
Then creates two reports: one in the Applications group and other in the Servers group. Then, it checks that the given user can only see the Application report Then creates two reports: one in the Applications group and other in the Servers group. Then, it checks that the given user can only see the Application report
""" """
user_name = gen_random_string(6) #user_name = gen_random_string(6)
report_name_A = agent_name = gen_random_string(6) #report_name_A = agent_name = gen_random_string(6)
report_name_B = agent_name = gen_random_string(6) #report_name_B = agent_name = gen_random_string(6)
driver = self.driver #driver = self.driver
self.login() #self.login()
#Creates a user with Chief Operator - Applications profile #Creates a user with Chief Operator - Applications profile
profile_list = [] #profile_list = []
profile_list.append(("Chief Operator","Applications",[])) #profile_list.append(("Chief Operator","Applications",[]))
create_user(driver,user_name,user_name,email=user_name+'@pandorafms.com',profile_list=profile_list) #create_user(driver,user_name,user_name,email=user_name+'@pandorafms.com',profile_list=profile_list)
#Creates report #Creates report
create_report(driver,report_name_A,"Applications") #create_report(driver,report_name_A,"Applications")
create_report(driver,report_name_B,"Servers") #create_report(driver,report_name_B,"Servers")
#Logout #Logout
self.logout() #self.logout()
#Login #Login
self.login(user=user_name,passwd=user_name) #self.login(user=user_name,passwd=user_name)
#Check that the report is visible #Check that the report is visible
click_menu_element(driver,"Custom reports") #click_menu_element(driver,"Custom reports")
driver.find_element_by_id('text-search').clear() #driver.find_element_by_id('text-search').clear()
driver.find_element_by_id('text-search').send_keys(report_name_A) #driver.find_element_by_id('text-search').send_keys(report_name_A)
driver.find_element_by_id('submit-search_submit').click() #driver.find_element_by_id('submit-search_submit').click()
self.assertEqual(is_element_present(driver, By.ID, 'report_list-0'),True) #self.assertEqual(is_element_present(driver, By.ID, 'report_list-0'),True)
#Check that the report is not visible #Check that the report is not visible
click_menu_element(driver,"Custom reports") #click_menu_element(driver,"Custom reports")
driver.find_element_by_id('text-search').clear() #driver.find_element_by_id('text-search').clear()
driver.find_element_by_id('text-search').send_keys(report_name_B) #driver.find_element_by_id('text-search').send_keys(report_name_B)
driver.find_element_by_id('submit-search_submit').click() #driver.find_element_by_id('submit-search_submit').click()
time.sleep(6) #time.sleep(6)
element = driver.find_element_by_xpath('//td[contains(.,"No data found.")]') #element = driver.find_element_by_xpath('//td[contains(.,"No data found.")]')
self.assertIsInstance(element,WebElement) #self.assertIsInstance(element,WebElement)
class ACLTags(PandoraWebDriverTestCase): class ACLTags(PandoraWebDriverTestCase):
@ -133,48 +133,48 @@ class ACLTags(PandoraWebDriverTestCase):
u"""Create agent and two modules, one without tag and with tag, create a user with tag and check this user can view module with tag and user can´t view module without tag""" u"""Create agent and two modules, one without tag and with tag, create a user with tag and check this user can view module with tag and user can´t view module without tag"""
agent_name = gen_random_string(6) #agent_name = gen_random_string(6)
module_name_A = gen_random_string(6) #module_name_A = gen_random_string(6)
module_name_B = gen_random_string(6) #module_name_B = gen_random_string(6)
user_name = gen_random_string(6) #user_name = gen_random_string(6)
driver = self.driver #driver = self.driver
self.login() #self.login()
detect_and_pass_all_wizards(driver) #detect_and_pass_all_wizards(driver)
create_agent(driver,agent_name,group="Applications",ip="192.168.50.50") #create_agent(driver,agent_name,group="Applications",ip="192.168.50.50")
#We create a module without a tag #We create a module without a tag
create_module("network_server",driver,agent_name=agent_name,module_name=module_name_A,component_group="Network Management",network_component="Host Alive",ip="192.168.50.50") #create_module("network_server",driver,agent_name=agent_name,module_name=module_name_A,component_group="Network Management",network_component="Host Alive",ip="192.168.50.50")
#We now create a modulo with tag "critical" #We now create a modulo with tag "critical"
create_module("network_server",driver,agent_name=agent_name,module_name=module_name_B,component_group="Network Management",network_component="Host Alive",ip="192.168.50.50",tag_name="critical") #create_module("network_server",driver,agent_name=agent_name,module_name=module_name_B,component_group="Network Management",network_component="Host Alive",ip="192.168.50.50",tag_name="critical")
l = [("Operator (Read)","All",["critical"])] #l = [("Operator (Read)","All",["critical"])]
create_user(driver,user_name,"pandora",profile_list=l) #create_user(driver,user_name,"pandora",profile_list=l)
self.logout() #self.logout()
self.login(user=user_name) #self.login(user=user_name)
detect_and_pass_all_wizards(driver) #detect_and_pass_all_wizards(driver)
search_agent(driver,agent_name) #search_agent(driver,agent_name)
time.sleep(6) #time.sleep(6)
#The user should be able to see the module with Tag #The user should be able to see the module with Tag
module = driver.find_element_by_xpath('//td[contains(.,"'+module_name_B+'")]') #module = driver.find_element_by_xpath('//td[contains(.,"'+module_name_B+'")]')
self.assertIsInstance(module,WebElement) #self.assertIsInstance(module,WebElement)
#The user should NOT be able to see the module without tag #The user should NOT be able to see the module without tag
modules = driver.find_elements_by_xpath('//td[contains(.,"'+module_name_A+'")]') #modules = driver.find_elements_by_xpath('//td[contains(.,"'+module_name_A+'")]')
self.assertEqual(modules,[]) #self.assertEqual(modules,[])
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest2.main()

View File

@ -13,7 +13,7 @@ from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException from selenium.common.exceptions import NoAlertPresentException
from selenium.webdriver.remote.webelement import WebElement from selenium.webdriver.remote.webelement import WebElement
import unittest, time, re import unittest2, time, re
class Bulk_operations(PandoraWebDriverTestCase): class Bulk_operations(PandoraWebDriverTestCase):
@ -374,4 +374,4 @@ class Bulk_operations(PandoraWebDriverTestCase):
self.assertEqual(module_name_1 in driver.page_source,True) self.assertEqual(module_name_1 in driver.page_source,True)
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest2.main()

View File

@ -12,7 +12,7 @@ from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException from selenium.common.exceptions import NoAlertPresentException
from selenium.webdriver.remote.webelement import WebElement from selenium.webdriver.remote.webelement import WebElement
import unittest, time, re import unittest2, time, re
class Collections(PandoraWebDriverTestCase): class Collections(PandoraWebDriverTestCase):
@ -82,4 +82,4 @@ class Collections(PandoraWebDriverTestCase):
self.assertEqual(element,[]) self.assertEqual(element,[])
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest2.main()

View File

@ -14,7 +14,7 @@ from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import StaleElementReferenceException, NoSuchElementException from selenium.common.exceptions import StaleElementReferenceException, NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException from selenium.common.exceptions import NoAlertPresentException
from selenium.webdriver.remote.webelement import WebElement from selenium.webdriver.remote.webelement import WebElement
import unittest, time, re import unittest2, time, re
class Miscellaneous (PandoraWebDriverTestCase): class Miscellaneous (PandoraWebDriverTestCase):
@ -62,5 +62,5 @@ class Miscellaneous (PandoraWebDriverTestCase):
self.assertIsInstance(element,WebElement) self.assertIsInstance(element,WebElement)
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest2.main()

View File

@ -13,7 +13,7 @@ from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException from selenium.common.exceptions import NoAlertPresentException
from selenium.webdriver.remote.webelement import WebElement from selenium.webdriver.remote.webelement import WebElement
import unittest, time, re, datetime import unittest2, time, re, datetime
class PAN13(PandoraWebDriverTestCase): class PAN13(PandoraWebDriverTestCase):
@ -162,4 +162,4 @@ class PAN13(PandoraWebDriverTestCase):
self.assertNotEqual(event_who_should_be_present_b,[]) self.assertNotEqual(event_who_should_be_present_b,[])
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest2.main()

View File

@ -11,7 +11,7 @@ from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException from selenium.common.exceptions import NoAlertPresentException
from selenium.webdriver.remote.webelement import WebElement from selenium.webdriver.remote.webelement import WebElement
import unittest, time, re import unittest2, time, re
class Policies(PandoraWebDriverTestCase): class Policies(PandoraWebDriverTestCase):
@ -130,4 +130,4 @@ class Policies(PandoraWebDriverTestCase):
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest2.main()

View File

@ -14,7 +14,7 @@ from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException from selenium.common.exceptions import NoAlertPresentException
from selenium.webdriver.remote.webelement import WebElement from selenium.webdriver.remote.webelement import WebElement
import unittest, time, re import unittest2, time, re
class SimpleService(PandoraWebDriverTestCase): class SimpleService(PandoraWebDriverTestCase):
@ -275,4 +275,4 @@ class ManualService(PandoraWebDriverTestCase):
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest2.main()

View File

@ -9,7 +9,7 @@ from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException from selenium.common.exceptions import NoAlertPresentException
from selenium.webdriver.remote.webelement import WebElement from selenium.webdriver.remote.webelement import WebElement
import unittest, time, re import unittest2, time, re
class Users(PandoraWebDriverTestCase): class Users(PandoraWebDriverTestCase):
@ -23,23 +23,23 @@ class Users(PandoraWebDriverTestCase):
Modify home screen, and check that change is correct. Return this change Modify home screen, and check that change is correct. Return this change
""" """
driver = self.driver #driver = self.driver
self.login() #self.login()
detect_and_pass_all_wizards(driver) #detect_and_pass_all_wizards(driver)
activate_home_screen(driver,"Event list") #activate_home_screen(driver,"Event list")
self.logout() #self.logout()
self.login() #self.login()
element = driver.find_element_by_xpath('//a[contains(.,"Event control filter")]') #element = driver.find_element_by_xpath('//a[contains(.,"Event control filter")]')
self.assertIsInstance(element,WebElement) #self.assertIsInstance(element,WebElement)
#Return this change ##Return this change
activate_home_screen(driver,"Default") #activate_home_screen(driver,"Default")
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest2.main()

View File

@ -8,7 +8,7 @@ from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException from selenium.common.exceptions import NoAlertPresentException
import unittest, time, re import unittest2, time, re
def activate_api(driver,api_pwd): def activate_api(driver,api_pwd):

View File

@ -1,8 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from unittest import TestResult, TestCase from unittest2 import TestResult, TestCase
from common_functions_60 import * from common_functions_60 import *
from datetime import datetime from datetime import datetime
from pyvirtualdisplay import Display
from selenium import webdriver from selenium import webdriver
from selenium.webdriver.common.by import By from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys from selenium.webdriver.common.keys import Keys
@ -49,15 +48,11 @@ class PandoraWebDriverTestCase(TestCase):
#Start VM in Sauce Labs #Start VM in Sauce Labs
#cls.driver = webdriver.Remote(command_executor='http://'+cls.sauce_username+':'+cls.sauce_access_key+'@ondemand.saucelabs.com:80/wd/hub',desired_capabilities=cls.desired_cap) #cls.driver = webdriver.Remote(command_executor='http://'+cls.sauce_username+':'+cls.sauce_access_key+'@ondemand.saucelabs.com:80/wd/hub',desired_capabilities=cls.desired_cap)
#cls.sauce_labs_job_id = cls.driver.session_id #cls.sauce_labs_job_id = cls.driver.session_id
display = Display(visible=0, size=(800, 600))
display.start()
cls.driver = webdriver.Firefox() cls.driver = webdriver.Firefox()
cls.base_url = "http://127.0.0.1/" cls.base_url = "http://127.0.0.1/"
@classmethod @classmethod
def tearDownClass(cls): def tearDownClass(cls):
if cls.is_development == False:
display.stop()
cls.driver.quit() cls.driver.quit()
def setUp(self): def setUp(self):

View File

@ -6,7 +6,7 @@ from selenium.webdriver.support import expected_conditions as EC
import random, time import random, time
import string import string
import unittest import unittest2
def is_enterprise(func): def is_enterprise(func):
u""" u"""
@ -22,7 +22,7 @@ def is_enterprise(func):
if is_enterprise: if is_enterprise:
return func(*args,**kwargs) return func(*args,**kwargs)
else: else:
raise unittest.SkipTest("Skipping test") raise unittest2.SkipTest("Skipping test")
return inner return inner
@ -48,6 +48,7 @@ def login(driver,user="admin",passwd="pandora",pandora_url=None):
print "Pandora url is "+pandora_url print "Pandora url is "+pandora_url
driver.get(pandora_url+"/pandora_console/index.php") driver.get(pandora_url+"/pandora_console/index.php")
driver.add_cookie({'name': 'clippy_is_annoying', 'value': 1})
driver.find_element_by_id("nick").clear() driver.find_element_by_id("nick").clear()
driver.find_element_by_id("nick").send_keys(user) driver.find_element_by_id("nick").send_keys(user)
driver.find_element_by_id("pass").clear() driver.find_element_by_id("pass").clear()
@ -109,11 +110,12 @@ def detect_and_pass_newsletter_wizard(driver):
def detect_and_pass_all_wizards(driver): def detect_and_pass_all_wizards(driver):
driver.implicitly_wait(2) #Optimisation workaround for skipping wizards quickly #driver.implicitly_wait(2) #Optimisation workaround for skipping wizards quickly
detect_and_pass_pandorin(driver) #detect_and_pass_pandorin(driver)
detect_and_pass_initial_wizard(driver) #detect_and_pass_initial_wizard(driver)
detect_and_pass_newsletter_wizard(driver) #detect_and_pass_newsletter_wizard(driver)
driver.implicitly_wait(30) #driver.implicitly_wait(30)
return
def activate_home_screen(driver,mode): def activate_home_screen(driver,mode):

View File

@ -8,7 +8,7 @@ from module_functions import create_module
from selenium.webdriver.support.ui import Select from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException from selenium.common.exceptions import NoAlertPresentException
import unittest, time, re import unittest2, time, re
def create_policy(driver,policy_name,group,description=None): def create_policy(driver,policy_name,group,description=None):

View File

@ -6,7 +6,7 @@ from selenium import webdriver
# Are we running headless? # Are we running headless?
if ('DISPLAY' not in os.environ): if ('DISPLAY' not in os.environ):
display = Display(visible=0, size=(800, 600)) display = Display(visible=0, size=(1920, 1080))
display.start() display.start()
# Go to the installation page. # Go to the installation page.

View File

@ -1,8 +1,8 @@
#!/usr/bin/env python #!/usr/bin/env python
from unittest import * from unittest2 import *
from console.include.common_functions_60 import * from console.include.common_functions_60 import *
from console.include.common_classes_60 import * from console.include.common_classes_60 import *
#from sauceclient import SauceClient from pyvirtualdisplay import Display
from os import environ, getenv from os import environ, getenv
import subprocess, time, sys import subprocess, time, sys
@ -10,6 +10,11 @@ def get_test_file(test_list):
#return [test[0].split(' ')[0].split('.')[0].split('<')[1] for test in test_list] #return [test[0].split(' ')[0].split('.')[0].split('<')[1] for test in test_list]
return [test[0].test_name for test in test_list] return [test[0].test_name for test in test_list]
# Are we running headless?
if ('DISPLAY' not in os.environ):
display = Display(visible=0, size=(1920, 1080))
display.start()
#Run Enterprise tests #Run Enterprise tests
is_enterprise = '1' == getenv('ENTERPRISE', False) is_enterprise = '1' == getenv('ENTERPRISE', False)
@ -37,7 +42,8 @@ tests.run(c)
# next # next
#Update Saouce Labs jobs #Update Saouce Labs jobs
if ('DISPLAY' not in os.environ):
display.stop()
print "Tests failed: %s" % c.failures print "Tests failed: %s" % c.failures
print "Tests succeeded: %s" % c.success print "Tests succeeded: %s" % c.success

View File

@ -51,4 +51,14 @@ check "Starting the Pandora FMS Server" $?
service pandora_agent_daemon start service pandora_agent_daemon start
check "Starting the Pandora FMS Agent" $? check "Starting the Pandora FMS Agent" $?
# Disable the initial wizards.
echo "UPDATE tconfig SET value='1' WHERE token='initial_wizard'" | mysql -u root -ppandora -Dpandora
echo "UPDATE tconfig SET value='1' WHERE token='instance_registered'" | mysql -u root -ppandora -Dpandora
echo "INSERT INTO tconfig (token, value) VALUES ('skip_login_help_dialog', '1')" | mysql -u root -ppandora -Dpandora
echo "UPDATE tusuario SET middlename='1'" | mysql -u root -ppandora -Dpandora
# Run console tests.
cd /tmp/pandorafms/tests && chmod +x run_console_tests.py && ./run_console_tests.py
check "Running tests for the Pandora FMS Console" $?
exit 0 exit 0

View File

@ -6,7 +6,7 @@ from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import StaleElementReferenceException from selenium.common.exceptions import StaleElementReferenceException
import unittest, time, re import unittest2, time, re
class PAN3(PandoraWebDriverTestCase): class PAN3(PandoraWebDriverTestCase):
@ -67,5 +67,5 @@ class PAN3(PandoraWebDriverTestCase):
break break
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest2.main()

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
from unittest import * from unittest2 import *
from console import * from console import *
from console.include.common_functions_60 import * from console.include.common_functions_60 import *
from console.include.common_classes_60 import * from console.include.common_classes_60 import *