2 # -*- coding: utf-8 -*-
4 Copyright 2013 Emily O'Leary
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
10 http://www.apache.org/licenses/LICENSE-2.0
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
18 from util import login
19 from selenium import webdriver
20 from selenium.webdriver.common.by import By
21 from selenium.webdriver.support.ui import Select
22 from selenium.common.exceptions import NoSuchElementException
23 import unittest, time, re
25 class DeleteCollection(unittest.TestCase):
27 self.driver = webdriver.Firefox()
28 self.driver.implicitly_wait(30)
29 self.base_url = "http://127.0.0.1:6543"
30 self.verificationErrors = []
31 self.accept_next_alert = True
33 def test_delete_collection(self):
35 driver.get(self.base_url + "/")
36 tLogin = login.Login()
37 data = {"username" : "theeraser", "password" : "Icanseeforever"}
38 tLogin.log_in(self, data)
39 driver.find_element_by_link_text(u"▼").click()
40 self.assertTrue(self.is_element_present(By.LINK_TEXT, "theeraser"))
41 driver.find_element_by_link_text("theeraser").click()
42 self.assertTrue(self.is_element_present(By.LINK_TEXT, "Browse collections"))
43 driver.find_element_by_link_text("Browse collections").click()
44 self.assertTrue(self.is_element_present(By.LINK_TEXT, "Test Collection Delete"))
45 driver.find_element_by_link_text("Test Collection Delete").click()
46 self.assertTrue(self.is_element_present(By.LINK_TEXT, "Delete"))
47 driver.find_element_by_link_text("Delete").click()
48 self.assertTrue(self.is_element_present(By.CSS_SELECTOR, "label"))
49 driver.find_element_by_id("confirm").click()
50 self.assertTrue(self.is_element_present(By.CSS_SELECTOR, "input.button_form"))
51 driver.find_element_by_css_selector("input.button_form").click()
52 try: self.assertTrue(self.is_element_present(By.CSS_SELECTOR, "li.message_success"))
53 except AssertionError as e: self.verificationErrors.append(str(e))
55 def is_element_present(self, how, what):
56 try: self.driver.find_element(by=how, value=what)
57 except NoSuchElementException, e: return False
60 def is_alert_present(self):
61 try: self.driver.switch_to_alert()
62 except NoAlertPresentException, e: return False
65 def close_alert_and_get_its_text(self):
67 alert = self.driver.switch_to_alert()
68 alert_text = alert.text
69 if self.accept_next_alert:
74 finally: self.accept_next_alert = True
78 self.assertEqual([], self.verificationErrors)
80 if __name__ == "__main__":