Newer
Older
require 'spec_helper'
describe PrivateMessagesController do
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
60
61
62
63
64
65
66
67
68
69
before do
@user1 = alice
sign_in :user, @user1
end
describe '#new' do
it 'succeeds' do
get :new
response.should be_success
end
end
describe '#index' do
it 'succeeds' do
get :index
response.should be_success
end
it 'retrieves all messages for a user' do
@create_hash = { :participant_ids => [@user1.contacts.first.person.id, @user1.person.id],
:author => @user1.person, :message => "cool stuff" }
3.times do
PrivateMessage.create(@create_hash)
end
get :index
assigns[:messages].count.should == 3
end
end
describe '#create' do
it 'creates a private message' do
message_hash = {:private_message => {
:contact_ids => [@user1.contacts.first.id],
:message => "secret stuff"}}
lambda {
post :create, message_hash
}.should change(PrivateMessage, :count).by(1)
end
end
describe '#show' do
before do
@create_hash = { :participant_ids => [@user1.contacts.first.person.id, @user1.person.id],
:author => @user1.person, :message => "cool stuff" }
@message = PrivateMessage.create(@create_hash)
end
it 'succeeds' do
get :show, :id => @message.id
response.should be_success
assigns[:message].should == @message
end
it 'does not let you access messages where you are not a recipient' do
user2 = eve
sign_in :user, user2
get :show, :id => @message.id
response.code.should == '302'
end
end