summaryrefslogtreecommitdiff
path: root/spec/unit/plugins/zpools_spec.rb
blob: 0ed6c343706d976b34bc56738689f024ea497141 (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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require "spec_helper"

describe Ohai::System, "zpools plugin" do
  let(:plugin) { get_plugin("zpools") }

  context "when on Linux" do
    let(:zpool_status_tank) do
      <<-EOST
  pool: tank
  state: ONLINE
  scan: scrub repaired 0 in 0h0m with 0 errors on Fri Jun  6 14:43:40 2014
  config:

    NAME                       STATE     READ WRITE CKSUM
    tank                       ONLINE       0     0     0
      raidz2-0                 ONLINE       0     0     0
        sdc                    ONLINE       0     0     0
        sdd                    ONLINE       0     0     0
        sde                    ONLINE       0     0     0
        sdf                    ONLINE       0     0     0
        sdg                    ONLINE       0     0     0
        sdh                    ONLINE       0     0     0
      raidz2-1                 ONLINE       0     0     0
        nvme0n1                ONLINE       0     0     0
        nvme1n1                ONLINE       0     0     0
        nvme2n1                ONLINE       0     0     0
        nvme3n1                ONLINE       0     0     0
        nvme4n1                ONLINE       0     0     0
        nvme5n1                ONLINE       0     0     0
      EOST
    end
    let(:zpool_out) do
      <<~EOZO
        rpool	109G	66.2G	42.8G	60%	1.00x	ONLINE	-
        tank	130T	4.91M	130T	0%	1.00x	ONLINE	-
      EOZO
    end
    let(:zpool_status_rpool) do
      <<-EOSR
  pool: rpool
  state: ONLINE
  scan: none requested
  config:

    NAME          STATE     READ WRITE CKSUM
    rpool         ONLINE       0     0     0
      mirror-0    ONLINE       0     0     0
        xvda      ONLINE       0     0     0
        xvdb      ONLINE       0     0     0

  errors: No known data errors
      EOSR
    end

    before do
      allow(plugin).to receive(:platform_family).and_return("rhel")
      allow(plugin).to receive(:collect_os).and_return(:linux)
      allow(plugin).to receive(:shell_out).with("zpool list -H -o name,size,alloc,free,cap,dedup,health,version").and_return(mock_shell_out(0, zpool_out, ""))
      allow(plugin).to receive(:shell_out).with("zpool status rpool -L").and_return(mock_shell_out(0, zpool_status_rpool, ""))
      allow(plugin).to receive(:shell_out).with("zpool status tank -L").and_return(mock_shell_out(0, zpool_status_tank, ""))
    end

    it "Has entries for both zpools" do
      plugin.run
      expect(plugin[:zpools][:rpool]).to be
      expect(plugin[:zpools][:tank]).to be
    end

    it "Has the correct pool size" do
      plugin.run
      expect(plugin[:zpools][:rpool][:pool_size]).to match("109G")
      expect(plugin[:zpools][:tank][:pool_size]).to match("130T")
    end

    it "Has the correct pool allocated size" do
      plugin.run
      expect(plugin[:zpools][:rpool][:pool_allocated]).to match("66.2G")
      expect(plugin[:zpools][:tank][:pool_allocated]).to match("4.91M")
    end

    it "Has the correct pool free size" do
      plugin.run
      expect(plugin[:zpools][:rpool][:pool_free]).to match("42.8G")
      expect(plugin[:zpools][:tank][:pool_free]).to match("130T")
    end

    it "Has the correct capacity_used" do
      plugin.run
      expect(plugin[:zpools][:rpool][:capacity_used]).to match("60%")
      expect(plugin[:zpools][:tank][:capacity_used]).to match("0%")
    end

    it "Has the correct dedup_factor" do
      plugin.run
      expect(plugin[:zpools][:rpool][:dedup_factor]).to match("1.00x")
      expect(plugin[:zpools][:tank][:dedup_factor]).to match("1.00x")
    end

    it "Has the correct health" do
      plugin.run
      expect(plugin[:zpools][:rpool][:health]).to match("ONLINE")
      expect(plugin[:zpools][:tank][:health]).to match("ONLINE")
    end

    it "Has the correct devices per zpool" do
      plugin.run
      expect(plugin[:zpools][:rpool][:devices].keys).to match(%w{xvda xvdb})
      expect(plugin[:zpools][:tank][:devices].keys).to match(%w{sdc sdd sde sdf sdg sdh nvme0n1 nvme1n1 nvme2n1 nvme3n1 nvme4n1 nvme5n1})
    end

    it "Won't have a version number" do
      plugin.run
      expect(plugin[:zpools][:rpool][:zpool_version]).to be_nil
      expect(plugin[:zpools][:tank][:zpool_version]).to be_nil
    end
  end

  context "when on Solaris2" do
    let(:zpool_status_tank) do
      <<~EOST
        pool: tank
        state: ONLINE
        scan: scrub repaired 0 in 0h0m with 0 errors on Fri Jun  6 14:43:40 2014
        config:

              NAME                       STATE     READ WRITE CKSUM
              tank                       ONLINE       0     0     0
                raidz2-0                 ONLINE       0     0     0
                  c1t50014EE209D1DBA9d0  ONLINE       0     0     0
                  c1t50014EE20A0ECED2d0  ONLINE       0     0     0
                  c1t50014EE20A106BFFd0  ONLINE       0     0     0
                  c1t50014EE20A1423E8d0  ONLINE       0     0     0
                  c1t50014EE20A145447d0  ONLINE       0     0     0
                  c1t50014EE20A29EE56d0  ONLINE       0     0     0
                raidz2-1                 ONLINE       0     0     0
                  c1t50014EE20A2B984Cd0  ONLINE       0     0     0
                  c1t50014EE20A2BBC78d0  ONLINE       0     0     0
                  c1t50014EE20A2BDCA9d0  ONLINE       0     0     0
                  c1t50014EE25F697DC4d0  ONLINE       0     0     0
                  c1t50014EE25F698BECd0  ONLINE       0     0     0
                  c1t50014EE25F6998DAd0  ONLINE       0     0     0
      EOST
    end
    let(:zpool_out) do
      <<~EOZO
        rpool   109G    66.2G   42.8G   60%     1.00x   ONLINE  34
        tank    130T    4.91M   130T    0%      1.00x   ONLINE  34
      EOZO
    end
    let(:zpool_status_rpool) do
      <<~EOSR
        pool: rpool
        state: ONLINE
        scan: resilvered 65.6G in 0h8m with 0 errors on Fri Jun  6 14:22:40 2014
        config:

              NAME          STATE     READ WRITE CKSUM
              rpool         ONLINE       0     0     0
                mirror-0    ONLINE       0     0     0
                  c3t5d0s0  ONLINE       0     0     0
                  c3t4d0s0  ONLINE       0     0     0

        errors: No known data errors
      EOSR
    end

    before do
      allow(plugin).to receive(:platform_family).and_return("solaris2")
      allow(plugin).to receive(:collect_os).and_return(:solaris2)
      allow(plugin).to receive(:shell_out).with("zpool list -H -o name,size,alloc,free,cap,dedup,health,version").and_return(mock_shell_out(0, zpool_out, ""))
      allow(plugin).to receive(:shell_out).with("su adm -c \"zpool status rpool\"").and_return(mock_shell_out(0, zpool_status_rpool, ""))
      allow(plugin).to receive(:shell_out).with("su adm -c \"zpool status tank\"").and_return(mock_shell_out(0, zpool_status_tank, ""))
    end

    it "Has entries for both zpools" do
      plugin.run
      expect(plugin[:zpools][:rpool]).to be
      expect(plugin[:zpools][:tank]).to be
    end

    it "Has the correct pool size" do
      plugin.run
      expect(plugin[:zpools][:rpool][:pool_size]).to match("109G")
      expect(plugin[:zpools][:tank][:pool_size]).to match("130T")
    end

    it "Has the correct pool allocated size" do
      plugin.run
      expect(plugin[:zpools][:rpool][:pool_allocated]).to match("66.2G")
      expect(plugin[:zpools][:tank][:pool_allocated]).to match("4.91M")
    end

    it "Has the correct pool free size" do
      plugin.run
      expect(plugin[:zpools][:rpool][:pool_free]).to match("42.8G")
      expect(plugin[:zpools][:tank][:pool_free]).to match("130T")
    end

    it "Has the correct capacity_used" do
      plugin.run
      expect(plugin[:zpools][:rpool][:capacity_used]).to match("60%")
      expect(plugin[:zpools][:tank][:capacity_used]).to match("0%")
    end

    it "Has the correct dedup_factor" do
      plugin.run
      expect(plugin[:zpools][:rpool][:dedup_factor]).to match("1.00x")
      expect(plugin[:zpools][:tank][:dedup_factor]).to match("1.00x")
    end

    it "Has the correct health" do
      plugin.run
      expect(plugin[:zpools][:rpool][:health]).to match("ONLINE")
      expect(plugin[:zpools][:tank][:health]).to match("ONLINE")
    end

    it "Has the correct number of devices" do
      plugin.run
      expect(plugin[:zpools][:rpool][:devices].keys.size).to match(2)
      expect(plugin[:zpools][:tank][:devices].keys.size).to match(12)
    end

    it "Has a version number" do
      plugin.run
      expect(plugin[:zpools][:rpool][:zpool_version]).to match("34")
      expect(plugin[:zpools][:tank][:zpool_version]).to match("34")
    end
  end
end