File: rpm_spec.rb

package info (click to toggle)
puppet-agent 7.23.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 19,092 kB
  • sloc: ruby: 245,074; sh: 456; makefile: 38; xml: 33
file content (674 lines) | stat: -rw-r--r-- 23,527 bytes parent folder | download | duplicates (2)
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
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
require 'spec_helper'

describe Puppet::Type.type(:package).provider(:rpm) do
  let (:packages) do
    <<-RPM_OUTPUT
    'cracklib-dicts 0 2.8.9 3.3 x86_64
    basesystem 0 8.0 5.1.1.el5.centos noarch
    chkconfig 0 1.3.30.2 2.el5 x86_64
    myresource 0 1.2.3.4 5.el4 noarch
    mysummaryless 0 1.2.3.4 5.el4 noarch
    tomcat 1 1.2.3.4 5.el4 x86_64
    kernel 1 1.2.3.4 5.el4 x86_64
    kernel 1 1.2.3.6 5.el4 x86_64
    '
    RPM_OUTPUT
  end

  let(:resource_name) { 'myresource' }
  let(:resource) do
    Puppet::Type.type(:package).new(
      :name     => resource_name,
      :ensure   => :installed,
      :provider => 'rpm'
    )
  end

  let(:provider) do
    provider = subject()
    provider.resource = resource
    provider
  end

  let(:nevra_format) { %Q{%{NAME} %|EPOCH?{%{EPOCH}}:{0}| %{VERSION} %{RELEASE} %{ARCH}\\n} }
  let(:execute_options) do
    {:failonfail => true, :combine => true, :custom_environment => {}}
  end
  let(:rpm_version) { "RPM version 5.0.0\n" }

  before(:each) do
    allow(Puppet::Util).to receive(:which).with("rpm").and_return("/bin/rpm")
    allow(described_class).to receive(:which).with("rpm").and_return("/bin/rpm")
    described_class.instance_variable_set("@current_version", nil)
    expect(Puppet::Type::Package::ProviderRpm).to receive(:execute)
      .with(["/bin/rpm", "--version"])
      .and_return(rpm_version).at_most(:once)
    expect(Puppet::Util::Execution).to receive(:execute)
      .with(["/bin/rpm", "--version"], execute_options)
      .and_return(Puppet::Util::Execution::ProcessOutput.new(rpm_version, 0)).at_most(:once)
  end

  describe 'provider features' do
    it { is_expected.to be_versionable }
    it { is_expected.to be_install_options }
    it { is_expected.to be_uninstall_options }
    it { is_expected.to be_virtual_packages }
  end

  describe "self.instances" do
    describe "with a modern version of RPM" do
      it "includes all the modern flags" do
        expect(Puppet::Util::Execution).to receive(:execpipe)
          .with("/bin/rpm -qa --nosignature --nodigest --qf '#{nevra_format}' | sort")
          .and_yield(packages)

        described_class.instances
      end
    end

    describe "with a version of RPM < 4.1" do
      let(:rpm_version) { "RPM version 4.0.2\n" }

      it "excludes the --nosignature flag" do
        expect(Puppet::Util::Execution).to receive(:execpipe)
          .with("/bin/rpm -qa  --nodigest --qf '#{nevra_format}' | sort")
          .and_yield(packages)

        described_class.instances
      end
    end

    describe "with a version of RPM < 4.0.2" do
      let(:rpm_version) { "RPM version 3.0.5\n" }

      it "excludes the --nodigest flag" do
        expect(Puppet::Util::Execution).to receive(:execpipe)
        .with("/bin/rpm -qa   --qf '#{nevra_format}' | sort")
        .and_yield(packages)

        described_class.instances
      end
    end

    it "returns an array of packages" do
      expect(Puppet::Util::Execution).to receive(:execpipe)
        .with("/bin/rpm -qa --nosignature --nodigest --qf '#{nevra_format}' | sort")
        .and_yield(packages)

      installed_packages = described_class.instances

      expect(installed_packages[0].properties).to eq(
        {
          :provider => :rpm,
          :name => "cracklib-dicts",
          :epoch => "0",
          :version => "2.8.9",
          :release => "3.3",
          :arch => "x86_64",
          :ensure => "2.8.9-3.3",
        }
      )
      expect(installed_packages[1].properties).to eq(
        {
          :provider => :rpm,
          :name => "basesystem",
          :epoch => "0",
          :version => "8.0",
          :release => "5.1.1.el5.centos",
          :arch => "noarch",
          :ensure => "8.0-5.1.1.el5.centos",
        }
      )
      expect(installed_packages[2].properties).to eq(
        {
          :provider => :rpm,
          :name => "chkconfig",
          :epoch => "0",
          :version => "1.3.30.2",
          :release => "2.el5",
          :arch => "x86_64",
          :ensure => "1.3.30.2-2.el5",
        }
      )
      expect(installed_packages[3].properties).to eq(
        {
          :provider => :rpm,
          :name => "myresource",
          :epoch => "0",
          :version => "1.2.3.4",
          :release => "5.el4",
          :arch => "noarch",
          :ensure => "1.2.3.4-5.el4",
        }
      )
      expect(installed_packages[4].properties).to eq(
        {
          :provider    => :rpm,
          :name        => "mysummaryless",
          :epoch       => "0",
          :version     => "1.2.3.4",
          :release     => "5.el4",
          :arch        => "noarch",
          :ensure      => "1.2.3.4-5.el4",
        }
      )
      expect(installed_packages[5].properties).to eq(
        {
          :provider    => :rpm,
          :name        => "tomcat",
          :epoch       => "1",
          :version     => "1.2.3.4",
          :release     => "5.el4",
          :arch        => "x86_64",
          :ensure      => "1:1.2.3.4-5.el4",
        }
      )
      expect(installed_packages[6].properties).to eq(
        {
          :provider    => :rpm,
          :name        => "kernel",
          :epoch       => "1",
          :version     => "1.2.3.4",
          :release     => "5.el4",
          :arch        => "x86_64",
          :ensure      => "1:1.2.3.4-5.el4; 1:1.2.3.6-5.el4",
        }
      )
    end
  end

  describe "#install" do
    let(:resource) do
      Puppet::Type.type(:package).new(
        :name     => 'myresource',
        :ensure   => :installed,
        :source   => '/path/to/package'
      )
    end

    describe "when not already installed" do
      it "only includes the '-i' flag" do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", ["-i"], '/path/to/package'], execute_options)
        provider.install
      end
    end

    describe "when installed with options" do
      let(:resource) do
        Puppet::Type.type(:package).new(
          :name            => resource_name,
          :ensure          => :installed,
          :provider        => 'rpm',
          :source          => '/path/to/package',
          :install_options => ['-D', {'--test' => 'value'}, '-Q']
        )
      end

      it "includes the options" do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", ["-i", "-D", "--test=value", "-Q"], '/path/to/package'], execute_options)
        provider.install
      end
    end

    describe "when an older version is installed" do
      before(:each) do
        # Force the provider to think a version of the package is already installed
        # This is real hacky. I'm sorry.  --jeffweiss 25 Jan 2013
        provider.instance_variable_get('@property_hash')[:ensure] = '1.2.3.3'
      end

      it "includes the '-U --oldpackage' flags" do
         expect(Puppet::Util::Execution).to receive(:execute)
           .with(["/bin/rpm", ["-U", "--oldpackage"], '/path/to/package'], execute_options)
         provider.install
      end
    end
  end

  describe "#latest" do
    it "retrieves version string after querying rpm for version from source file" do
      expect(resource).to receive(:[]).with(:source).and_return('source-string')
      expect(Puppet::Util::Execution).to receive(:execute)
        .with(["/bin/rpm", "-q", "--qf", "#{nevra_format}", "-p", "source-string"])
        .and_return(Puppet::Util::Execution::ProcessOutput.new("myresource 0 1.2.3.4 5.el4 noarch\n", 0))
      expect(provider.latest).to eq("1.2.3.4-5.el4")
    end

    it "raises an error if the rpm command fails" do
      expect(resource).to receive(:[]).with(:source).and_return('source-string')
      expect(Puppet::Util::Execution).to receive(:execute)
        .with(["/bin/rpm", "-q", "--qf", "#{nevra_format}", "-p", "source-string"])
        .and_raise(Puppet::ExecutionFailure, 'rpm command failed')

      expect {
        provider.latest
      }.to raise_error(Puppet::Error, 'rpm command failed')
    end
  end

  describe "#uninstall" do
    let(:resource) do
      Puppet::Type.type(:package).new(
        :name   => resource_name,
        :ensure => :installed
      )
    end

    describe "on an ancient RPM" do
      let(:rpm_version) { "RPM version 3.0.6\n" }

      before(:each) do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", "-q", resource_name, '', '', '--qf', "#{nevra_format}"], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new("#{resource_name} 0 1.2.3.4 5.el4 noarch\n", 0))
      end

      it "excludes the architecture from the package name" do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", ["-e"], resource_name], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new('', 0)).at_most(:once)
        provider.uninstall
      end
    end

    describe "on a modern RPM" do
      let(:rpm_version) { "RPM version 4.10.0\n" }


      before(:each) do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", "-q", resource_name, '--nosignature', '--nodigest', "--qf", "#{nevra_format}"], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new("#{resource_name} 0 1.2.3.4 5.el4 noarch\n", 0))
      end

      it "excludes the architecture from the package name" do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", ["-e"], resource_name], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new('', 0)).at_most(:once)
        provider.uninstall
      end
    end

    describe "on a modern RPM when architecture is specified" do
      let(:rpm_version) { "RPM version 4.10.0\n" }

      let(:resource) do
        Puppet::Type.type(:package).new(
          :name   => "#{resource_name}.noarch",
          :ensure => :absent,
        )
      end

      before(:each) do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", "-q", "#{resource_name}.noarch", '--nosignature', '--nodigest', "--qf", "#{nevra_format}"], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new("#{resource_name} 0 1.2.3.4 5.el4 noarch\n", 0))
      end

      it "includes the architecture in the package name" do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", ["-e"], "#{resource_name}.noarch"], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new('', 0)).at_most(:once)
        provider.uninstall
      end
    end

    describe "when version and release are specified" do
      let(:resource) do
        Puppet::Type.type(:package).new(
          :name   => "#{resource_name}-1.2.3.4-5.el4",
          :ensure => :absent,
        )
      end

      before(:each) do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", "-q", "#{resource_name}-1.2.3.4-5.el4", '--nosignature', '--nodigest', "--qf", "#{nevra_format}"], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new("#{resource_name} 0 1.2.3.4 5.el4 noarch\n", 0))
      end

      it "includes the version and release in the package name" do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", ["-e"], "#{resource_name}-1.2.3.4-5.el4"], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new('', 0)).at_most(:once)
        provider.uninstall
      end
    end

    describe "when only version is specified" do
      let(:resource) do
        Puppet::Type.type(:package).new(
          :name   => "#{resource_name}-1.2.3.4",
          :ensure => :absent,
        )
      end

      before(:each) do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", "-q", "#{resource_name}-1.2.3.4", '--nosignature', '--nodigest', "--qf", "#{nevra_format}"], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new("#{resource_name} 0 1.2.3.4 5.el4 noarch\n", 0))
      end

      it "includes the version in the package name" do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", ["-e"], "#{resource_name}-1.2.3.4"], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new('', 0)).at_most(:once)
        provider.uninstall
      end
    end

    describe "when uninstalled with options" do
      let(:resource) do
        Puppet::Type.type(:package).new(
          :name              => resource_name,
          :ensure            => :absent,
          :provider          => 'rpm',
          :uninstall_options => ['--nodeps']
        )
      end

      before(:each) do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", "-q", resource_name, '--nosignature', '--nodigest', "--qf", "#{nevra_format}"], execute_options)
          .and_return(Puppet::Util::Execution::ProcessOutput.new("#{resource_name} 0 1.2.3.4 5.el4 noarch\n", 0))
      end

      it "includes the options" do
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(["/bin/rpm", ["-e", "--nodeps"], resource_name], execute_options)
        provider.uninstall
      end
    end
  end

  describe "parsing" do
    def parser_test(rpm_output_string, gold_hash, number_of_debug_logs = 0)
      expect(Puppet).to receive(:debug).exactly(number_of_debug_logs).times()
      expect(Puppet::Util::Execution).to receive(:execute)
        .with(["/bin/rpm", "-q", resource_name, "--nosignature", "--nodigest", "--qf", "#{nevra_format}"], execute_options)
        .and_return(Puppet::Util::Execution::ProcessOutput.new(rpm_output_string, 0))
      expect(provider.query).to eq(gold_hash)
    end

    let(:resource_name) { 'name' }
    let('delimiter') { ':DESC:' }
    let(:package_hash) do
      {
        :name => 'name',
        :epoch => 'epoch',
        :version => 'version',
        :release => 'release',
        :arch => 'arch',
        :provider => :rpm,
        :ensure => 'epoch:version-release',
      }
    end
    let(:line) { 'name epoch version release arch' }

    ['name', 'epoch', 'version', 'release', 'arch'].each do |field|
      it "still parses if #{field} is replaced by delimiter" do
        parser_test(
          line.gsub(field, delimiter),
          package_hash.merge(
            field.to_sym => delimiter,
            :ensure => 'epoch:version-release'.gsub(field, delimiter)
          )
        )
      end
    end

    it "does not fail if line is unparseable, but issues a debug log" do
      parser_test('bad data', {}, 1)
    end

    describe "when the package is not found" do
      before do
        expect(Puppet).not_to receive(:debug)
        expected_args = ["/bin/rpm", "-q", resource_name, "--nosignature", "--nodigest", "--qf", "#{nevra_format}"]
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(expected_args, execute_options)
          .and_raise(Puppet::ExecutionFailure.new("package #{resource_name} is not installed"))
      end

      it "does not log or fail if allow_virtual is false" do
        resource[:allow_virtual] = false
        expect(provider.query).to be_nil
      end

      it "does not log or fail if allow_virtual is true" do
        resource[:allow_virtual] = true
        expected_args = ['/bin/rpm', '-q', resource_name, '--nosignature', '--nodigest', '--qf', "#{nevra_format}", '--whatprovides']
        expect(Puppet::Util::Execution).to receive(:execute)
          .with(expected_args, execute_options)
          .and_raise(Puppet::ExecutionFailure.new("package #{resource_name} is not provided"))
        expect(provider.query).to be_nil
      end
    end

    it "parses virtual package" do
      provider.resource[:allow_virtual] = true
      expected_args = ["/bin/rpm", "-q", resource_name, "--nosignature", "--nodigest", "--qf", "#{nevra_format}"]
      expect(Puppet::Util::Execution).to receive(:execute)
        .with(expected_args, execute_options)
        .and_raise(Puppet::ExecutionFailure.new("package #{resource_name} is not installed"))
      expect(Puppet::Util::Execution).to receive(:execute)
        .with(expected_args + ["--whatprovides"], execute_options)
        .and_return(Puppet::Util::Execution::ProcessOutput.new("myresource 0 1.2.3.4 5.el4 noarch\n", 0))
      expect(provider.query).to eq({
        :name     => "myresource",
        :epoch    => "0",
        :version  => "1.2.3.4",
        :release  => "5.el4",
        :arch     => "noarch",
        :provider => :rpm,
        :ensure   => "1.2.3.4-5.el4"
      })
    end
  end

  describe "#install_options" do
    it "returns nil by default" do
      expect(provider.install_options).to eq(nil)
    end

    it "returns install_options when set" do
      provider.resource[:install_options] = ['-n']
      expect(provider.install_options).to eq(['-n'])
    end

    it "returns multiple install_options when set" do
      provider.resource[:install_options] = ['-L', '/opt/puppet']
      expect(provider.install_options).to eq(['-L', '/opt/puppet'])
    end

    it 'returns install_options when set as hash' do
      provider.resource[:install_options] = [{ '-Darch' => 'vax' }]
      expect(provider.install_options).to eq(['-Darch=vax'])
    end

    it 'returns install_options when an array with hashes' do
      provider.resource[:install_options] = [ '-L', { '-Darch' => 'vax' }]
      expect(provider.install_options).to eq(['-L', '-Darch=vax'])
    end
  end

  describe "#uninstall_options" do
    it "returns nil by default" do
      expect(provider.uninstall_options).to eq(nil)
    end

    it "returns uninstall_options when set" do
      provider.resource[:uninstall_options] = ['-n']
      expect(provider.uninstall_options).to eq(['-n'])
    end

    it "returns multiple uninstall_options when set" do
      provider.resource[:uninstall_options] = ['-L', '/opt/puppet']
      expect(provider.uninstall_options).to eq(['-L', '/opt/puppet'])
    end

    it 'returns uninstall_options when set as hash' do
      provider.resource[:uninstall_options] = [{ '-Darch' => 'vax' }]
      expect(provider.uninstall_options).to eq(['-Darch=vax'])
    end
    it 'returns uninstall_options when an array with hashes' do
      provider.resource[:uninstall_options] = [ '-L', { '-Darch' => 'vax' }]
      expect(provider.uninstall_options).to eq(['-L', '-Darch=vax'])
    end
  end

  describe ".nodigest" do
    { '4.0'   => nil,
      '4.0.1' => nil,
      '4.0.2' => '--nodigest',
      '4.0.3' => '--nodigest',
      '4.1'   => '--nodigest',
      '5'     => '--nodigest',
    }.each do |version, expected|
      describe "when current version is #{version}" do
        it "returns #{expected.inspect}" do
          allow(described_class).to receive(:current_version).and_return(version)
          expect(described_class.nodigest).to eq(expected)
        end
      end
    end
  end

  describe ".nosignature" do
    { '4.0.3' => nil,
      '4.1'   => '--nosignature',
      '4.1.1' => '--nosignature',
      '4.2'   => '--nosignature',
      '5'     => '--nosignature',
    }.each do |version, expected|
      describe "when current version is #{version}" do
        it "returns #{expected.inspect}" do
          allow(described_class).to receive(:current_version).and_return(version)
          expect(described_class.nosignature).to eq(expected)
        end
      end
    end
  end

  describe 'insync?' do
    context 'for multiple versions' do
      let(:is) { '1:1.2.3.4-5.el4; 1:5.6.7.8-5.el4' }
      it 'returns true if there is match and feature is enabled' do
        resource[:install_only] = true
        resource[:ensure] = '1:1.2.3.4-5.el4'
        expect(provider).to be_insync(is)
      end
      it 'returns false if there is match and feature is not enabled' do
        resource[:ensure] = '1:1.2.3.4-5.el4'
        expect(provider).to_not be_insync(is)
      end
      it 'returns false if no match and feature is enabled' do
        resource[:install_only] = true
        resource[:ensure] = '1:1.2.3.6-5.el4'
        expect(provider).to_not be_insync(is)
      end
      it 'returns false if no match and feature is not enabled' do
        resource[:ensure] = '1:1.2.3.6-5.el4'
        expect(provider).to_not be_insync(is)
      end
    end
    context 'for simple versions' do
      let(:is) { '1:1.2.3.4-5.el4' }
      it 'returns true if there is match and feature is enabled' do
        resource[:install_only] = true
        resource[:ensure] = '1:1.2.3.4-5.el4'
        expect(provider).to be_insync(is)
      end
      it 'returns true if there is match and feature is not enabled' do
        resource[:ensure] = '1:1.2.3.4-5.el4'
        expect(provider).to be_insync(is)
      end
      it 'returns false if no match and feature is enabled' do
        resource[:install_only] = true
        resource[:ensure] = '1:1.2.3.6-5.el4'
        expect(provider).to_not be_insync(is)
      end
      it 'returns false if no match and feature is not enabled' do
        resource[:ensure] = '1:1.2.3.6-5.el4'
        expect(provider).to_not be_insync(is)
      end
    end
  end

  describe 'rpm multiversion to hash' do
    it 'should return empty hash for empty imput' do
      package_hash = described_class.nevra_to_multiversion_hash('')
      expect(package_hash).to eq({})
    end

    it 'should return package hash for one package input' do
      package_list = <<-RPM_OUTPUT
