summaryrefslogtreecommitdiff
path: root/spec/unit/plugins/linux/virtualization_spec.rb
blob: aac5c11a84a909223d674b04d7e10533ff9f1227 (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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
#
# Author:: Thom May (<thom@clearairturbulence.org>)
# Copyright:: Copyright (c) 2009 Opscode, Inc.
# 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 File.expand_path(File.dirname(__FILE__) + '/../../../spec_helper.rb')

describe Ohai::System, "Linux virtualization platform" do
  before(:each) do
    @plugin = get_plugin("linux/virtualization")
    allow(@plugin).to receive(:collect_os).and_return(:linux)

    # default to all requested Files not existing
    allow(File).to receive(:exists?).with("/proc/xen").and_return(false)
    allow(File).to receive(:exists?).with("/proc/xen/capabilities").and_return(false)
    allow(File).to receive(:exists?).with("/proc/modules").and_return(false)
    allow(File).to receive(:exists?).with("/proc/cpuinfo").and_return(false)
    allow(File).to receive(:exists?).with("/usr/sbin/dmidecode").and_return(false)
    allow(File).to receive(:exists?).with("/proc/self/status").and_return(false)
    allow(File).to receive(:exists?).with("/proc/bc/0").and_return(false)
    allow(File).to receive(:exists?).with("/proc/vz").and_return(false)
    allow(File).to receive(:exists?).with("/proc/self/cgroup").and_return(false)
    allow(File).to receive(:exists?).with("/.dockerenv").and_return(false)
    allow(File).to receive(:exists?).with("/.dockerinit").and_return(false)
    allow(File).to receive(:exists?).with("/proc/bus/pci/devices").and_return(false)
  end

  describe "when we are checking for xen" do
    it "should set xen guest if /proc/xen exists but /proc/xen/capabilities does not" do
      expect(File).to receive(:exists?).with("/proc/xen").and_return(true)
      expect(File).to receive(:exists?).with("/proc/xen/capabilities").and_return(false)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("xen")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:xen]).to eq("guest")
    end

    it "should set xen host if /proc/xen/capabilities contains control_d " do
      expect(File).to receive(:exists?).with("/proc/xen").and_return(true)
      expect(File).to receive(:exists?).with("/proc/xen/capabilities").and_return(true)
      allow(File).to receive(:read).with("/proc/xen/capabilities").and_return("control_d")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("xen")
      expect(@plugin[:virtualization][:role]).to eq("host")
      expect(@plugin[:virtualization][:systems][:xen]).to eq("host")
    end

    it "should set xen guest if /proc/xen/capabilities exists but is empty" do
      expect(File).to receive(:exists?).with("/proc/xen").and_return(true)
      expect(File).to receive(:exists?).with("/proc/xen/capabilities").and_return(true)
      allow(File).to receive(:read).with("/proc/xen/capabilities").and_return("")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("xen")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:xen]).to eq("guest")
    end

    it "should not set virtualization if xen isn't there" do
      expect(File).to receive(:exists?).at_least(:once).and_return(false)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end
  end

  describe "when we are checking for kvm" do
    it "should set kvm host if /proc/modules contains kvm" do
      expect(File).to receive(:exists?).with("/proc/modules").and_return(true)
      allow(File).to receive(:read).with("/proc/modules").and_return("kvm 165872  1 kvm_intel")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("kvm")
      expect(@plugin[:virtualization][:role]).to eq("host")
      expect(@plugin[:virtualization][:systems][:kvm]).to eq("host")
    end

    it "should set kvm guest if /proc/cpuinfo contains QEMU Virtual CPU" do
      expect(File).to receive(:exists?).with("/proc/cpuinfo").and_return(true)
      allow(File).to receive(:read).with("/proc/cpuinfo").and_return("QEMU Virtual CPU")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("kvm")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:kvm]).to eq("guest")
    end

    it "should set kvm guest if /proc/cpuinfo contains Common KVM processor" do
      expect(File).to receive(:exists?).with("/proc/cpuinfo").and_return(true)
      allow(File).to receive(:read).with("/proc/cpuinfo").and_return("Common KVM processor")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("kvm")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:kvm]).to eq("guest")
    end

    it "should set kvm guest if /proc/cpuinfo contains Common 32-bit KVM processor" do
      expect(File).to receive(:exists?).with("/proc/cpuinfo").and_return(true)
      allow(File).to receive(:read).with("/proc/cpuinfo").and_return("Common 32-bit KVM processor")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("kvm")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:kvm]).to eq("guest")
    end

    it "should not set virtualization if kvm isn't there" do
      expect(File).to receive(:exists?).at_least(:once).and_return(false)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end
  end

  describe "when we are checking for VirtualBox" do
    it "should set vbox host if /proc/modules contains vboxdrv" do
      expect(File).to receive(:exists?).with("/proc/modules").and_return(true)
      allow(File).to receive(:read).with("/proc/modules").and_return("vboxdrv 268268 3 vboxnetadp,vboxnetflt")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("vbox")
      expect(@plugin[:virtualization][:role]).to eq("host")
      expect(@plugin[:virtualization][:systems][:vbox]).to eq("host")
    end

    it "should set vbox gues if /proc/modules contains vboxguest" do
      expect(File).to receive(:exists?).with("/proc/modules").and_return(true)
      allow(File).to receive(:read).with("/proc/modules").and_return("vboxguest 214901 2 vboxsf, Live 0xffffffffa00db000 (OF)")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("vbox")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:vbox]).to eq("guest")
    end

    it "should not set virtualization if vbox isn't there" do
      expect(File).to receive(:exists?).at_least(:once).and_return(false)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end
  end

  describe "when we are parsing dmidecode" do
    before(:each) do
      expect(File).to receive(:exists?).with("/usr/sbin/dmidecode").and_return(true)
    end

    it "should set virtualpc guest if dmidecode detects Microsoft Virtual Machine" do
      ms_vpc_dmidecode=<<-MSVPC
System Information
  Manufacturer: Microsoft Corporation
  Product Name: Virtual Machine
  Version: VS2005R2
  Serial Number: 1688-7189-5337-7903-2297-1012-52
  UUID: D29974A4-BE51-044C-BDC6-EFBC4B87A8E9
  Wake-up Type: Power Switch
MSVPC
      allow(@plugin).to receive(:shell_out).with("dmidecode").and_return(mock_shell_out(0, ms_vpc_dmidecode, ""))
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("virtualpc")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:virtualpc]).to eq("guest")
    end

    it "should set vmware guest if dmidecode detects VMware Virtual Platform" do
      vmware_dmidecode=<<-VMWARE
System Information
  Manufacturer: VMware, Inc.
  Product Name: VMware Virtual Platform
  Version: None
  Serial Number: VMware-50 3f f7 14 42 d1 f1 da-3b 46 27 d0 29 b4 74 1d
  UUID: a86cc405-e1b9-447b-ad05-6f8db39d876a
  Wake-up Type: Power Switch
  SKU Number: Not Specified
  Family: Not Specified
VMWARE
      allow(@plugin).to receive(:shell_out).with("dmidecode").and_return(mock_shell_out(0, vmware_dmidecode, ""))
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("vmware")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:vmware]).to eq("guest")
    end

    it "should set vbox guest if dmidecode detects Oracle Corporation" do
      vbox_dmidecode=<<-VBOX
Base Board Information
  Manufacturer: Oracle Corporation
  Product Name: VirtualBox
  Version: 1.2
  Serial Number: 0
  Asset Tag: Not Specified
  Features:
        Board is a hosting board
  Location In Chasis: Not Specified
  Type: Motherboard
  Contained Object Handles: 0
VBOX
      allow(@plugin).to receive(:shell_out).with("dmidecode").and_return(mock_shell_out(0, vbox_dmidecode, ""))
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("vbox")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:vbox]).to eq("guest")
    end

    it "should set openstack guest if dmidecode detects OpenStack" do
      openstack_dmidecode=<<-OPENSTACK
System Information
        Manufacturer: Red Hat Inc.
        Product Name: OpenStack Nova
        Version: 2014.1.2-1.el6
        Serial Number: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
        UUID: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
        Wake-up Type: Power Switch
        SKU Number: Not Specified
        Family: Red Hat Enterprise Linux
OPENSTACK
      allow(@plugin).to receive(:shell_out).with("dmidecode").and_return(mock_shell_out(0, openstack_dmidecode, ""))
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("openstack")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:openstack]).to eq("guest")
    end

    it "sets kvm guest if dmidecode detects KVM" do
      kvm_dmidecode=<<-KVM
