Example #1
0
    def test_description(self):
        driver = self.driver

        # Fill in conference description
        self.wait_until(30, EC.presence_of_element_located((By.ID, 'desc')))
        test_val = "Important conference."
        conftest.element_send_keys_by_id(driver, 'desc', test_val)

        # Save conference settings
        conf_id = conftest.element_get_attribute_by_id(driver, 'short',
                                                       'value')
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Switch to start page
        driver.get("http://" + Cookies.get_host_ip() + ":9000")

        # Select conference by conference id
        xpath_conf_div = '//div[@class="jumbotron"]/h3/a[contains(@href,"%s")]/../..' % conf_id
        conf_div = driver.find_element_by_xpath(xpath_conf_div)

        # Check conference jumbotron contains the description
        xpath_para = './div[@class="jumbo-small"]/p[contains(text(),"%s")]' % test_val
        assert len(conf_div.find_elements_by_xpath(xpath_para)) == 1

        # Switch to conference main page
        driver.get("http://" + Cookies.get_host_ip() + ":9000/conference/" +
                   conf_id)

        # Check the conference description is displayed
        xpath_para = '//div[@class="jumbotron"]/div[@class="jumbo-small"]/p[@class="paragraph-small"]'
        assert test_val in driver.find_element_by_xpath(xpath_para).text

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))
Example #2
0
    def test_thumbnail_url(self):
        driver = self.driver

        # The thumbnail is only shown if a conference is not active
        img_thumb = "https://portal.g-node.org/abstracts/bc14/BC14_icon.png"

        # Fill in thumbnail link
        self.wait_until(30, EC.presence_of_element_located(
            (By.ID, 'thumbnail')))
        conftest.element_send_keys_by_id(driver, 'thumbnail', img_thumb)

        # Save conference
        conf_id = conftest.element_get_attribute_by_id(driver, 'short',
                                                       'value')
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Switch to start page
        driver.get("http://" + Cookies.get_host_ip() + ":9000/")

        # Select conference by conference id
        xpath_div_conf = '//div[@class="media-body"]/a[contains(@href,"%s")]/..' % conf_id
        conf_div = driver.find_element_by_xpath(xpath_div_conf)

        # Check conference thumbnail displayed
        xpath_image = '..//div[contains(@class,"media-left")]//a/img[@src="%s"]' % img_thumb
        assert len(conf_div.find_elements_by_xpath(xpath_image)) == 1

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))
Example #3
0
    def test_logo_url(self):
        driver = self.driver

        # Conference banner url
        img_header = 'https://portal.g-node.org/abstracts/bc18/BC18_header.jpg'

        # Set conference banner url
        self.wait_until(30, EC.presence_of_element_located((By.ID, 'logo')))
        conftest.element_send_keys_by_id(driver, 'logo', img_header)

        # Save conference
        conf_id = conftest.element_get_attribute_by_id(driver, 'short',
                                                       'value')
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Switch to start page
        driver.get("http://" + Cookies.get_host_ip() + ":9000/")

        # Select conference div by conference id
        xpath_tcnum = '//div[@class="jumbotron"]/h3/a[contains(@href,"%s")]/../..' % conf_id
        conf_div = driver.find_element_by_xpath(xpath_tcnum)

        # Check the banner is displayed
        xpath_img_header = './/p[contains(@data-bind,"logo")]//img[@src="%s"]' % img_header
        assert len(conf_div.find_elements_by_xpath(xpath_img_header)) == 1

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))
Example #4
0
    def test_start_date(self):
        driver = self.driver

        # Select start date via date picker to the 14. of the next month
        self.wait_until(30, EC.presence_of_element_located((By.ID, 'start')))
        test_val = "14"
        conftest.element_click_by_id(driver, 'start')

        driver.find_element_by_xpath(
            '//a[contains(@class,"ui-datepicker-next")]').click()
        driver.find_element_by_xpath(
            '//div[@id="ui-datepicker-div"]//a[contains(text(), "%s")]' %
            test_val).click()
        driver.find_element_by_xpath(
            '//button[contains(@class, "datepicker-close")]').click()

        # Save conference
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Check that the date has been set
        self.wait_until(30, EC.presence_of_element_located((By.ID, 'start')))
        assert test_val in conftest.element_get_attribute_by_xpath(
            driver, '//*[@id="start"]', 'value')

        # Check start date cannot be set to invalid values
        old_date = conftest.element_get_attribute_by_id(
            driver, 'start', 'value')
        # Check invalid date
        conftest.element_send_keys_by_id(driver, 'start', '99/99/9999')
        # Switch focus
        conftest.element_click_by_id(driver, 'mFigs')

        # Check date value has not been changed
        assert old_date in conftest.element_get_attribute_by_id(
            driver, 'start', 'value')

        # Check date cannot be set to invalid string
        driver.find_element_by_id('start').send_keys('hello')
        assert old_date in conftest.element_get_attribute_by_id(
            driver, 'start', 'value')

        # Switch to start page
        conf_id = conftest.element_get_attribute_by_id(driver, 'short',
                                                       'value')
        driver.get("http://" + Cookies.get_host_ip() + ":9000/")

        # Select conference by conference id
        div_conf = '//div[@class="jumbotron"]/h3/a[contains(@href,"%s")]/../..' % conf_id
        conf_div = driver.find_element_by_xpath(div_conf)

        # Check conference contains changed start date
        assert len(
            conf_div.find_elements_by_xpath('./p[contains(text(),"%s")]' %
                                            test_val)) == 1

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))
Example #5
0
    def test_maximum_abstract_length(self):
        driver = self.driver

        abstract_id = 'mAbsLen'
        self.wait_until(30, EC.presence_of_element_located(
            (By.ID, abstract_id)))

        # Set maximum abstract length
        test_abstract_len = "300"
        conftest.element_send_keys_by_id(driver, abstract_id,
                                         test_abstract_len)

        # Check warning message when a set abstract length is shortened
        test_msg = "Changing to shorter abstract length causes cut-offs"
        xpath_alert = '//div[contains(@class,"form-group")]/div[contains(@class,"alert-danger")]'
        assert test_msg in driver.find_element_by_xpath(xpath_alert).text

        # Save conference settings
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Check abstract length has been set
        self.wait_until(30, EC.presence_of_element_located(
            (By.ID, abstract_id)))
        assert test_abstract_len == driver.find_element_by_id(
            abstract_id).get_attribute('value')

        # Switch to the conference abstract submission page
        conf_id = conftest.element_get_attribute_by_id(driver, 'short',
                                                       'value')
        driver.get("http://%s:9000/conference/%s/submission" %
                   (Cookies.get_host_ip(), conf_id))

        # Open abstract text modal
        conftest.move_to_element_by_class_name(driver, 'abstract-text')
        self.wait_until(
            10,
            EC.visibility_of_element_located(
                (By.ID, 'button-edit-abstract-text')))
        driver.find_element_by_id('button-edit-abstract-text').click()

        self.wait_until(
            30,
            EC.visibility_of_element_located(
                (By.XPATH, '//*[@id="abstract-text-editor"]')))

        # Check maximum length message
        xpath_text = '//*[@id="abstract-text-editor"]//textarea[@id="text"]'
        assert driver.find_element_by_xpath(xpath_text).get_attribute(
            "maxlength") == test_abstract_len

        # Close abstract text modal
        xpath_modal = '//*[@id="abstract-text-editor"]//button[@id="modal-button-ok"]'
        driver.find_element(By.XPATH, xpath_modal).click()

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))
Example #6
0
    def test_add_topic(self):
        driver = self.driver

        # Add an abstract topic
        self.wait_until(30, EC.presence_of_element_located(
            (By.ID, 'addTopic')))
        conftest.element_send_keys_by_id(driver, 'addTopic', 'Topic A')
        driver.find_element_by_id('btn-add-topic').click()

        # Check topic has been added
        assert len(
            driver.find_elements_by_xpath(
                '//ul/li/span[contains(text(),"Topic A")]')) == 1

        # Add second topic
        conftest.element_send_keys_by_id(driver, 'addTopic', 'Topic B')
        driver.find_element_by_id('btn-add-topic').click()
        assert len(
            driver.find_elements_by_xpath(
                '//ul/li/span[contains(text(),"Topic B")]')) == 1

        # Save conference settings
        conf_id = conftest.element_get_attribute_by_id(driver, 'short',
                                                       'value')
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Switch to the conference abstract submission page
        driver.get("http://%s:9000/conference/%s/submission" %
                   (Cookies.get_host_ip(), conf_id))

        # Open abstract topic modal
        conftest.move_to_element_by_class_name(driver, 'topic')
        self.wait_until(
            10, EC.visibility_of_element_located((By.ID, 'button-edit-topic')))
        driver.find_element_by_id('button-edit-topic').click()

        # Check there are two options available
        xpath_radio = '//*[@id="topic-editor"]//div[contains(@class, "radio")]'
        self.wait_until(10, EC.element_to_be_clickable(
            (By.XPATH, xpath_radio)))

        xpath_radio_input = '//*[@id="topic-editor"]//div[contains(@class, "radio")]//input'
        assert len(driver.find_elements_by_xpath(xpath_radio_input)) == 2

        # Close topic modal
        driver.find_element_by_xpath(
            '//*[@id="topic-editor"]//button[@id="modal-button-ok"]').click()

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))
Example #7
0
    def test_cite(self):
        driver = self.driver

        # Fill in conference citation text
        test_val = "The Test Conf, Somewhere, Sometime"
        conftest.element_send_keys_by_id(driver, 'cite', test_val)

        # Save conference
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Check value has been set
        self.wait_until(30, EC.presence_of_element_located((By.ID, 'cite')))
        assert test_val in conftest.element_get_attribute_by_xpath(
            driver, '//*[@id="cite"]', 'value')
