86 lines
2.5 KiB
Ruby
86 lines
2.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'Create GitLab branches from Jira', :js, feature_category: :integrations do
|
|
include ListboxHelpers
|
|
|
|
let_it_be(:alice) { create(:user, name: 'Alice') }
|
|
let_it_be(:bob) { create(:user, name: 'Bob') }
|
|
|
|
let_it_be(:project1) { create(:project, :repository, namespace: alice.namespace, title: 'foo') }
|
|
let_it_be(:project2) { create(:project, :repository, namespace: alice.namespace, title: 'bar') }
|
|
let_it_be(:project3) { create(:project, namespace: bob.namespace) }
|
|
|
|
let(:source_branch) { 'my-source-branch' }
|
|
let(:new_branch) { 'my-new-branch' }
|
|
|
|
before do
|
|
project2.repository.add_branch(alice, source_branch, 'master')
|
|
sign_in(alice)
|
|
end
|
|
|
|
def within_project_listbox(&block)
|
|
within('#project-select', &block)
|
|
end
|
|
|
|
it 'select project and branch and submit the form' do
|
|
visit new_jira_connect_branch_path(issue_key: 'ACME-123', issue_summary: 'My issue !@#$% title')
|
|
|
|
expect(page).to have_button('Create branch', disabled: true)
|
|
# initially, branch field should be hidden.
|
|
expect(page).not_to have_field('Branch name')
|
|
|
|
# Select project1
|
|
|
|
click_on 'Select a project'
|
|
|
|
within_project_listbox do
|
|
expect_listbox_item('Alice / foo')
|
|
expect_listbox_item('Alice / bar')
|
|
expect_no_listbox_item('Bob /')
|
|
|
|
fill_in 'Search', with: 'foo'
|
|
|
|
expect_no_listbox_item('Alice / bar')
|
|
|
|
select_listbox_item('Alice / foo')
|
|
end
|
|
|
|
expect(page).to have_field('Branch name', with: 'ACME-123-my-issue-title')
|
|
expect(page).to have_button('Create branch', disabled: false)
|
|
|
|
click_on 'master'
|
|
fill_in 'Search', with: source_branch
|
|
expect(page).not_to have_text(source_branch)
|
|
|
|
fill_in 'Search', with: 'master'
|
|
expect(page).to have_text('master')
|
|
|
|
# Switch to project2
|
|
|
|
find('span', text: 'Alice / foo', match: :first).click
|
|
|
|
within_project_listbox do
|
|
fill_in 'Search', with: ''
|
|
select_listbox_item('Alice / bar')
|
|
end
|
|
|
|
click_on 'master'
|
|
wait_for_requests
|
|
|
|
fill_in 'Search', with: source_branch
|
|
wait_for_requests
|
|
|
|
select_listbox_item(source_branch)
|
|
|
|
fill_in 'Branch name', with: new_branch
|
|
click_on 'Create branch'
|
|
|
|
expect(page).to have_text('New branch was successfully created. You can now close this window and return to Jira.')
|
|
|
|
expect(project1.commit(new_branch)).to be_nil
|
|
expect(project2.commit(new_branch)).not_to be_nil
|
|
expect(project2.commit(new_branch)).to eq(project2.commit(source_branch))
|
|
end
|
|
end
|