System Information
  Manufacturer: Red Hat
  Product Name: KVM
  Version: RHEL 7.0.0 PC (i440FX + PIIX, 1996)
  Serial Number: Not Specified
  UUID: 6E56CFE2-2088-4A46-906A-FC49EDC4072C
  Wake-up Type: Power Switch
  SKU Number: Not Specified
  Family: Red Hat Enterprise Linux
KVM
      allow(@plugin).to receive(:shell_out).with("dmidecode").and_return(mock_shell_out(0, kvm_dmidecode, ""))
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("kvm")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:kvm]).to eq("guest")
    end

    it "should run dmidecode and not set virtualization if nothing is detected" do
      allow(@plugin).to receive(:shell_out).with("dmidecode").and_return(mock_shell_out(0, "", ""))
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end
  end

  describe "when we are checking for Linux-VServer" do
    it "should set Linux-VServer host if /proc/self/status contains s_context: 0" do
      expect(File).to receive(:exists?).with("/proc/self/status").and_return(true)
      allow(File).to receive(:read).with("/proc/self/status").and_return("s_context: 0")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("linux-vserver")
      expect(@plugin[:virtualization][:role]).to eq("host")
      expect(@plugin[:virtualization][:systems]['linux-vserver']).to eq("host")
    end

    it "should set Linux-VServer host if /proc/self/status contains VxID: 0" do
      expect(File).to receive(:exists?).with("/proc/self/status").and_return(true)
      allow(File).to receive(:read).with("/proc/self/status").and_return("VxID: 0")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("linux-vserver")
      expect(@plugin[:virtualization][:role]).to eq("host")
      expect(@plugin[:virtualization][:systems]['linux-vserver']).to eq("host")
    end

    it "should set Linux-VServer host if /proc/self/status contains multiple space VxID:   0" do
      expect(File).to receive(:exists?).with("/proc/self/status").and_return(true)
      allow(File).to receive(:read).with("/proc/self/status").and_return("VxID:   0")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("linux-vserver")
      expect(@plugin[:virtualization][:role]).to eq("host")
      expect(@plugin[:virtualization][:systems]['linux-vserver']).to eq("host")
    end

    it "should set Linux-VServer host if /proc/self/status contains tabbed VxID:\t0" do
      expect(File).to receive(:exists?).with("/proc/self/status").and_return(true)
      allow(File).to receive(:read).with("/proc/self/status").and_return("VxID:\t0")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("linux-vserver")
      expect(@plugin[:virtualization][:role]).to eq("host")
      expect(@plugin[:virtualization][:systems]['linux-vserver']).to eq("host")
    end

    it "should set Linux-VServer guest if /proc/self/status contains s_context > 0" do
      expect(File).to receive(:exists?).with("/proc/self/status").and_return(true)
      allow(File).to receive(:read).with("/proc/self/status").and_return("s_context: 2")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("linux-vserver")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems]['linux-vserver']).to eq("guest")
    end

    it "should set Linux-VServer guest if /proc/self/status contains VxID > 0" do
      expect(File).to receive(:exists?).with("/proc/self/status").and_return(true)
      allow(File).to receive(:read).with("/proc/self/status").and_return("VxID: 2")
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("linux-vserver")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems]['linux-vserver']).to eq("guest")
    end

    it "should not set virtualization if Linux-VServer isn't there" do
      expect(File).to receive(:exists?).at_least(:once).and_return(false)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end
  end

  describe "when we are checking for openvz" do
    it "should set openvz host if /proc/bc/0 exists" do
      expect(File).to receive(:exists?).with("/proc/bc/0").and_return(true)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("openvz")
      expect(@plugin[:virtualization][:role]).to eq("host")
      expect(@plugin[:virtualization][:systems][:openvz]).to eq("host")
    end

    it "should set openvz guest if /proc/bc/0 doesn't exist and /proc/vz exists" do
      expect(File).to receive(:exists?).with("/proc/bc/0").and_return(false)
      expect(File).to receive(:exists?).with("/proc/vz").and_return(true)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("openvz")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:openvz]).to eq("guest")
    end

    it "should not set virtualization if openvz isn't there" do
      expect(File).to receive(:exists?).with("/proc/bc/0").and_return(false)
      expect(File).to receive(:exists?).with("/proc/vz").and_return(false)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end
  end

  describe "when we are checking for parallels" do
    it "should set parallels guest if /proc/bus/pci/devices contains 1ab84000" do
      devices=<<-DEVICES
