Commit 7a4f37f5 authored by Nathan Friend's avatar Nathan Friend Committed by Mark Chao

Add feature tests for "New Release" page

This commit adds RSpec feature tests that cover the functionality of
the "New Release" page.
parent 4cd5f06b
......@@ -139,7 +139,7 @@ export default {
class="form-control"
/>
</gl-form-group>
<gl-form-group class="w-50" @keydown.enter.prevent.capture>
<gl-form-group class="w-50" data-testid="milestones-field" @keydown.enter.prevent.capture>
<label>{{ __('Milestones') }}</label>
<div class="d-flex flex-column col-md-6 col-sm-10 pl-0">
<milestone-combobox
......
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'User creates release', :js do
include Spec::Support::Helpers::Features::ReleasesHelpers
let_it_be(:project) { create(:project, :repository) }
let_it_be(:milestone_1) { create(:milestone, project: project, title: '1.1') }
let_it_be(:milestone_2) { create(:milestone, project: project, title: '1.2') }
let_it_be(:user) { create(:user) }
let(:new_page_url) { new_project_release_path(project) }
let(:show_feature_flag) { true }
before do
stub_feature_flags(release_show_page: show_feature_flag)
project.add_developer(user)
gitlab_sign_in(user)
visit new_page_url
wait_for_requests
end
it 'renders the breadcrumbs', :aggregate_failures do
within('.breadcrumbs') do
expect(page).to have_content("#{project.creator.name} #{project.name} New Release")
expect(page).to have_link(project.creator.name, href: user_path(project.creator))
expect(page).to have_link(project.name, href: project_path(project))
expect(page).to have_link('New Release', href: new_project_release_path(project))
end
end
it 'defaults the "Create from" dropdown to the project\'s default branch' do
expect(page.find('.ref-selector button')).to have_content(project.default_branch)
end
context 'when the "Save release" button is clicked' do
let(:tag_name) { 'v1.0' }
let(:release_title) { 'A most magnificent release' }
let(:release_notes) { 'Best. Release. **Ever.** :rocket:' }
let(:link_1) { { url: 'https://gitlab.example.com/runbook', title: 'An example runbook', type: 'runbook' } }
let(:link_2) { { url: 'https://gitlab.example.com/other', title: 'An example link', type: 'other' } }
before do
fill_out_form_and_submit
end
it 'creates a new release when "Create release" is clicked', :aggregate_failures do
release = project.releases.last
expect(release.tag).to eq(tag_name)
expect(release.sha).to eq(commit.id)
expect(release.name).to eq(release_title)
expect(release.milestones.first.title).to eq(milestone_1.title)
expect(release.milestones.second.title).to eq(milestone_2.title)
expect(release.description).to eq(release_notes)
expect(release.links.length).to eq(2)
link = release.links.find { |l| l.link_type == link_1[:type] }
expect(link.url).to eq(link_1[:url])
expect(link.name).to eq(link_1[:title])
link = release.links.find { |l| l.link_type == link_2[:type] }
expect(link.url).to eq(link_2[:url])
expect(link.name).to eq(link_2[:title])
end
it 'redirects to the dedicated page for the newly created release' do
release = project.releases.last
expect(page).to have_current_path(project_release_path(project, release))
end
context 'when the release_show_page feature flag is disabled' do
let(:show_feature_flag) { false }
it 'redirects to the main "Releases" page' do
expect(page).to have_current_path(project_releases_path(project))
end
end
end
context 'when the "Cancel" button is clicked' do
before do
click_link_or_button 'Cancel'
wait_for_all_requests
end
it 'redirects to the main "Releases" page' do
expect(page).to have_current_path(project_releases_path(project))
end
context 'when the URL includes a back_url query parameter' do
let(:back_path) { project_releases_path(project, params: { page: 2 }) }
let(:new_page_url) do
new_project_release_path(project, params: { back_url: back_path })
end
it 'redirects to the page specified with back_url' do
expect(page).to have_current_path(back_path)
end
end
end
def fill_out_form_and_submit
fill_tag_name(tag_name)
select_create_from(branch.name)
fill_release_title(release_title)
select_milestone(milestone_1.title, and_tab: false)
select_milestone(milestone_2.title)
# Focus the "Release notes" field by clicking instead of tabbing
# because tabbing to the field requires too many tabs
# (see https://gitlab.com/gitlab-org/gitlab/-/issues/238619)
find_field('Release notes').click
fill_release_notes(release_notes)
# Tab past the "assets" documentation link
focused_element.send_keys(:tab)
fill_asset_link(link_1)
add_another_asset_link
fill_asset_link(link_2)
# Submit using the Control+Enter shortcut
focused_element.send_keys([:control, :enter])
wait_for_all_requests
end
def branch
project.repository.branches.find { |b| b.name == 'feature' }
end
def commit
branch.dereferenced_target
end
end
# frozen_string_literal: true
# These helpers fill fields on the "New Release" and
# "Edit Release" pages. They use the keyboard to navigate
# from one field to the next and assume that when
# they are called, the field to be filled out is already focused.
#
# Usage:
# describe "..." do
# include Spec::Support::Helpers::Features::ReleasesHelpers
# ...
#
# fill_tag_name("v1.0")
# select_create_from("my-feature-branch")
#
module Spec
module Support
module Helpers
module Features
module ReleasesHelpers
# Returns the element that currently has keyboard focus
def focused_element
page.driver.browser.switch_to.active_element
end
def fill_tag_name(tag_name, and_tab: true)
expect(focused_element).to eq(find_field('Tag name').native)
focused_element.send_keys(tag_name)
focused_element.send_keys(:tab) if and_tab
end
def select_create_from(branch_name, and_tab: true)
expect(focused_element).to eq(find('[data-testid="create-from-field"] button').native)
focused_element.send_keys(:enter)
# Wait for the dropdown to be rendered
page.find('.ref-selector .dropdown-menu')
focused_element.send_keys(branch_name)
# Wait for the search to return
page.find('.ref-selector .dropdown-item', text: branch_name, match: :first)
focused_element.send_keys(:arrow_down, :enter)
focused_element.send_keys(:tab) if and_tab
end
def fill_release_title(release_title, and_tab: true)
expect(focused_element).to eq(find_field('Release title').native)
focused_element.send_keys(release_title)
focused_element.send_keys(:tab) if and_tab
end
def select_milestone(milestone_title, and_tab: true)
expect(focused_element).to eq(find('[data-testid="milestones-field"] button').native)
focused_element.send_keys(:enter)
# Wait for the dropdown to be rendered
page.find('.gl-new-dropdown .dropdown-menu')
focused_element.send_keys(:tab, milestone_title)
# Wait for the search to return
page.find('.gl-new-dropdown .dropdown-item', text: milestone_title, match: :first)
focused_element.send_keys(:arrow_down, :arrow_down, :enter)
focused_element.send_keys(:tab) if and_tab
end
def fill_release_notes(release_notes, and_tab: true)
expect(focused_element).to eq(find_field('Release notes').native)
focused_element.send_keys(release_notes)
# Tab past the links at the bottom of the editor
focused_element.send_keys(:tab, :tab, :tab) if and_tab
end
def fill_asset_link(link, and_tab: true)
expect(focused_element['id']).to start_with('asset-url-')
focused_element.send_keys(link[:url], :tab, link[:title], :tab, link[:type])
# Tab past the "Remove asset link" button
focused_element.send_keys(:tab, :tab) if and_tab
end
# Click "Add another link" and tab back to the beginning of the new row
def add_another_asset_link
expect(focused_element).to eq(find_button('Add another link').native)
focused_element.send_keys(:enter,
[:shift, :tab],
[:shift, :tab],
[:shift, :tab],
[:shift, :tab])
end
end
end
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment