246 lines
8.4 KiB
Ruby
246 lines
8.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
describe StatusMessagesController, :type => :controller do
|
|
before do
|
|
@aspect1 = alice.aspects.first
|
|
|
|
request.env["HTTP_REFERER"] = ""
|
|
sign_in alice, scope: :user
|
|
allow(@controller).to receive(:current_user).and_return(alice)
|
|
alice.reload
|
|
end
|
|
|
|
describe '#bookmarklet' do
|
|
it 'succeeds' do
|
|
get :bookmarklet
|
|
expect(response).to be_successful
|
|
end
|
|
|
|
it 'contains a complete html document' do
|
|
get :bookmarklet
|
|
|
|
doc = Nokogiri(response.body)
|
|
expect(doc.xpath('//head').count).to equal 1
|
|
expect(doc.xpath('//body').count).to equal 1
|
|
end
|
|
|
|
it 'accepts get params' do
|
|
get :bookmarklet, params: {
|
|
url: "https://www.youtube.com/watch?v=0Bmhjf0rKe8",
|
|
title: "Surprised Kitty",
|
|
notes: "cute kitty"
|
|
}
|
|
expect(response).to be_successful
|
|
end
|
|
end
|
|
|
|
describe '#new' do
|
|
it 'succeeds' do
|
|
get :new, params: {person_id: bob.person.id}
|
|
expect(response).to be_successful
|
|
end
|
|
|
|
it 'should redirect on desktop version' do
|
|
get :new
|
|
expect(response).to redirect_to(stream_path)
|
|
end
|
|
end
|
|
|
|
describe '#create' do
|
|
let(:text) { "facebook, is that you?" }
|
|
let(:status_message_hash) {
|
|
{
|
|
status_message: {text: text},
|
|
aspect_ids: [@aspect1.id.to_s]
|
|
}
|
|
}
|
|
|
|
it 'creates with valid json' do
|
|
post :create, params: status_message_hash, format: :json
|
|
expect(response.status).to eq(201)
|
|
end
|
|
|
|
it 'creates with invalid json' do
|
|
post :create, params: status_message_hash.merge(status_message: {text: "0123456789" * 7000}), format: :json
|
|
expect(response.status).to eq(403)
|
|
end
|
|
|
|
it 'creates with valid mobile' do
|
|
post :create, params: status_message_hash, format: :mobile
|
|
expect(response.status).to eq(302)
|
|
expect(response).to be_redirect
|
|
end
|
|
|
|
it 'creates with invalid mobile' do
|
|
post :create, params: status_message_hash.merge(status_message: {text: "0123456789" * 7000}), format: :mobile
|
|
expect(response.status).to eq(302)
|
|
expect(response).to be_redirect
|
|
end
|
|
|
|
it 'removes getting started from new users' do
|
|
expect(@controller).to receive(:remove_getting_started)
|
|
post :create, params: status_message_hash
|
|
end
|
|
|
|
context "with aspect_ids" do
|
|
before do
|
|
@aspect2 = alice.aspects.create(name: "another aspect")
|
|
end
|
|
|
|
it "takes one aspect as array in aspect_ids" do
|
|
post :create, params: status_message_hash, format: :json
|
|
expect(response.status).to eq(201)
|
|
status_message = StatusMessage.find_by_text(text)
|
|
expect(status_message.aspect_visibilities.map(&:aspect)).to eq([@aspect1])
|
|
end
|
|
|
|
it "takes one aspect as string in aspect_ids" do
|
|
post :create, params: status_message_hash.merge(aspect_ids: @aspect1.id.to_s), format: :json
|
|
expect(response.status).to eq(201)
|
|
status_message = StatusMessage.find_by_text(text)
|
|
expect(status_message.aspect_visibilities.map(&:aspect)).to eq([@aspect1])
|
|
end
|
|
|
|
it "takes public as array in aspect_ids" do
|
|
post :create, params: status_message_hash.merge(aspect_ids: ["public"]), format: :json
|
|
expect(response.status).to eq(201)
|
|
status_message = StatusMessage.find_by_text(text)
|
|
expect(status_message.public).to be_truthy
|
|
end
|
|
|
|
it "takes public as string in aspect_ids" do
|
|
post :create, params: status_message_hash.merge(aspect_ids: "public"), format: :json
|
|
expect(response.status).to eq(201)
|
|
status_message = StatusMessage.find_by_text(text)
|
|
expect(status_message.public).to be_truthy
|
|
end
|
|
|
|
it "takes all_aspects as array in aspect_ids" do
|
|
post :create, params: status_message_hash.merge(aspect_ids: ["all_aspects"]), format: :json
|
|
expect(response.status).to eq(201)
|
|
status_message = StatusMessage.find_by_text(text)
|
|
expect(status_message.aspect_visibilities.map(&:aspect)).to match_array([@aspect1, @aspect2])
|
|
end
|
|
|
|
it "takes all_aspects as string in aspect_ids" do
|
|
post :create, params: status_message_hash.merge(aspect_ids: "all_aspects"), format: :json
|
|
expect(response.status).to eq(201)
|
|
status_message = StatusMessage.find_by_text(text)
|
|
expect(status_message.aspect_visibilities.map(&:aspect)).to match_array([@aspect1, @aspect2])
|
|
end
|
|
|
|
it "responses 422 when aspect_ids don't contain any applicable aspect identifiers" do
|
|
bad_ids = [Aspect.ids.max.next, bob.aspects.first.id]
|
|
post :create, params: status_message_hash.merge(aspect_ids: bad_ids.to_s), format: :json
|
|
expect(response.status).to eq(422)
|
|
end
|
|
end
|
|
|
|
it "dispatches the post to the specified services" do
|
|
alice.services << Services::Twitter.new
|
|
status_message_hash[:services] = ["twitter"]
|
|
service_types = Service.titles(status_message_hash[:services])
|
|
expect(alice).to receive(:dispatch_post).with(anything, hash_including(service_types: service_types))
|
|
post :create, params: status_message_hash
|
|
end
|
|
|
|
it "works if services is a string" do
|
|
alice.services << Services::Twitter.new
|
|
status_message_hash[:services] = "twitter"
|
|
expect(alice).to receive(:dispatch_post).with(anything, hash_including(service_types: ["Services::Twitter"]))
|
|
post :create, params: status_message_hash
|
|
end
|
|
|
|
it "doesn't overwrite author_id" do
|
|
status_message_hash[:status_message][:author_id] = bob.person.id
|
|
post :create, params: status_message_hash
|
|
new_message = StatusMessage.find_by_text(text)
|
|
expect(new_message.author_id).to eq(alice.person.id)
|
|
end
|
|
|
|
it "doesn't overwrite id" do
|
|
old_status_message = alice.post(:status_message, :text => "hello", :to => @aspect1.id)
|
|
status_message_hash[:status_message][:id] = old_status_message.id
|
|
post :create, params: status_message_hash
|
|
expect(old_status_message.reload.text).to eq('hello')
|
|
end
|
|
|
|
it "calls dispatch post once subscribers is set" do
|
|
expect(alice).to receive(:dispatch_post) {|post, _opts|
|
|
expect(post.subscribers).to eq([bob.person])
|
|
}
|
|
post :create, params: status_message_hash
|
|
end
|
|
|
|
it 'respsects provider_display_name' do
|
|
status_message_hash.merge!(:aspect_ids => ['public'])
|
|
status_message_hash[:status_message].merge!(:provider_display_name => "mobile")
|
|
post :create, params: status_message_hash
|
|
expect(StatusMessage.first.provider_display_name).to eq('mobile')
|
|
end
|
|
|
|
it "has no participation" do
|
|
post :create, params: status_message_hash
|
|
new_message = StatusMessage.find_by_text(text)
|
|
expect(new_message.participations.count).to eq(0)
|
|
end
|
|
|
|
context 'with photos' do
|
|
before do
|
|
@photo1 = alice.build_post(:photo, :pending => true, :user_file=> File.open(photo_fixture_name), :to => @aspect1.id)
|
|
@photo2 = alice.build_post(:photo, :pending => true, :user_file=> File.open(photo_fixture_name), :to => @aspect1.id)
|
|
|
|
@photo1.save!
|
|
@photo2.save!
|
|
|
|
@hash = status_message_hash
|
|
@hash[:photos] = [@photo1.id.to_s, @photo2.id.to_s]
|
|
end
|
|
|
|
it "will post a photo without text" do
|
|
@hash.delete :text
|
|
post :create, params: @hash, format: :json
|
|
expect(response.status).to eq(201)
|
|
end
|
|
|
|
it "attaches all referenced photos" do
|
|
post :create, params: @hash, format: :json
|
|
status_message = StatusMessage.find_by_text(text)
|
|
expect(status_message.photos.map(&:id)).to match_array([@photo1, @photo2].map(&:id))
|
|
end
|
|
|
|
it "sets the pending bit of referenced photos" do
|
|
inlined_jobs do
|
|
post :create, params: @hash, format: :json
|
|
end
|
|
|
|
expect(@photo1.reload.pending).to be false
|
|
expect(@photo2.reload.pending).to be false
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#remove_getting_started' do
|
|
it 'removes the getting started flag from new users' do
|
|
alice.getting_started = true
|
|
alice.save
|
|
expect {
|
|
@controller.send(:remove_getting_started)
|
|
}.to change {
|
|
alice.reload.getting_started
|
|
}.from(true).to(false)
|
|
end
|
|
|
|
it 'does nothing for returning users' do
|
|
expect {
|
|
@controller.send(:remove_getting_started)
|
|
}.to_not change {
|
|
alice.reload.getting_started
|
|
}
|
|
end
|
|
end
|
|
end
|