|
428 | 428 | expect(response.status).to eq(200)
|
429 | 429 | end
|
430 | 430 | end
|
| 431 | + |
| 432 | + context "with discourse-assign installed", if: defined?(DiscourseAssign) do |
| 433 | + let(:admin) { Fabricate(:admin) } |
| 434 | + fab!(:group) |
| 435 | + before do |
| 436 | + SiteSetting.solved_enabled = true |
| 437 | + SiteSetting.assign_enabled = true |
| 438 | + SiteSetting.enable_assign_status = true |
| 439 | + SiteSetting.assign_allowed_on_groups = "#{group.id}" |
| 440 | + SiteSetting.assigns_public = true |
| 441 | + SiteSetting.assignment_status_on_solve = "Done" |
| 442 | + SiteSetting.ignore_solved_topics_in_assigned_reminder = false |
| 443 | + group.add(p1.acting_user) |
| 444 | + group.add(user) |
| 445 | + |
| 446 | + sign_in(user) |
| 447 | + end |
| 448 | + describe "updating assignment status on solve when assignment_status_on_solve is set" do |
| 449 | + it "update all assignments to this status when a post is accepted" do |
| 450 | + assigner = Assigner.new(p1.topic, user) |
| 451 | + result = assigner.assign(user) |
| 452 | + expect(result[:success]).to eq(true) |
| 453 | + |
| 454 | + expect(p1.topic.assignment.status).to eq("New") |
| 455 | + DiscourseSolved.accept_answer!(p1, user) |
| 456 | + |
| 457 | + expect(p1.reload.custom_fields["is_accepted_answer"]).to eq("true") |
| 458 | + expect(p1.topic.assignment.reload.status).to eq("Done") |
| 459 | + end |
| 460 | + |
| 461 | + describe "assigned topic reminder" |
| 462 | + it "excludes solved topics when ignore_solved_topics_in_assigned_reminder is false" do |
| 463 | + other_topic = Fabricate(:topic, title: "Topic that should be there") |
| 464 | + post = Fabricate(:post, topic: other_topic, user: user) |
| 465 | + |
| 466 | + other_topic2 = Fabricate(:topic, title: "Topic that should be there2") |
| 467 | + post2 = Fabricate(:post, topic: other_topic2, user: user) |
| 468 | + |
| 469 | + Assigner.new(post.topic, user).assign(user) |
| 470 | + Assigner.new(post2.topic, user).assign(user) |
| 471 | + |
| 472 | + reminder = PendingAssignsReminder.new |
| 473 | + topics = reminder.send(:assigned_topics, user, order: :asc) |
| 474 | + expect(topics.to_a.length).to eq(2) |
| 475 | + |
| 476 | + DiscourseSolved.accept_answer!(post2, Discourse.system_user) |
| 477 | + topics = reminder.send(:assigned_topics, user, order: :asc) |
| 478 | + expect(topics.to_a.length).to eq(2) |
| 479 | + expect(topics).to include(other_topic2) |
| 480 | + |
| 481 | + SiteSetting.ignore_solved_topics_in_assigned_reminder = true |
| 482 | + topics = reminder.send(:assigned_topics, user, order: :asc) |
| 483 | + expect(topics.to_a.length).to eq(1) |
| 484 | + expect(topics).not_to include(other_topic2) |
| 485 | + expect(topics).to include(other_topic) |
| 486 | + end |
| 487 | + end |
| 488 | + end |
431 | 489 | end
|
0 commit comments