2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
require "spec_helper"
|
|
|
|
|
|
|
|
describe "User creates issue" do
|
|
|
|
let(:project) { create(:project_empty_repo, :public) }
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
context "when signed in as guest" do
|
|
|
|
before do
|
|
|
|
project.add_guest(user)
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
visit(new_project_issue_path(project))
|
|
|
|
end
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
it "creates issue", :js do
|
2018-05-09 12:01:36 +05:30
|
|
|
page.within(".issue-form") do
|
|
|
|
expect(page).to have_no_content("Assign to")
|
|
|
|
.and have_no_content("Labels")
|
|
|
|
.and have_no_content("Milestone")
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
expect(page.find('#issue_title')['placeholder']).to eq 'Title'
|
|
|
|
expect(page.find('#issue_description')['placeholder']).to eq 'Write a comment or drag your files here…'
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
issue_title = "500 error on profile"
|
|
|
|
|
|
|
|
fill_in("Title", with: issue_title)
|
2019-02-15 15:39:39 +05:30
|
|
|
first('.js-md').click
|
|
|
|
first('.qa-issuable-form-description').native.send_keys('Description')
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
click_button("Submit issue")
|
|
|
|
|
|
|
|
expect(page).to have_content(issue_title)
|
|
|
|
.and have_content(user.name)
|
|
|
|
.and have_content(project.name)
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(page).to have_selector('strong', text: 'Description')
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when signed in as developer", :js do
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
visit(new_project_issue_path(project))
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when previewing" do
|
|
|
|
it "previews content" do
|
|
|
|
form = first(".gfm-form")
|
|
|
|
textarea = first(".gfm-form textarea")
|
|
|
|
|
|
|
|
page.within(form) do
|
2018-12-13 13:39:08 +05:30
|
|
|
click_button("Preview")
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
preview = find(".js-md-preview") # this element is findable only when the "Preview" link is clicked.
|
|
|
|
|
|
|
|
expect(preview).to have_content("Nothing to preview.")
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
click_button("Write")
|
2018-05-09 12:01:36 +05:30
|
|
|
fill_in("Description", with: "Bug fixed :smile:")
|
2018-12-13 13:39:08 +05:30
|
|
|
click_button("Preview")
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
expect(preview).to have_css("gl-emoji")
|
|
|
|
expect(textarea).not_to be_visible
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with labels" do
|
2019-02-15 15:39:39 +05:30
|
|
|
let(:label_titles) { %w(bug feature enhancement) }
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
before do
|
2019-02-15 15:39:39 +05:30
|
|
|
label_titles.each do |title|
|
2018-05-09 12:01:36 +05:30
|
|
|
create(:label, project: project, title: title)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "creates issue" do
|
|
|
|
issue_title = "500 error on profile"
|
|
|
|
|
|
|
|
fill_in("Title", with: issue_title)
|
|
|
|
click_button("Label")
|
2019-02-15 15:39:39 +05:30
|
|
|
click_link(label_titles.first)
|
2018-05-09 12:01:36 +05:30
|
|
|
click_button("Submit issue")
|
|
|
|
|
|
|
|
expect(page).to have_content(issue_title)
|
|
|
|
.and have_content(user.name)
|
|
|
|
.and have_content(project.name)
|
2019-02-15 15:39:39 +05:30
|
|
|
.and have_content(label_titles.first)
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|