Example #8
0
    def test_name(self):
        driver = self.driver

        # Save a new conference with conference name only
        conftest.element_send_keys_by_id(driver, 'name', "Test Conference")
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Test automatically filled in values
        assert "TC" in conftest.element_get_attribute_by_id(
            driver, 'short', 'value')
        assert "500" == conftest.element_get_attribute_by_id(
            driver, 'mAbsLen', 'value')
        assert "0" == conftest.element_get_attribute_by_id(
            driver, 'mFigs', 'value')
Example #9
0
    def test_iosapp(self):
        driver = self.driver

        # Fill in iosapp entry
        self.wait_until(30, EC.presence_of_element_located((By.ID, 'iosapp')))
        test_val = "999999999"
        conftest.element_send_keys_by_id(driver, 'iosapp', test_val)

        # Save conference
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Check value has been set
        self.wait_until(30, EC.presence_of_element_located((By.ID, 'iosapp')))
        assert test_val in conftest.element_get_attribute_by_xpath(
            driver, '//*[@id="iosapp"]', 'value')
Example #10
0
    def test_short(self):
        driver = self.driver

        # Fill in existing conference short and save
        conftest.element_send_keys_by_id(driver, 'short', 'BC14')
        conftest.element_click_by_class_name(driver, 'btn-success')

        xpath_alert = '//div[contains(@class,"alert-danger")]/strong'
        # Wait for save alert to be displayed
        self.wait_until(
            30, EC.presence_of_element_located((By.XPATH, xpath_alert)))
        # Check save alert is displayed
        test_msg = "Conference short is already in use."
        assert test_msg in driver.find_element_by_xpath(xpath_alert).text

        # Fill in new conference short and save
        conf_id = "TC%s" % str(uuid1())[0:10]
        conftest.element_send_keys_by_id(driver, 'short', conf_id)
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Check absence of save alert
        self.wait_until(
            30, EC.invisibility_of_element_located((By.XPATH, xpath_alert)))
        assert len(driver.find_elements_by_xpath(xpath_alert)) == 0

        # Switch to start page
        driver.get("http://" + Cookies.get_host_ip() + ":9000/")

        # Check conference is present by short id and contains the conference name
        xpath_div_conf = '//div[@class="media-body"]/h4[@id="%s" and contains(text(), "Test Conference")]' % conf_id
        assert len(driver.find_elements_by_xpath(xpath_div_conf)) == 1

        # Check new conference is present in the unpublished section
        xpath_div = '//div[@class="media-body"]/h4[@id="%s"]/..' % conf_id
        assert 'unpublished' in driver.find_element_by_xpath(
            '%s/..' % xpath_div).get_attribute('class')

        # Move back to the conference settings page via link
        driver.find_element_by_xpath(
            '%s//a[contains(text(),"Conference Settings")]' %
            xpath_div).click()
        # Switch to start page
        driver.get("http://" + Cookies.get_host_ip() + ":9000/")

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))
Example #11
0
    def test_notice(self):
        # Test conference wide note
        driver = self.driver

        # Fill in conference note
        self.wait_until(30, EC.presence_of_element_located((By.ID, 'notice')))
        test_val = 'Check abstracts before submission!'
        conftest.element_send_keys_by_id(driver, 'notice', test_val)

        # Save conference settings
        conf_id = conftest.element_get_attribute_by_id(driver, 'short',
                                                       'value')
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Switch to conference main page
        driver.get("http://" + Cookies.get_host_ip() + ":9000/conference/" +
                   conf_id)

        # Check notice is displayed as first jumbotron
        xpath_check = '//div[@class="jumbotron"]//p[contains(text(),"%s")]' % test_val
        assert len(driver.find_elements_by_xpath(xpath_check)) == 1

        # Switch to conference abstracts page
        driver.get("http://%s:9000/conference/%s/abstracts" %
                   (Cookies.get_host_ip(), conf_id))

        # Check notice is displayed as first jumbotron
        xpath_check = '//div[@class="jumbotron"]//p[contains(text(),"%s")]' % test_val
        assert len(driver.find_elements_by_xpath(xpath_check)) == 1

        # Switch to start page
        driver.get("http://" + Cookies.get_host_ip() + ":9000")

        # Check notice is not displayed
        xpath_check = '//div[@class="jumbotron"]//p[contains(text(),"%s")]' % test_val
        assert len(driver.find_elements_by_xpath(xpath_check)) == 0

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))
Example #12
0
    def test_deadline(self):
        driver = self.driver

        # Select deadline date via date picker to the 10. of the next month
        self.wait_until(30, EC.presence_of_element_located(
            (By.ID, 'deadline')))
        test_val = "10"
        conftest.element_click_by_id(driver, 'deadline')
        driver.find_element_by_id('deadline').click()

        driver.find_element_by_xpath(
            '//a[contains(@class,"ui-datepicker-next")]').click()
        driver.find_element_by_xpath(
            '//div[@id="ui-datepicker-div"]//a[contains(text(), "%s")]' %
            test_val).click()
        driver.find_element_by_xpath(
            '//button[contains(@class, "datepicker-close")]').click()

        # Save conference
        conftest.element_click_by_class_name(driver, 'btn-success')

        self.wait_until(30, EC.presence_of_element_located(
            (By.ID, 'deadline')))
        assert test_val in conftest.element_get_attribute_by_xpath(
            driver, '//*[@id="deadline"]', 'value')

        old_date = conftest.element_get_attribute_by_id(
            driver, 'deadline', 'value')
        conftest.element_send_keys_by_id(driver, 'deadline', '99/99/9999')
        conftest.element_click_by_id(driver, "mFigs")

        assert old_date in conftest.element_get_attribute_by_id(
            driver, 'deadline', 'value')
        driver.find_element_by_id('deadline').send_keys('hello')
        conftest.element_click_by_id(driver, "mFigs")
        assert old_date in conftest.element_get_attribute_by_id(
            driver, 'deadline', 'value')
        conftest.element_click_by_id(driver, "mFigs")
