2019-12-11 12:04:02 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe BookmarksController do
|
2019-12-11 12:04:02 +08:00
|
|
|
let(:current_user) { Fabricate(:user) }
|
|
|
|
let(:bookmark_post) { Fabricate(:post) }
|
2022-03-30 10:43:11 +08:00
|
|
|
let(:bookmark_topic) { Fabricate(:topic) }
|
2020-02-13 14:26:02 +08:00
|
|
|
let(:bookmark_user) { current_user }
|
2019-12-11 12:04:02 +08:00
|
|
|
|
|
|
|
before { sign_in(current_user) }
|
|
|
|
|
|
|
|
describe "#create" do
|
2021-01-19 06:53:49 +08:00
|
|
|
it "rate limits creates" do
|
|
|
|
SiteSetting.max_bookmarks_per_day = 1
|
|
|
|
RateLimiter.enable
|
|
|
|
RateLimiter.clear_all!
|
|
|
|
|
|
|
|
post "/bookmarks.json",
|
|
|
|
params: {
|
2022-05-23 08:07:15 +08:00
|
|
|
bookmarkable_id: bookmark_post.id,
|
|
|
|
bookmarkable_type: "Post",
|
2021-01-19 06:53:49 +08:00
|
|
|
reminder_at: (Time.zone.now + 1.day).iso8601,
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
post "/bookmarks.json",
|
|
|
|
params: {
|
2022-05-23 08:07:15 +08:00
|
|
|
bookmarkable_id: bookmark_post.id,
|
|
|
|
bookmarkable_type: "Post",
|
2021-01-19 06:53:49 +08:00
|
|
|
}
|
|
|
|
expect(response.status).to eq(429)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "if the user reached the max bookmark limit" do
|
2021-04-09 11:06:35 +08:00
|
|
|
before { SiteSetting.max_bookmarks_per_user = 1 }
|
2021-01-19 06:53:49 +08:00
|
|
|
|
|
|
|
it "returns failed JSON with a 400 error" do
|
|
|
|
post "/bookmarks.json",
|
|
|
|
params: {
|
2022-05-23 08:07:15 +08:00
|
|
|
bookmarkable_id: bookmark_post.id,
|
|
|
|
bookmarkable_type: "Post",
|
2021-01-19 06:53:49 +08:00
|
|
|
reminder_at: (Time.zone.now + 1.day).iso8601,
|
|
|
|
}
|
|
|
|
post "/bookmarks.json",
|
|
|
|
params: {
|
2022-05-23 08:07:15 +08:00
|
|
|
bookmarkable_id: bookmark_post.id,
|
|
|
|
bookmarkable_type: "Post",
|
2021-01-19 06:53:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
expect(response.status).to eq(400)
|
|
|
|
user_bookmarks_url = "#{Discourse.base_url}/my/activity/bookmarks"
|
|
|
|
expect(response.parsed_body["errors"]).to include(
|
2021-04-09 11:06:35 +08:00
|
|
|
I18n.t(
|
|
|
|
"bookmarks.errors.too_many",
|
|
|
|
user_bookmarks_url: user_bookmarks_url,
|
|
|
|
limit: SiteSetting.max_bookmarks_per_user,
|
2023-01-09 19:18:21 +08:00
|
|
|
),
|
2021-01-19 06:53:49 +08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-05-23 08:07:15 +08:00
|
|
|
context "if the user already has bookmarked the record" do
|
2022-03-30 10:43:11 +08:00
|
|
|
before do
|
|
|
|
Fabricate(:bookmark, bookmarkable: bookmark_post, user: bookmark_user)
|
|
|
|
Fabricate(:bookmark, bookmarkable: bookmark_topic, user: bookmark_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns failed JSON with a 400 error" do
|
|
|
|
post "/bookmarks.json",
|
|
|
|
params: {
|
|
|
|
bookmarkable_id: bookmark_post.id,
|
|
|
|
bookmarkable_type: "Post",
|
|
|
|
reminder_at: (Time.zone.now + 1.day).iso8601,
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response.status).to eq(400)
|
|
|
|
expect(response.parsed_body["errors"]).to include(
|
|
|
|
I18n.t("bookmarks.errors.already_bookmarked", type: "Post"),
|
|
|
|
)
|
|
|
|
|
|
|
|
post "/bookmarks.json",
|
|
|
|
params: {
|
|
|
|
bookmarkable_id: bookmark_topic.id,
|
|
|
|
bookmarkable_type: "Topic",
|
|
|
|
reminder_at: (Time.zone.now + 1.day).iso8601,
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response.status).to eq(400)
|
|
|
|
expect(response.parsed_body["errors"]).to include(
|
|
|
|
I18n.t("bookmarks.errors.already_bookmarked", type: "Topic"),
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2019-12-11 12:04:02 +08:00
|
|
|
end
|
2020-02-13 14:26:02 +08:00
|
|
|
|
|
|
|
describe "#destroy" do
|
2022-05-23 08:07:15 +08:00
|
|
|
let!(:bookmark) { Fabricate(:bookmark, bookmarkable: bookmark_post, user: bookmark_user) }
|
2020-02-13 14:26:02 +08:00
|
|
|
|
|
|
|
it "destroys the bookmark" do
|
|
|
|
delete "/bookmarks/#{bookmark.id}.json"
|
|
|
|
expect(Bookmark.find_by(id: bookmark.id)).to eq(nil)
|
|
|
|
end
|
|
|
|
|
2022-03-30 10:43:11 +08:00
|
|
|
it "returns an indication of whether there are still bookmarks in the topic" do
|
|
|
|
delete "/bookmarks/#{bookmark.id}.json"
|
|
|
|
expect(Bookmark.find_by(id: bookmark.id)).to eq(nil)
|
|
|
|
expect(response.parsed_body["topic_bookmarked"]).to eq(false)
|
2022-05-23 08:07:15 +08:00
|
|
|
bm2 =
|
|
|
|
Fabricate(
|
|
|
|
:bookmark,
|
|
|
|
user: bookmark_user,
|
|
|
|
bookmarkable: Fabricate(:post, topic: bookmark_post.topic),
|
|
|
|
)
|
|
|
|
bm3 = Fabricate(:bookmark, user: bookmark_user, bookmarkable: bookmark_post.topic)
|
2022-03-30 10:43:11 +08:00
|
|
|
delete "/bookmarks/#{bm2.id}.json"
|
|
|
|
expect(Bookmark.find_by(id: bm2.id)).to eq(nil)
|
|
|
|
expect(response.parsed_body["topic_bookmarked"]).to eq(true)
|
2022-05-23 08:07:15 +08:00
|
|
|
delete "/bookmarks/#{bm3.id}.json"
|
|
|
|
expect(Bookmark.find_by(id: bm3.id)).to eq(nil)
|
|
|
|
expect(response.parsed_body["topic_bookmarked"]).to eq(false)
|
2022-03-30 10:43:11 +08:00
|
|
|
end
|
|
|
|
|
2020-02-13 14:26:02 +08:00
|
|
|
context "if the bookmark has already been destroyed" do
|
|
|
|
it "returns failed JSON with a 403 error" do
|
|
|
|
bookmark.destroy!
|
|
|
|
delete "/bookmarks/#{bookmark.id}.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
2020-05-07 23:04:12 +08:00
|
|
|
expect(response.parsed_body["errors"].first).to include(I18n.t("not_found"))
|
2020-02-13 14:26:02 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "if the bookmark does not belong to the user" do
|
|
|
|
let(:bookmark_user) { Fabricate(:user) }
|
|
|
|
|
|
|
|
it "returns failed JSON with a 403 error" do
|
|
|
|
delete "/bookmarks/#{bookmark.id}.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(403)
|
2020-05-07 23:04:12 +08:00
|
|
|
expect(response.parsed_body["errors"].first).to include(I18n.t("invalid_access"))
|
2020-02-13 14:26:02 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-12-11 12:04:02 +08:00
|
|
|
end
|