* Prepare factories and associations for Users::DeleteActivity specs * Altered user associations, delete the needed associations in Users::DeleteActivity * Moved and refined user deletion spec * Removed useless commented user associations * Refactored BackupData factory * Refactored ProfilePin factory * Refactored Reaction factory * Fixed specs: Keep default _type in factories or specify it in tests * Ok, notes shouldn't be deleted on user deletion * Fixed creating reactable for specs * Specify commentable/commentable_type explicitly when creating data for tests * Fixed typo in the comments spec * Removed unnneeded space * Added aggregate_failures for testing user associations deletion * Keep feedback_messages while deleting user activities
76 lines
2.7 KiB
Ruby
76 lines
2.7 KiB
Ruby
require "rails_helper"
|
|
require "requests/shared_examples/internal_policy_dependant_request"
|
|
|
|
RSpec.describe "/internal/buffer_updates", type: :request do
|
|
let(:user) { create(:user) }
|
|
let(:article) { create(:article, user_id: user.id) }
|
|
let(:comment) { create(:comment, user_id: user.id, commentable: article) }
|
|
|
|
it_behaves_like "an InternalPolicy dependant request", BufferUpdate do
|
|
let(:request) { post "/internal/buffer_updates" }
|
|
end
|
|
|
|
describe "POST /internal/buffer_updates" do
|
|
before do
|
|
sign_in user
|
|
user.add_role(:super_admin)
|
|
end
|
|
|
|
it "creates buffer update for tweet if tweet params are passed" do
|
|
post "/internal/buffer_updates",
|
|
params:
|
|
{ social_channel: "main_twitter", article_id: article.id, tweet: "Hello this is a test" }
|
|
expect(BufferUpdate.all.size).to eq(1)
|
|
post "/internal/buffer_updates",
|
|
params: { social_channel: "main_twitter", article_id: article.id, tweet: "Hello this is a test!" }
|
|
expect(BufferUpdate.all.size).to eq(2)
|
|
expect(BufferUpdate.last.article_id).to eq(article.id)
|
|
end
|
|
|
|
it "updates last buffered at" do
|
|
post "/internal/buffer_updates",
|
|
params:
|
|
{ social_channel: "main_twitter", article_id: article.id, tweet: "Hello this is a test" }
|
|
expect(article.reload.last_buffered).not_to eq(nil)
|
|
end
|
|
|
|
it "updates last buffered at with satellite buffer" do
|
|
post "/internal/buffer_updates",
|
|
params:
|
|
{ social_channel: "satellite_twitter", article_id: article.id, tweet: "Hello this is a test" }
|
|
expect(article.reload.last_buffered).not_to eq(nil)
|
|
end
|
|
|
|
it "updates last facebook buffered at" do
|
|
post "/internal/buffer_updates",
|
|
params:
|
|
{ social_channel: "facebook", article_id: article.id, tweet: "Hello this is a test" }
|
|
expect(article.reload.facebook_last_buffered).not_to eq(nil)
|
|
end
|
|
end
|
|
|
|
describe "PUT /internal/buffer_updates" do
|
|
before do
|
|
sign_in user
|
|
user.add_role(:super_admin)
|
|
end
|
|
|
|
let(:buffer_update) do
|
|
BufferUpdate.create(article_id: article.id,
|
|
composer_user_id: user.id,
|
|
body_text: "This is text - #{rand(100)}",
|
|
social_service_name: "twitter",
|
|
tag_id: "ruby",
|
|
status: "pending")
|
|
end
|
|
|
|
it "sends to buffer" do
|
|
put "/internal/buffer_updates/#{buffer_update.id}", params: {
|
|
status: "confirmed", body_text: "test"
|
|
}
|
|
expect(buffer_update.reload.buffer_response).not_to eq(nil)
|
|
expect(buffer_update.reload.status).to eq("confirmed")
|
|
expect(buffer_update.reload.approver_user_id).to eq(user.id)
|
|
end
|
|
end
|
|
end
|