Example #13
0
    def test_link(self):
        driver = self.driver

        # Fill in conference link
        conf_link = 'http://www.nncn.de/en/bernstein-conference/2014'
        conftest.element_send_keys_by_id(driver, 'link', conf_link)

        # Save conference
        conf_id = conftest.element_get_attribute_by_id(driver, 'short',
                                                       'value')
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Switch to conference main page
        driver.get("http://" + Cookies.get_host_ip() + ":9000/conference/" +
                   conf_id)

        # Check the conference banner contains the set conference link
        xpath_link = '//div[@class="jumbotron"]/div[contains(@data-bind,"logo")]/a[contains(@href,"%s")]' % conf_link
        assert len(driver.find_elements_by_xpath(xpath_link)) == 1

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))
Example #14
0
    def test_groups(self):
        driver = self.driver

        # Set conference abstract groups
        xpath_groups = '//li/a[contains(@href,"groups")]'
        self.wait_until(
            30, EC.presence_of_element_located((By.XPATH, xpath_groups)))

        # Switch to conference groups tab
        driver.find_element_by_xpath(xpath_groups).click()

        # Add empty group
        xpath_btn_new_group = '//tr[@id="newGroup"]//td/button'
        driver.find_element_by_xpath(xpath_btn_new_group).click()

        # Check that empty group cannot be saved
        xpath_alert = '//div[contains(@class,"alert-danger")]/strong'
        test_msg_full_entry = "Prefix, short and long entries have to be provided!"
        assert test_msg_full_entry in driver.find_element_by_xpath(
            xpath_alert).text

        # Set all fields of the added group entry to invalid values
        id_prefix = "ngPrefix"
        id_short = "ngShort"
        id_name = "ngName"
        driver.find_element_by_id(id_prefix).send_keys("u")
        driver.find_element_by_id(id_short).send_keys("3")
        driver.find_element_by_id(id_name).send_keys("3")

        # Check invalid values cannot be saved
        driver.find_element_by_xpath(xpath_btn_new_group).click()

        # Check invalid prefix message
        test_msg_num_only = "Prefix can only contain numbers!"
        assert test_msg_num_only in driver.find_element_by_xpath(
            xpath_alert).text

        # Change prefix to invalid content
        conftest.element_send_keys_by_id(driver, id_prefix, '1.2')
        driver.find_element_by_xpath(xpath_btn_new_group).click()
        assert test_msg_num_only in driver.find_element_by_xpath(
            xpath_alert).text

        # Change prefix to valid content
        conftest.element_send_keys_by_id(driver, id_prefix, '1')
        driver.find_element_by_xpath(xpath_btn_new_group).click()

        # Check long name invalid content
        test_msg_name_char = "Name cannot contain only numbers!"
        assert test_msg_name_char in driver.find_element_by_xpath(
            xpath_alert).text

        # Change long name to valid content
        conftest.element_send_keys_by_id(driver, id_name, 'Group 1')
        driver.find_element_by_xpath(xpath_btn_new_group).click()

        # Check short name invalid content
        test_msg_short_char = "Short cannot contain only numbers!"
        assert test_msg_short_char in driver.find_element_by_xpath(
            xpath_alert).text

        # Change short name to valid content
        conftest.element_send_keys_by_id(driver, id_short, 'G1')
        driver.find_element_by_xpath(xpath_btn_new_group).click()

        assert len(driver.find_elements_by_xpath(xpath_alert)) == 0

        xpath_btn_success = '//*[@id="groups"]/div/button[contains(@class,"btn-success")]'
        driver.find_element_by_xpath(xpath_btn_success).click()

        assert len(driver.find_elements_by_xpath(xpath_alert)) == 0