0018	1ab84000	1f	            8001	               0	               0	               0	               0	               0	               0	              20	               0	               0	               0	               0	               0	               0	prl_tg
0028	1af41000	17	            8201	        ee000000	               0	               0	               0	               0	               0	              40	            1000	               0	               0	               0	               0	               0	virtio-pci
      DEVICES
      expect(File).to receive(:exists?).with("/proc/bus/pci/devices").and_return(true)
      allow(File).to receive(:read).with("/proc/bus/pci/devices").and_return(devices)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("parallels")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:parallels]).to eq("guest")
    end

    it "should not set virtualization if /proc/bus/pci/devices not contains 1ab84000" do
      devices=<<-DEVICES
0030	1af41000	a	            8401	        ee040000	               0	               0	               0	               0	               0	              40	            1000	               0	               0	               0	               0	               0	virtio-pci
0050	10110022	0	               0	               0	               0	               0	               0	               0	               0	               0	               0	               0	               0	               0	               0	               0
      DEVICES
      expect(File).to receive(:exists?).with("/proc/bus/pci/devices").and_return(true)
      allow(File).to receive(:read).with("/proc/bus/pci/devices").and_return(devices)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end
  end

  describe "when we are checking for lxc" do
    it "should set lxc guest if /proc/self/cgroup exist and there are /lxc/<hexadecimal> mounts" do
      self_cgroup=<<-CGROUP
8:blkio:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
7:net_cls:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
6:freezer:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
5:devices:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
4:memory:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
3:cpuacct:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
2:cpu:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
1:cpuset:/
CGROUP
      expect(File).to receive(:exists?).with("/proc/self/cgroup").and_return(true)
      allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("lxc")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:lxc]).to eq("guest")
    end

    it "should set lxc guest if /proc/self/cgroup exist and there are /lxc/<name> mounts" do
      self_cgroup=<<-CGROUP
8:blkio:/lxc/vanilla
7:net_cls:/lxc/vanilla
6:freezer:/lxc/vanilla
5:devices:/lxc/vanilla
4:memory:/lxc/vanilla
3:cpuacct:/lxc/vanilla
2:cpu:/lxc/vanilla
1:cpuset:/lxc/vanilla
CGROUP
      expect(File).to receive(:exists?).with("/proc/self/cgroup").and_return(true)
      allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("lxc")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:lxc]).to eq("guest")
    end

    it "should set not set anything if /proc/self/cgroup exist and the cgroup is named arbitrarily, it isn't necessarily lxc." do
      self_cgroup=<<-CGROUP
8:blkio:/Charlie
7:net_cls:/Charlie
6:freezer:/Charlie
5:devices:/Charlie
4:memory:/Charlie
3:cpuacct:/Charlie
2:cpu:/Charlie
1:cpuset:/Charlie
CGROUP
      expect(File).to receive(:exists?).with("/proc/self/cgroup").and_return(true)
      allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end

    context "/proc/self/cgroup only has / mounts" do
      before(:each) do
        self_cgroup=<<-CGROUP
8:blkio:/
7:net_cls:/
6:freezer:/
5:devices:/
4:memory:/
3:cpuacct:/
2:cpu:/
1:cpuset:/
CGROUP
        expect(File).to receive(:exists?).with("/proc/self/cgroup").and_return(true)
        allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup)
      end

      it "sets lxc host if lxc-version exists" do
        allow(@plugin).to receive(:lxc_version_exists?).and_return("/usr/bin/lxc-version")
        @plugin.run
        expect(@plugin[:virtualization][:system]).to eq("lxc")
        expect(@plugin[:virtualization][:role]).to eq("host")
        expect(@plugin[:virtualization][:systems][:lxc]).to eq("host")
      end

      it "does not set the old virtualization attributes if they are already set" do
        allow(@plugin).to receive(:lxc_version_exists?).and_return("/usr/bin/lxc-version")
        @plugin[:virtualization] = Mash.new
        @plugin[:virtualization][:system] = "the cloud"
        @plugin[:virtualization][:role] = "cumulonimbus"
        @plugin.run
        expect(@plugin[:virtualization][:system]).not_to eq("lxc")
        expect(@plugin[:virtualization][:role]).not_to eq("host")
      end

      it "does not set lxc host if lxc-version does not exist" do
        allow(@plugin).to receive(:lxc_version_exists?).and_return(false)
        @plugin.run
        expect(@plugin[:virtualization][:system]).to be_nil
        expect(@plugin[:virtualization][:role]).to be_nil
        expect(@plugin[:virtualization]).to eq({'systems' => {}})
      end

    end

    it "should not set virtualization if /proc/self/cgroup isn't there" do
      expect(File).to receive(:exists?).with("/proc/self/cgroup").and_return(false)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end
  end

  describe "when we are checking for docker" do
    it "should set docker guest if /proc/self/cgroup exist and there are /docker/<hexadecimal> mounts" do
      self_cgroup=<<-CGROUP
