Welcome to mirror list, hosted at ThFree Co, Russian Federation.

contact_spec.rb « models « spec - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7be737802cd80ea7ebbaa6c1988a5c3a1c9fbba4 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#   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 Contact do
  describe 'aspect_memberships' do
    before do
      @user = alice
      @user2 = bob
    end
    it 'deletes dependent aspect memberships' do
      lambda{
        @user.contact_for(@user2.person).destroy
      }.should change(AspectMembership, :count).by(-1)
    end
  end

  describe 'validations' do
    let(:contact){Contact.new}

    it 'requires a user' do
      contact.valid?
      contact.errors.full_messages.should include "User can't be blank"
    end

    it 'requires a person' do
      contact.valid?
      contact.errors.full_messages.should include "Person can't be blank"
    end

    it 'ensures user is not making a contact for himself' do
      user = Factory.create(:user)

      contact.person = user.person
      contact.user = user

      contact.valid?
      contact.errors.full_messages.should include "Cannot create self-contact"
    end

    it 'has many aspects' do
      contact.aspects.should be_empty
    end

    it 'validates uniqueness' do
      user = Factory.create(:user)
      person = Factory(:person)

      contact2 = Contact.create(:user => user,
                                :person => person)

      contact2.should be_valid

      contact.user = user
      contact.person = person
      contact.should_not be_valid
    end
  end

  describe '#contacts' do
    before do
      @alice = alice
      @bob = bob
      @eve = eve
      @bob.aspects.create(:name => 'next')
      @people1 = []
      @people2 = []

      1.upto(5) do
        person = Factory(:person)
        bob.activate_contact(person, bob.aspects.first)
        @people1 << person
      end
      1.upto(5) do
        person = Factory(:person)
        bob.activate_contact(person, bob.aspects.last)
        @people2 << person
      end
    #eve <-> bob <-> alice
    end
    context 'on a contact for a local user' do
      before do
        @contact = @alice.contact_for(@bob.person)
      end
      it "returns the target local user's contacts that are in the same aspect" do
        @contact.contacts.map{|p| p.id}.should == [@eve.person].concat(@people1).map{|p| p.id}
      end
      it 'returns nothing if contacts_visible is false in that aspect' do
        asp = @bob.aspects.first
        asp.contacts_visible = false
        asp.save
        @contact.contacts.should == []
      end
      it 'returns no duplicate contacts' do
        [@alice, @eve].each {|c| @bob.add_contact_to_aspect(@bob.contact_for(c.person), @bob.aspects.last)}
        contact_ids = @contact.contacts.map{|p| p.id}
        contact_ids.uniq.should == contact_ids
      end
    end

    context 'on a contact for a remote user' do
      before do
        @contact = @bob.contact_for @people1.first
      end
      it 'returns an empty array' do
        @contact.contacts.should == []
      end
    end

  end


  context 'requesting' do
    before do
      @contact = Contact.new
      @user = Factory.create(:user)
      @person = Factory(:person)

      @contact.user = @user
      @contact.person = @person
    end

    describe '#generate_request' do
      it 'makes a request' do
        @contact.stub(:user).and_return(@user)
        request = @contact.generate_request

        request.sender.should == @user.person
        request.recipient.should == @person
      end
    end

    describe '#dispatch_request' do
      it 'pushes to people' do
        @contact.stub(:user).and_return(@user)
        m = mock()
        m.should_receive(:post)
        Postzord::Dispatch.should_receive(:new).and_return(m)
        @contact.dispatch_request
      end
      it 'persists no request' do
        @contact.dispatch_request
        Request.where(:sender_id => @user.person.id, :recipient_id => @person.id).should be_empty
      end
    end
  end
end