mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-03 11:57:13 +00:00
def2e070f7
* Someone links to my page * Someone mentions me * Someone writes on my talk page (if it's not a Flow board) * When I register Change-Id: I12d1c6867d996c19fbd836658e87acd418e03527
64 lines
2.3 KiB
Ruby
64 lines
2.3 KiB
Ruby
def make_page_with_user( title, text, username )
|
|
client = on(APIPage).client
|
|
client.log_in(username, ENV["MEDIAWIKI_PASSWORD"])
|
|
client.create_page(title, text)
|
|
end
|
|
|
|
def make_page_with_user_b( title, text )
|
|
username = "EchoUser"
|
|
step 'the user "' + username + '" exists'
|
|
make_page_with_user( title, text, username )
|
|
end
|
|
|
|
def make_page_with_user_a( title, text )
|
|
make_page_with_user( title, text, get_session_username() )
|
|
end
|
|
|
|
Given(/^another user writes on my talk page$/) do
|
|
make_page_with_user_b("User talk:" + get_session_username(),
|
|
"== Barnstar ==\nHello Selenium, here is a barnstar for all your testing! " + @random_string + "~~~~\n")
|
|
end
|
|
|
|
Given(/^another user @s me on "(.*?)"$/) do |title|
|
|
username = get_session_username().sub( '_', ' ' )
|
|
text = "@" + username + " Cho cho cho. ~~~~"
|
|
make_page_with_user_b(title, text)
|
|
end
|
|
|
|
Given(/^I come back from grabbing a cup of coffee$/) do
|
|
# Notifications can be extremely slow to trickle into beta labs so go to sleep for a bit
|
|
sleep 7
|
|
end
|
|
|
|
Given(/^another user mentions me on the wiki$/) do
|
|
title = 'Selenium Echo mention test ' + @random_string
|
|
username = get_session_username().sub( '_', ' ' )
|
|
text = "== The walrus ==\n[[User:" + username + "]]: Cho cho cho. ~~~~\n"
|
|
make_page_with_user_b(title, text)
|
|
end
|
|
|
|
Given(/^I am logged in with no notifications$/) do
|
|
step 'I am logged in my non-shared account'
|
|
# wait for JavaScript to have fully loaded
|
|
sleep 5
|
|
on(ArticlePage).flyout_link_element.click
|
|
# wait for the API call that marks these as read and for UI to refresh
|
|
sleep 5
|
|
on(ArticlePage).flyout_link_element.class_name.should_not match 'mw-echo-unread-notifications'
|
|
end
|
|
|
|
Then(/^I have new notifications$/) do
|
|
on(ArticlePage).flyout_link_element.when_present.class_name.should match 'mw-echo-unread-notifications'
|
|
end
|
|
|
|
Then(/^I have no new notifications$/) do
|
|
on(ArticlePage).flyout_link_element.when_present.class_name.should_not match 'mw-echo-unread-notifications'
|
|
end
|
|
|
|
Then(/^another user has linked to a page I created from another page$/) do
|
|
title = 'Selenium Echo link test ' + @random_string
|
|
make_page_with_user_a(title, "Selenium test page. Feel free to delete me.")
|
|
title2 = title + ' ' + @random_string
|
|
make_page_with_user_b(title2, "I am linking to [[" + title + "]].")
|
|
end
|