8:blkio:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
7:net_cls:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
6:freezer:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
5:devices:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
4:memory:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
3:cpuacct:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
2:cpu:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc
1:cpuset:/
CGROUP
      allow(File).to receive(:exists?).with("/proc/self/cgroup").and_return(true)
      allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("docker")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:docker]).to eq("guest")
    end

    it "should set docker guest if /proc/self/cgroup exist and there are /docker/<name> mounts" do
      self_cgroup=<<-CGROUP
8:blkio:/docker/vanilla
7:net_cls:/docker/vanilla
6:freezer:/docker/vanilla
5:devices:/docker/vanilla
4:memory:/docker/vanilla
3:cpuacct:/docker/vanilla
2:cpu:/docker/vanilla
1:cpuset:/docker/vanilla
CGROUP
      allow(File).to receive(:exists?).with("/proc/self/cgroup").and_return(true)
      allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("docker")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:docker]).to eq("guest")
    end

    it "should set not set anything if /proc/self/cgroup exist and the cgroup is named arbitrarily, it isn't necessarily lxc." do
      self_cgroup=<<-CGROUP
8:blkio:/Charlie
7:net_cls:/Charlie
6:freezer:/Charlie
5:devices:/Charlie
4:memory:/Charlie
3:cpuacct:/Charlie
2:cpu:/Charlie
1:cpuset:/Charlie
CGROUP
      allow(File).to receive(:exists?).with("/proc/self/cgroup").and_return(true)
      allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end

    context "/proc/self/cgroup only has / mounts" do
      before(:each) do
        self_cgroup=<<-CGROUP
8:blkio:/
7:net_cls:/
6:freezer:/
5:devices:/
4:memory:/
3:cpuacct:/
2:cpu:/
1:cpuset:/
CGROUP
        allow(File).to receive(:exists?).with("/proc/self/cgroup").and_return(true)
        allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup)
        @plugin.run
        expect(@plugin[:virtualization]).to eq({'systems' => {}})
      end

    end

    it "does not set the old virtualization attributes if they are already set" do
      allow(@plugin).to receive(:docker_exists?).and_return("/usr/bin/docker")
      @plugin[:virtualization] = Mash.new
      @plugin[:virtualization][:system] = "the cloud"
      @plugin[:virtualization][:role] = "cumulonimbus"
      @plugin.run
      expect(@plugin[:virtualization][:system]).not_to eq("docker")
      expect(@plugin[:virtualization][:role]).not_to eq("host")
    end

    it "does not set docker host if docker does not exist" do
      allow(@plugin).to receive(:docker_exists?).and_return(false)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to be_nil
      expect(@plugin[:virtualization][:role]).to be_nil
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end

    it "should not set virtualization if /proc/self/cgroup isn't there" do
      allow(File).to receive(:exists?).with("/proc/self/cgroup").and_return(false)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end

    it "should set virtualization if /.dockerenv exists" do
      allow(File).to receive(:exists?).with("/.dockerenv").and_return(true)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("docker")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:docker]).to eq("guest")
    end

    it "should set virtualization if /.dockerinit exists" do
      allow(File).to receive(:exists?).with("/.dockerinit").and_return(true)
      @plugin.run
      expect(@plugin[:virtualization][:system]).to eq("docker")
      expect(@plugin[:virtualization][:role]).to eq("guest")
      expect(@plugin[:virtualization][:systems][:docker]).to eq("guest")
    end

    it "should not set virtualization if /.dockerenv or /.dockerinit doesn't exists" do
      allow(File).to receive(:exists?).with("/.dockerenv").and_return(false)
      allow(File).to receive(:exists?).with("/.dockerinit").and_return(false)
      @plugin.run
      expect(@plugin[:virtualization]).to eq({'systems' => {}})
    end

  end

  it "should not set virtualization if no tests match" do
    @plugin.run
    expect(@plugin[:virtualization]).to eq({'systems' => {}})
  end
end