summaryrefslogtreecommitdiff
path: root/hack/infrastructure/docker-ci/functionaltests/test_index.py
blob: fd002c81e8aa90a93aa78d7547c9124bebc530b0 (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
#!/usr/bin/python

import os
username, password = os.environ['DOCKER_CREDS'].split(':')

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
import unittest, time, re

class Docker(unittest.TestCase):
    def setUp(self):
        self.driver = webdriver.PhantomJS()
        self.driver.implicitly_wait(30)
        self.base_url = "http://www.docker.io/"
        self.verificationErrors = []
        self.accept_next_alert = True

    def test_docker(self):
        driver = self.driver
        print "Login into {0} as login user {1} ...".format(self.base_url,username)
        driver.get(self.base_url + "/")
        driver.find_element_by_link_text("INDEX").click()
        driver.find_element_by_link_text("login").click()
        driver.find_element_by_id("id_username").send_keys(username)
        driver.find_element_by_id("id_password").send_keys(password)
        print "Checking login user ..."
        driver.find_element_by_css_selector("input[type=\"submit\"]").click()
        try: self.assertEqual("test", driver.find_element_by_css_selector("h3").text)
        except AssertionError as e: self.verificationErrors.append(str(e))
        print "Login user {0} found".format(username)

    def is_element_present(self, how, what):
        try: self.driver.find_element(by=how, value=what)
        except NoSuchElementException, e: return False
        return True

    def is_alert_present(self):
        try: self.driver.switch_to_alert()
        except NoAlertPresentException, e: return False
        return True

    def close_alert_and_get_its_text(self):
        try:
            alert = self.driver.switch_to_alert()
            alert_text = alert.text
            if self.accept_next_alert:
                alert.accept()
            else:
                alert.dismiss()
            return alert_text
        finally: self.accept_next_alert = True

    def tearDown(self):
        self.driver.quit()
        self.assertEqual([], self.verificationErrors)

if __name__ == "__main__":
    unittest.main()