DEV: correct flaky poll specs

They were relying on a pristine message bus, however current implementation
still uses redis, stuff can get held up and we can end up publishing
distributed cache messages in the middle invalidating the tests
This commit is contained in:
Sam Saffron 2019-05-17 16:16:02 +10:00
parent b983b6cb87
commit aeb7143aff

@ -15,7 +15,9 @@ describe ::DiscoursePoll::PollsController do
describe "#vote" do describe "#vote" do
it "works" do it "works" do
message = MessageBus.track_publish do channel = "/polls/#{poll.topic_id}"
message = MessageBus.track_publish(channel) do
put :vote, params: { put :vote, params: {
post_id: poll.id, poll_name: "poll", options: ["5c24fc1df56d764b550ceae1b9319125"] post_id: poll.id, poll_name: "poll", options: ["5c24fc1df56d764b550ceae1b9319125"]
}, format: :json }, format: :json
@ -28,7 +30,7 @@ describe ::DiscoursePoll::PollsController do
expect(json["poll"]["voters"]).to eq(1) expect(json["poll"]["voters"]).to eq(1)
expect(json["vote"]).to eq(["5c24fc1df56d764b550ceae1b9319125"]) expect(json["vote"]).to eq(["5c24fc1df56d764b550ceae1b9319125"])
expect(message.channel).to eq("/polls/#{poll.topic_id}") expect(message.channel).to eq(channel)
expect(message.user_ids).to eq(nil) expect(message.user_ids).to eq(nil)
expect(message.group_ids).to eq(nil) expect(message.group_ids).to eq(nil)
end end
@ -41,7 +43,9 @@ describe ::DiscoursePoll::PollsController do
]) ])
poll = Fabricate(:post, topic: topic, user: user, raw: "[poll]\n- A\n- B\n[/poll]") poll = Fabricate(:post, topic: topic, user: user, raw: "[poll]\n- A\n- B\n[/poll]")
message = MessageBus.track_publish do channel = "/polls/#{poll.topic_id}"
message = MessageBus.track_publish(channel) do
put :vote, params: { put :vote, params: {
post_id: poll.id, poll_name: "poll", options: ["5c24fc1df56d764b550ceae1b9319125"] post_id: poll.id, poll_name: "poll", options: ["5c24fc1df56d764b550ceae1b9319125"]
}, format: :json }, format: :json
@ -54,7 +58,7 @@ describe ::DiscoursePoll::PollsController do
expect(json["poll"]["voters"]).to eq(1) expect(json["poll"]["voters"]).to eq(1)
expect(json["vote"]).to eq(["5c24fc1df56d764b550ceae1b9319125"]) expect(json["vote"]).to eq(["5c24fc1df56d764b550ceae1b9319125"])
expect(message.channel).to eq("/polls/#{poll.topic_id}") expect(message.channel).to eq(channel)
expect(message.user_ids).to contain_exactly(user.id, user2.id) expect(message.user_ids).to contain_exactly(user.id, user2.id)
expect(message.group_ids).to eq(nil) expect(message.group_ids).to eq(nil)
end end
@ -66,7 +70,9 @@ describe ::DiscoursePoll::PollsController do
topic = Fabricate(:topic, category: category) topic = Fabricate(:topic, category: category)
poll = Fabricate(:post, topic: topic, user: user, raw: "[poll]\n- A\n- B\n[/poll]") poll = Fabricate(:post, topic: topic, user: user, raw: "[poll]\n- A\n- B\n[/poll]")
message = MessageBus.track_publish do channel = "/polls/#{poll.topic_id}"
message = MessageBus.track_publish(channel) do
put :vote, params: { put :vote, params: {
post_id: poll.id, poll_name: "poll", options: ["5c24fc1df56d764b550ceae1b9319125"] post_id: poll.id, poll_name: "poll", options: ["5c24fc1df56d764b550ceae1b9319125"]
}, format: :json }, format: :json
@ -79,7 +85,7 @@ describe ::DiscoursePoll::PollsController do
expect(json["poll"]["voters"]).to eq(1) expect(json["poll"]["voters"]).to eq(1)
expect(json["vote"]).to eq(["5c24fc1df56d764b550ceae1b9319125"]) expect(json["vote"]).to eq(["5c24fc1df56d764b550ceae1b9319125"])
expect(message.channel).to eq("/polls/#{poll.topic_id}") expect(message.channel).to eq(channel)
expect(message.user_ids).to eq(nil) expect(message.user_ids).to eq(nil)
expect(message.group_ids).to contain_exactly(group.id) expect(message.group_ids).to contain_exactly(group.id)
end end
@ -202,7 +208,9 @@ describe ::DiscoursePoll::PollsController do
describe "#toggle_status" do describe "#toggle_status" do
it "works for OP" do it "works for OP" do
message = MessageBus.track_publish do channel = "/polls/#{poll.topic_id}"
message = MessageBus.track_publish(channel) do
put :toggle_status, params: { put :toggle_status, params: {
post_id: poll.id, poll_name: "poll", status: "closed" post_id: poll.id, poll_name: "poll", status: "closed"
}, format: :json }, format: :json
@ -212,13 +220,15 @@ describe ::DiscoursePoll::PollsController do
json = ::JSON.parse(response.body) json = ::JSON.parse(response.body)
expect(json["poll"]["status"]).to eq("closed") expect(json["poll"]["status"]).to eq("closed")
expect(message.channel).to eq("/polls/#{poll.topic_id}") expect(message.channel).to eq(channel)
end end
it "works for staff" do it "works for staff" do
log_in(:moderator) log_in(:moderator)
message = MessageBus.track_publish do channel = "/polls/#{poll.topic_id}"
message = MessageBus.track_publish(channel) do
put :toggle_status, params: { put :toggle_status, params: {
post_id: poll.id, poll_name: "poll", status: "closed" post_id: poll.id, poll_name: "poll", status: "closed"
}, format: :json }, format: :json
@ -228,7 +238,7 @@ describe ::DiscoursePoll::PollsController do
json = ::JSON.parse(response.body) json = ::JSON.parse(response.body)
expect(json["poll"]["status"]).to eq("closed") expect(json["poll"]["status"]).to eq("closed")
expect(message.channel).to eq("/polls/#{poll.topic_id}") expect(message.channel).to eq(channel)
end end
it "ensures post is not trashed" do it "ensures post is not trashed" do
@ -305,7 +315,7 @@ describe ::DiscoursePoll::PollsController do
expect(json["voters"][first].size).to eq(1) expect(json["voters"][first].size).to eq(1)
user2 = log_in _user2 = log_in
get :voters, params: { get :voters, params: {
poll_name: "poll", post_id: public_poll_on_vote.id poll_name: "poll", post_id: public_poll_on_vote.id