kernel-devel 1 1.2.3.4 5.el4 x86_64
RPM_OUTPUT
      package_hash = described_class.nevra_to_multiversion_hash(package_list)
      expect(package_hash).to eq(
        {
          :arch => "x86_64",
          :ensure => "1:1.2.3.4-5.el4",
          :epoch => "1",
          :name => "kernel-devel",
          :provider => :rpm,
          :release => "5.el4",
          :version => "1.2.3.4",
        }
      )
    end

    it 'should return package hash with versions concatenated in ensure for two package input' do
      package_list = <<-RPM_OUTPUT
kernel-devel 1 1.2.3.4 5.el4 x86_64
kernel-devel 1 5.6.7.8 5.el4 x86_64
RPM_OUTPUT
      package_hash = described_class.nevra_to_multiversion_hash(package_list)
      expect(package_hash).to eq(
        {
          :arch => "x86_64",
          :ensure => "1:1.2.3.4-5.el4; 1:5.6.7.8-5.el4",
          :epoch => "1",
          :name => "kernel-devel",
          :provider => :rpm,
          :release => "5.el4",
          :version => "1.2.3.4",
        }
      )
    end

    it 'should return list of packages for one multiversion and one package input' do
      package_list = <<-RPM_OUTPUT
kernel-devel 1 1.2.3.4 5.el4 x86_64
kernel-devel 1 5.6.7.8 5.el4 x86_64
basesystem 0 8.0 5.1.1.el5.centos noarch
RPM_OUTPUT
      package_hash = described_class.nevra_to_multiversion_hash(package_list)
      expect(package_hash).to eq(
        [
          {
            :arch => "x86_64",
            :ensure => "1:1.2.3.4-5.el4; 1:5.6.7.8-5.el4",
            :epoch => "1",
            :name => "kernel-devel",
            :provider => :rpm,
            :release => "5.el4",
            :version => "1.2.3.4",
          },
          {
            :provider => :rpm,
            :name => "basesystem",
            :epoch => "0",
            :version => "8.0",
            :release => "5.1.1.el5.centos",
            :arch => "noarch",
            :ensure => "8.0-5.1.1.el5.centos",
          }
        ]
      )
    end
  end
end