File: unknown_spec.rb

package info (click to toggle)
ruby-mongo 2.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,332 kB
  • sloc: ruby: 45,579; makefile: 5
file content (185 lines) | stat: -rw-r--r-- 4,303 bytes parent folder | download | duplicates (4)
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
require 'spec_helper'

describe Mongo::Cluster::Topology::Unknown do

  let(:monitoring) do
    Mongo::Monitoring.new(monitoring: false)
  end

  let(:topology) do
    described_class.new({}, monitoring)
  end

  describe '.servers' do

    let(:servers) do
      topology.servers([ double('mongos'), double('standalone') ])
    end

    it 'returns an empty array' do
      expect(servers).to eq([ ])
    end
  end

  describe '.replica_set?' do

    it 'returns false' do
      expect(topology).to_not be_replica_set
    end
  end

  describe '.sharded?' do

    it 'returns false' do
      expect(topology).not_to be_sharded
    end
  end

  describe '.single?' do

    it 'returns false' do
      expect(topology).not_to be_single
    end
  end

  describe '.unknown?' do

    it 'returns true' do
      expect(topology.unknown?).to be(true)
    end
  end

  describe '#has_readable_servers?' do

    it 'returns false' do
      expect(topology).to_not have_readable_server(nil, nil)
    end
  end

  describe '#has_writable_servers?' do

    it 'returns false' do
      expect(topology).to_not have_writable_server(nil)
    end
  end

  describe '#add_hosts?' do

    context 'when the description is from an unknown server' do

      let(:description) do
        double('description').tap do |d|
          allow(d).to receive(:unknown?).and_return(true)
        end
      end

      it 'returns false' do
        expect(topology.add_hosts?(description, [])).to be(false)
      end
    end

    context 'when the description is from a ghost server' do

      let(:description) do
        double('description').tap do |d|
          allow(d).to receive(:unknown?).and_return(false)
          allow(d).to receive(:ghost?).and_return(true)
        end
      end

      it 'returns false' do
        expect(topology.add_hosts?(description, [])).to be(false)
      end
    end

    context 'when the description is not from an unknown or ghost' do

      let(:description) do
        double('description').tap do |d|
          allow(d).to receive(:unknown?).and_return(false)
          allow(d).to receive(:ghost?).and_return(false)
        end
      end

      it 'returns true' do
        expect(topology.add_hosts?(description, [])).to be(true)
      end
    end
  end

  describe '#remove_hosts?' do

    context 'when the description is from a standalone' do

      let(:description) do
        double('description').tap do |d|
          allow(d).to receive(:standalone?).and_return(true)
        end
      end

      it 'returns true' do
        expect(topology.remove_hosts?(description)).to be(true)
      end
    end

    context 'when the description is not from a standalone' do

      let(:description) do
        double('description').tap do |d|
          allow(d).to receive(:standalone?).and_return(false)
        end
      end

      it 'returns true' do
        expect(topology.remove_hosts?(description)).to be(false)
      end
    end
  end

  describe '#remove_server?' do

     context 'when the description is from a standalone' do

       let(:description) do
         double('description').tap do |d|
           allow(d).to receive(:standalone?).and_return(true)
           allow(d).to receive(:is_server?).and_return(true)
         end
       end

       context 'when the description is from the server in question' do

         it 'returns true' do
           expect(topology.remove_server?(description, double('server'))).to be(true)
         end
       end

       context 'when the description is not from the server in question' do

         let(:description) do
           double('description').tap do |d|
             allow(d).to receive(:standalone?).and_return(true)
             allow(d).to receive(:is_server?).and_return(false)
           end
         end

         it 'returns false' do
           expect(topology.remove_server?(description, double('server'))).to be(false)
         end
       end
     end

    context 'when the description is not from a standalone' do

      let(:description) do
        double('description').tap do |d|
          allow(d).to receive(:standalone?).and_return(false)
        end
      end

      it 'returns false' do
        expect(topology.remove_server?(description, double('server'))).to be(false)
      end
    end
  end
end