scinote-web/features/step_definitions/shared_steps.rb
2020-07-09 13:14:06 +02:00

264 lines
7 KiB
Ruby

# frozen_string_literal: true
Given(/^the following users are registered:$/) do |table|
table.hashes.each do |hash|
team_name = hash.delete 'team'
team_role = hash.delete 'role'
user = FactoryBot.create(:user, hash)
team = FactoryBot.create(:team, name: team_name, users: [user])
UserTeam.where(user: user, team: team).first.update role: team_role
User.find_by(email: hash.fetch('email')).confirm
end
end
# When(/^I click "(.+)" button$/) do |button|
# click_button(button)
# end
Then('I click {string} button') do |button|
# find('.btn', text: button).click
sci_click_on_button(text: button)
end
Then('I click {string} SCIicon') do |icon_class|
sci_click_on_icon(icon_class: icon_class)
end
#
# Then('I click {string} SCIicon with delay') do |icon_class|
# sci_click_on_icon(icon_class: icon_class, wait: 1)
# end
# Then('I click on {string} button') do |button|
# find('.btn', text: button).click
# end
# Given('I click on {string} class button') do |button6|
# find('.btn', class: button6, match: :first).click
# end
Given('I click on {string} id button') do |button1|
find('.btn', id: button1).click
end
Then('I trigger click {string}') do |string|
page.execute_script("$('#{string}').trigger('click')")
end
Then(/^I should be redirected to the homepage$/) do
current_path.should =~ %r{^/$}
end
Given(/^I click "(.+)" link$/) do |link|
click_link link
end
Given(/^I click first "(.+)" link$/) do |link_text|
first(:link, link_text).click
end
Given(/^I click "(.+)" link within "(.+)"$/) do |link, element|
within(element) do
click_link link
end
end
Then(/^I click "(.+)" link within dropdown menu$/) do |link|
within('.dropdown-menu') do
click_link link
end
end
Then(/^I click on "(.+)" within dropdown menu$/) do |link1|
within('.inner') do
find('.text', text: link1).click
end
end
Then(/^I should see "(.+)"$/) do |text|
wait_for_ajax
expect(page).to have_content(text)
end
Then('I should not see {string}') do |text6|
wait_for_ajax
expect(page).not_to have_content(text6)
end
Then(/^I should be on homepage$/) do
expect(page).to have_current_path(root_path)
end
Given(/^the "([^"]*)" team exists$/) do |team_name|
FactoryBot.create(:team, name: team_name)
end
Given(/^Demo project exists for the "([^"]*)" team$/) do |team_name|
team = Team.find_by(name: team_name)
user = team.user_teams.where(role: :admin).take.user
seed_demo_data(user, team)
end
Given(/^I'm on the home page of "([^"]*)" team$/) do |team_name|
team = Team.find_by(name: team_name)
@current_user.update(current_team_id: team.id)
visit root_path
end
Given(/^"([^"]*)" is in "([^"]*)" team as a "([^"]*)"$/) do |user_email, team_name, role|
team = Team.find_by(name: team_name)
user = User.find_by(email: user_email)
FactoryBot.create(:user_team, user: user,
team: team, role:
UserTeam.roles.fetch(role))
end
Then(/^I attach a "([^"]*)" file to "([^"]*)" field$/) do |file, field_id|
wait_for_ajax
find(field_id, visible: false).attach_file(Rails.root.join('features', 'assets', file))
# "expensive" operation needs some time :=)
sleep(0.5)
end
Then(/^I should see "([^"]*)" error message$/) do |message|
wait_for_ajax
expect(page).to have_content(message)
end
Then(/^I click on "([^"]*)"$/) do |button|
click_on button
end
Then(/^I click on image within "([^"]*)" element$/) do |container|
sleep 0.5
within(container) do
find('img').click
end
wait_for_ajax
end
Then(/^I should see "([^"]*)" flash message$/) do |message|
wait_for_ajax
expect(find('.alert')).to have_content(message)
end
Then(/^I click on Edit on "([^"]*)" input field$/) do |container_id|
wait_for_ajax
within(container_id) do
find('[data-action="edit"]').click
end
end
Then(/^I fill in "([^"]*)" in "([^"]*)" input fields$/) do |text, input_id|
page.find("#{input_id} input[type=\"text\"]").set(text)
end
Then(/^I fill in "([^"]*)" in "([^"]*)" rich text editor field$/) do |text, input_id|
within_frame(find(input_id + '_ifr')) do
find('#tinymce').set(text)
end
end
Then('I fill in {string} to {string} field of {string} modal window') do |value, field, modal|
page.find('.modal-content', text: modal).find_field(field, with: '').set(value)
end
Then('I change {string} with {string} of field {string} of {string} window') do |old_value, new_value, field, modal|
page.find('.modal-content', text: modal).find_field(field, with: old_value).set(new_value)
end
Then(/^I fill in "([^"]*)" in "([^"]*)" field$/) do |text, input_id|
page.find(input_id).set(text)
end
Then(/^I should see "([^"]*)" in "([^"]*)" input field$/) do |text, container_id|
container = page.find(container_id)
expect(container).to have_xpath("//input[@value='#{text}']")
end
# Given('I click {string} icon') do |id|
# find(:css, id).click
# end
Then(/^(?:|I )click on "([^"]*)" element$/) do |selector|
find(selector).click
end
Then(/^I attach file "([^"]*)" to the drag-n-drop field$/) do |file_name|
find('#drag-n-drop-assets', visible: false).send_keys(Rails.root.join('features', 'assets', file_name))
end
Then(/^I change "([^"]*)" with "([^"]*)" in "([^"]*)" input field$/) do |old_text, new_text, container_id|
wait_for_ajax
container = page.find_by_id(container_id)
expect(container).to have_xpath("//input[@value='#{old_text}']")
container.find('input').set(new_text)
end
Then(/^I fill in "([^"]*)" in "([^"]*)" textarea field$/) do |text, textarea_id|
textarea = page.find_by_id(textarea_id)
textarea.set(text)
end
Then(/^I change "([^"]*)" with "([^"]*)" in "([^"]*)" textarea field$/) do |old_text, new_text, textarea_id|
textarea = page.find_by_id(textarea_id)
expect(textarea).to have_content(old_text)
textarea.set(new_text)
end
Then(/^I should not see "([^"]*)" on "([^"]*)" element$/) do |text, element|
wait_for_ajax
expect(find(element)).not_to have_content(text)
end
Then(/^I should see "([^"]*)" on "([^"]*)" element$/) do |text, element|
wait_for_ajax
expect(find(element)).to have_content(text)
end
Then('I wait for {int} sec') do |sec|
sleep sec
end
Then('I click button with icon and label {string}') do |label|
find('.btn', text: label).click
end
Given('default screen size') do
page.driver.browser.manage.window.resize_to(1920, 1080) if defined?(page.driver.browser.manage)
end
Given('default screen size2') do
page.driver.browser.manage.window.resize_to(1600, 900) if defined?(page.driver.browser.manage)
end
Then('I make screenshot') do
page.execute_script 'window.scrollTo(0,0)'
page.driver.save_screenshot 'screenshot.png'
end
Given('I click to Cancel on confirm dialog') do
page.driver.browser.switch_to.alert.dismiss
end
Given('I click to OK on confirm dialog') do
page.driver.browser.switch_to.alert.accept
end
Then('confirm with ENTER key to {string}') do |element|
page.find(element.to_s).native.send_keys(:enter)
end
Then('I hover over comment') do
find('.content-placeholder').hover
end
Then('I click on {string} sign') do |string1|
find(string1.to_s).click
end
Then('WAIT') do
wait_for_ajax
end