Newer
Older
# Copyright (c) 2010, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
require 'spec_helper'
describe StatusMessagesController do
danielvincent
a validé
render_views
let!(:user1) { Factory.create(:user) }
let!(:aspect1) { user1.aspects.create(:name => "AWESOME!!") }
let!(:user2) { Factory.create(:user) }
let!(:aspect2) { user2.aspects.create(:name => "WIN!!") }
danielvincent
a validé
connect_users(user1, aspect1, user2, aspect2)
sign_in :user, user1
@controller.stub!(:current_user).and_return(user1)
describe '#show' do
it 'succeeds' do
message = user1.build_post :status_message, :message => "ohai", :to => aspect1.id
user1.add_to_streams(message, aspect1.id)
user1.dispatch_post message, :to => aspect1.id
get :show, "id" => message.id.to_s
response.should be_success
describe '#create' do
{ :status_message => {
:public =>"true",
:message =>"facebook, is that you?",
:aspect_ids =>"#{aspect1.id}" }
}
it 'responds to js requests' do
post :create, status_message_hash.merge(:format => 'js')
response.status.should == 201
end
status_message_hash[:status_message][:person_id] = user2.person.id
new_message = StatusMessage.find_by_message(status_message_hash[:status_message][:message])
new_message.person_id.should == user1.person.id
end
it "doesn't overwrite id" do
old_status_message = user1.post(:status_message, :message => "hello", :to => aspect1.id)
status_message_hash[:status_message][:id] = old_status_message.id
post :create, status_message_hash
old_status_message.reload.message.should == 'hello'
end
it "dispatches all referenced photos" do
fixture_filename = 'button.png'
fixture_name = File.join(File.dirname(__FILE__), '..', 'fixtures', fixture_filename)
photo1 = user1.build_post(:photo, :user_file=> File.open(fixture_name), :to => aspect1.id)
photo2 = user1.build_post(:photo, :user_file=> File.open(fixture_name), :to => aspect1.id)
photo1.save!
photo2.save!
hash = status_message_hash
hash[:photos] = [photo1.id.to_s, photo2.id.to_s]
user1.should_receive(:dispatch_post).exactly(3).times
let!(:message) {user1.post(:status_message, :message => "hey", :to => aspect1.id)}
let!(:message2) {user2.post(:status_message, :message => "hey", :to => aspect2.id)}
delete :destroy, :id => message.id
StatusMessage.find_by_id(message.id).should be_nil
end
it 'will not let you destroy posts visible to you' do
delete :destroy, :id => message2.id
StatusMessage.find_by_id(message2.id).should be_true
end
it 'will not let you destory posts you do not own' do
delete :destroy, :id => message2.id
StatusMessage.find_by_id(message2.id).should be_true