/spec/unit/provider/package/pacman_spec.rb

http://github.com/opscode/chef · Ruby · 112 lines · 74 code · 21 blank · 17 comment · 0 complexity · b69823965a7f3a03fb4ac2c4640de65d MD5 · raw file

  1. #
  2. # Author:: Jan Zimmek (<jan.zimmek@web.de>)
  3. # Copyright:: Copyright 2010-2016, Jan Zimmek
  4. # License:: Apache License, Version 2.0
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. #
  18. require "spec_helper"
  19. def create_provider_for(name)
  20. @new_resource = Chef::Resource::Package.new(name)
  21. provider = Chef::Provider::Package::Pacman.new(@new_resource, @run_context)
  22. allow(provider).to receive(:shell_out_compacted).and_return(@status)
  23. provider
  24. end
  25. RSpec.shared_examples "current_resource" do |pkg, version, candidate|
  26. let(:current_resource) { @provider.load_current_resource }
  27. before(:each) do
  28. @provider = create_provider_for(pkg)
  29. end
  30. it "sets current_resource name" do
  31. expect(current_resource.package_name).to eql(pkg)
  32. end
  33. it "sets current_resource version" do
  34. expect(current_resource.version).to eql(version)
  35. end
  36. it "sets candidate version" do
  37. current_resource
  38. expect(@provider.candidate_version).to eql(candidate)
  39. end
  40. end
  41. describe Chef::Provider::Package::Pacman do
  42. before(:each) do
  43. @node = Chef::Node.new
  44. @events = Chef::EventDispatch::Dispatcher.new
  45. @run_context = Chef::RunContext.new(@node, {}, @events)
  46. @pacman_conf = <<~PACMAN_CONF
  47. [options]
  48. HoldPkg = pacman glibc
  49. Architecture = auto
  50. [customrepo]
  51. Server = https://my.custom.repo
  52. [core]
  53. Include = /etc/pacman.d/mirrorlist
  54. [extra]
  55. Include = /etc/pacman.d/mirrorlist
  56. [community]
  57. Include = /etc/pacman.d/mirrorlist
  58. PACMAN_CONF
  59. allow(::File).to receive(:exist?).with("/etc/pacman.conf").and_return(true)
  60. allow(::File).to receive(:read).with("/etc/pacman.conf").and_return(@pacman_conf)
  61. pacman_out = <<~PACMAN_OUT
  62. extra nano 3.450-1
  63. extra emacs 0.12.0-1 [installed]
  64. core sed 3.234-2 [installed: 3.234-1]
  65. PACMAN_OUT
  66. @status = double(stdout: pacman_out, exitstatus: 0)
  67. end
  68. describe "loading the current resource" do
  69. describe "for an existing and installed but upgradable package" do
  70. include_examples "current_resource", ["sed"], ["3.234-1"], ["3.234-2"]
  71. end
  72. describe "for an existing and installed package" do
  73. include_examples "current_resource", ["emacs"], ["0.12.0-1"], ["0.12.0-1"]
  74. end
  75. describe "for an existing non installed package" do
  76. include_examples "current_resource", ["nano"], [nil], ["3.450-1"]
  77. end
  78. describe "for a non existing and an upgradable package" do
  79. include_examples "current_resource", %w{nano sed}, [nil, "3.234-1"], ["3.450-1", "3.234-2"]
  80. end
  81. describe "for a non existing package" do
  82. let(:current_resource) { @provider.load_current_resource }
  83. before(:each) do
  84. @provider = create_provider_for("vim")
  85. end
  86. it "raises an error" do
  87. expect { current_resource }.to raise_error(Chef::Exceptions::Package)
  88. end
  89. end
  90. end
  91. end