Example #15
0
    def test_maximum_figures(self):
        driver = self.driver

        # Switch to the conference abstract submission page
        self.wait_until(10, EC.visibility_of_element_located((By.ID, 'short')))
        conf_id = conftest.element_get_attribute_by_id(driver, 'short',
                                                       'value')
        driver.get("http://%s:9000/conference/%s/submission" %
                   (Cookies.get_host_ip(), conf_id))

        # Check figure modal is not available
        assert len(driver.find_elements_by_class_name('figure')) == 0

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))

        # Set abstract figure number
        fig_id = "mFigs"
        test_fig_num = "3"
        self.wait_until(30, EC.presence_of_element_located((By.ID, fig_id)))
        conftest.element_send_keys_by_id(driver, fig_id, test_fig_num)

        # Save conference settings
        conftest.element_click_by_class_name(driver, 'btn-success')

        # Check figure number has been set
        self.wait_until(30, EC.presence_of_element_located((By.ID, fig_id)))
        assert test_fig_num == driver.find_element_by_id(fig_id).get_attribute(
            'value')

        # Switch to the conference abstract submission page
        conf_id = conftest.element_get_attribute_by_id(driver, 'short',
                                                       'value')
        driver.get("http://%s:9000/conference/%s/submission" %
                   (Cookies.get_host_ip(), conf_id))

        # Check figure section is available
        assert len(driver.find_elements_by_class_name('figure')) == 1

        # Open figure modal
        conftest.move_to_element_by_class_name(driver, 'figure')
        self.wait_until(
            10, EC.visibility_of_element_located(
                (By.ID, 'button-edit-figure')))
        driver.find_element_by_id('button-edit-figure').click()

        self.wait_until(
            10,
            EC.element_to_be_clickable(
                (By.XPATH, '//*[@id="figures-editor"]')))

        # Check figure number
        xpath_fig_len = '//*[@id="figures-editor"]//div[@class="modal-body"]' \
                        '//div[contains(@data-bind, "figures().length>=%s")]' % test_fig_num
        assert len(driver.find_elements_by_xpath(xpath_fig_len)) == 1

        # Close figure modal
        xpath_modal = '//*[@id="figures-editor"]//button[@id="modal-button-ok"]'
        driver.find_element_by_xpath(xpath_modal).click()

        # Switch back to the conference settings page
        driver.get("http://%s:9000/dashboard/conference/%s" %
                   (Cookies.get_host_ip(), conf_id))