Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# 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 CommentsController do
render_views
let!(:user) { make_user }
let!(:aspect) { user.aspects.create(:name => "AWESOME!!") }
let!(:user2) { make_user }
let!(:aspect2) { user2.aspects.create(:name => "WIN!!") }
before do
sign_in :user, user
end
describe '#create' do
let(:comment_hash) {
{:comment =>{
:text =>"facebook, is that you?",
:post_id =>"#{@post.id}"}}
}
context "on a post from a friend" do
before do
friend_users(user, aspect, user2, aspect2)
@post = user2.post :status_message, :message => 'GIANTS', :to => aspect2.id
end
it 'comments' do
post :create, comment_hash
response.code.should == '201'
end
it "doesn't overwrite person_id" do
new_user = make_user
comment_hash[:comment][:person_id] = new_user.person.id.to_s
post :create, comment_hash
Comment.find_by_text(comment_hash[:comment][:text]).person_id.should == user.person.id
end
it "doesn't overwrite id" do
old_comment = user.comment("hello", :on => @post)
comment_hash[:comment][:id] = old_comment.id
post :create, comment_hash
old_comment.reload.text.should == 'hello'
end
end
context 'on a post from a stranger' do
before do
@post = user2.post :status_message, :message => 'GIANTS', :to => aspect2.id
end
it 'posts no comment' do
user.should_receive(:comment).exactly(0).times
post :create, comment_hash
response.code.should == '401'
end
end
end
describe 'destroy' do
before do
friend_users(user, aspect, user2, aspect2)
@post = user2.post :status_message, :message => 'GIANTS', :to => aspect2.id
@comment1 = user.comment("yay", :on => @post)
@comment2 = user2.comment("gogogo", :on => @post)
end
it 'deletes a comment made by that user' do
@post.reload.comments.count.should be 2
delete :destroy, :id => @comment1.id
Comment.find_by_id(@comment1.id).should be nil
@post.reload.comments.count.should be 1
end
it 'does not delete a comment made by another user' do
@post.reload.comments.count.should be 2
delete :destroy, :id => @comment2.id
Comment.find_by_id(@comment2.id).should_not be nil
@post.reload.comments.count.should be 2
end
end