mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
6e161d3e75
The most common thing that we do with fab! is: fab!(:thing) { Fabricate(:thing) } This commit adds a shorthand for this which is just simply: fab!(:thing) i.e. If you omit the block, then, by default, you'll get a `Fabricate`d object using the fabricator of the same name.
40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe "User selector", type: :system do
|
|
fab!(:topic)
|
|
fab!(:post) { Fabricate(:post, topic: topic) }
|
|
fab!(:current_user) { Fabricate(:admin) }
|
|
fab!(:user) { with_search_indexer_enabled { Fabricate(:user, username: "someone") } }
|
|
|
|
before do
|
|
current_user.activate
|
|
sign_in(current_user)
|
|
end
|
|
|
|
context "when autocompleting a username" do
|
|
it "correctly shows the user" do
|
|
visit("/t/-/#{topic.id}")
|
|
find(".btn-primary.create").click
|
|
find(".d-editor-input").fill_in(with: "Hello @som")
|
|
|
|
within(".autocomplete.ac-user") do |el|
|
|
expect(el).to have_selector(".selected .avatar[title=someone]")
|
|
expect(el.find(".selected .username")).to have_content("someone")
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when autocompleting a group" do
|
|
it "correctly shows the user" do
|
|
visit("/t/-/#{topic.id}")
|
|
find(".btn-primary.create").click
|
|
find(".d-editor-input").fill_in(with: "Hello @adm")
|
|
|
|
within(".autocomplete.ac-user") do |el|
|
|
expect(el).to have_selector(".selected .d-icon-users")
|
|
expect(el.find(".selected .username")).to have_content("admins")
|
|
end
|
|
end
|
|
end
|
|
end
|