mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
89 lines
2.2 KiB
Python
89 lines
2.2 KiB
Python
#####
|
|
##### This file is part of Mail-in-a-Box-LDAP which is released under the
|
|
##### terms of the GNU Affero General Public License as published by the
|
|
##### Free Software Foundation, either version 3 of the License, or (at
|
|
##### your option) any later version. See file LICENSE or go to
|
|
##### https://github.com/downtownallday/mailinabox-ldap for full license
|
|
##### details.
|
|
#####
|
|
|
|
from browser.automation import (
|
|
TestDriver,
|
|
TimeoutException,
|
|
NoSuchElementException,
|
|
ElementNotInteractableException,
|
|
)
|
|
from browser.NextcloudAutomation import NextcloudAutomation
|
|
import sys
|
|
|
|
op = sys.argv[1]
|
|
login = sys.argv[2]
|
|
pw = sys.argv[3]
|
|
contact = {
|
|
'givenname': sys.argv[4],
|
|
'surname': sys.argv[5],
|
|
'email': sys.argv[6],
|
|
}
|
|
|
|
d = TestDriver()
|
|
nc = NextcloudAutomation(d)
|
|
|
|
try:
|
|
#
|
|
# open the browser to Nextcloud
|
|
#
|
|
# these tests work for both remote and local Nextclouds. nginx
|
|
# will redirect to a remote nextcloud during get(), if configured
|
|
#
|
|
d.start("Opening Nextcloud")
|
|
d.get("/cloud/")
|
|
nc.wait_for_login_screen()
|
|
d.say_verbose('url: ' + d.current_url())
|
|
|
|
#
|
|
# login, then open the contacts app
|
|
#
|
|
nc.login(login, pw)
|
|
nc.wait_for_app_load()
|
|
nc.open_contacts()
|
|
nc.wait_for_app_load()
|
|
|
|
#
|
|
# handle selected operation
|
|
#
|
|
if op=='exists':
|
|
d.start("Check that contact %s exists", contact['email'])
|
|
nc.click_contact(contact) # raises NoSuchElementException if not found
|
|
|
|
elif op=='delete':
|
|
d.start("Delete contact %s", contact['email'])
|
|
nc.click_contact(contact)
|
|
nc.wait_contact_loaded()
|
|
# click "..." menu
|
|
d.find_el('.contact-header__actions button.action-item__menutoggle').click()
|
|
d.wait_for_el('.popover', must_be_displayed=True, secs=2)
|
|
# click "delete"
|
|
d.find_el('.popover span.icon-delete').parent().click()
|
|
d.wait_for_el('div.empty-content', secs=2)
|
|
|
|
else:
|
|
raise ValueError('Invalid operation: %s' % op)
|
|
|
|
#
|
|
# logout
|
|
#
|
|
nc.logout()
|
|
nc.wait_for_login_screen()
|
|
|
|
#
|
|
# done
|
|
#
|
|
d.say("Success!")
|
|
|
|
except Exception as e:
|
|
d.fail(e)
|
|
raise
|
|
|
|
finally:
|
|
d.quit()
|