mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:18:18 +08:00
8123538c94
As per: https://review.discourse.org/t/fix-never-allow-custom-emoji-to-be-marked-secure-8965/9072 https://review.discourse.org/t/feature-improving-bookmarks-part-2-topic-bookmarking-8954/9038
52 lines
1.5 KiB
Ruby
52 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe "bookmarks tasks" do
|
|
let(:user1) { Fabricate(:user) }
|
|
let(:user2) { Fabricate(:user) }
|
|
let(:user3) { Fabricate(:user) }
|
|
let(:post1) { Fabricate(:post) }
|
|
let(:post2) { Fabricate(:post) }
|
|
let(:post3) { Fabricate(:post) }
|
|
|
|
before do
|
|
Rake::Task.clear
|
|
Discourse::Application.load_tasks
|
|
|
|
create_post_actions_and_existing_bookmarks
|
|
end
|
|
|
|
def invoke_task(args = nil)
|
|
capture_stdout do
|
|
Rake::Task['bookmarks:sync_to_table'].invoke(args)
|
|
end
|
|
end
|
|
|
|
it "migrates all PostActions" do
|
|
invoke_task
|
|
|
|
expect(Bookmark.all.count).to eq(3)
|
|
end
|
|
|
|
it "does not create bookmarks that already exist in the bookmarks table for a user" do
|
|
Fabricate(:bookmark, user: user1, post: post1)
|
|
|
|
invoke_task
|
|
|
|
expect(Bookmark.all.count).to eq(3)
|
|
expect(Bookmark.where(post: post1, user: user1).count).to eq(1)
|
|
end
|
|
|
|
it "respects the sync_limit if provided and stops creating bookmarks at the limit (so this can be run progrssively" do
|
|
invoke_task(1)
|
|
expect(Bookmark.all.count).to eq(1)
|
|
end
|
|
|
|
def create_post_actions_and_existing_bookmarks
|
|
Fabricate(:post_action, user: user1, post: post1, post_action_type_id: PostActionType.types[:bookmark])
|
|
Fabricate(:post_action, user: user2, post: post2, post_action_type_id: PostActionType.types[:bookmark])
|
|
Fabricate(:post_action, user: user3, post: post3, post_action_type_id: PostActionType.types[:bookmark])
|
|
end
|
|
end
|