summaryrefslogtreecommitdiff
path: root/spec/unit/resource/zypper_repository_spec.rb
blob: a6a523a33f1543c747722af4f85b2968db2c19f7 (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
#
# Author:: Tim Smith (<tsmith@chef.io>)
# Copyright:: Copyright (c) 2017 Chef Software, 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 "spec_helper"

describe Chef::Resource::ZypperRepository do
  let(:node) { Chef::Node.new }
  let(:events) { Chef::EventDispatch::Dispatcher.new }
  let(:run_context) { Chef::RunContext.new(node, {}, events) }
  let(:resource) { Chef::Resource::ZypperRepository.new("fakey_fakerton", run_context) }

  it "has a resource_name of :zypper_repository" do
    expect(resource.resource_name).to eq(:zypper_repository)
  end

  it "the repo_name property is the name_property" do
    expect(resource.repo_name).to eql("fakey_fakerton")
  end

  it "sets the default action as :create" do
    expect(resource.action).to eql([:create])
  end

  it "supports :add, :create, :refresh, :remove actions" do
    expect { resource.action :add }.not_to raise_error
    expect { resource.action :create }.not_to raise_error
    expect { resource.action :refresh }.not_to raise_error
    expect { resource.action :remove }.not_to raise_error
  end

  it "fails if the user provides a repo_name with a forward slash" do
    expect { resource.repo_name "foo/bar" }.to raise_error(ArgumentError)
  end

  it "type property defaults to 'NONE'" do
    expect(resource.type).to eql("NONE")
  end

  it "enabled property defaults to true" do
    expect(resource.enabled).to eql(true)
  end

  it "autorefresh property defaults to true" do
    expect(resource.autorefresh).to eql(true)
  end

  it "gpgcheck property defaults to true" do
    expect(resource.gpgcheck).to eql(true)
  end

  it "keeppackages property defaults to false" do
    expect(resource.keeppackages).to eql(false)
  end

  it "priority property defaults to 99" do
    expect(resource.priority).to eql(99)
  end

  it "mode property defaults to '0644'" do
    expect(resource.mode).to eql("0644")
  end

  it "refresh_cache property defaults to true" do
    expect(resource.refresh_cache).to eql(true)
  end

  it "gpgautoimportkeys property defaults to true" do
    expect(resource.gpgautoimportkeys).to eql(true)
  end

  it "accepts the legacy 'key' property" do
    resource.key "foo"
    expect(resource.gpgkey).to eql("foo")
  end

  it "accepts the legacy 'uri' property" do
    resource.uri "foo"
    expect(resource.baseurl).to eql("foo")
  end

  context "on linux", :linux_only do
    it "resolves to a Noop class when on non-linux OS" do
      node.automatic[:os] = "windows"
      node.automatic[:platform_family] = "windows"
      expect(resource.provider_for_action(:add)).to be_a(Chef::Provider::Noop)
    end

    it "resolves to a Noop class when on non-suse linux" do
      node.automatic[:os] = "linux"
      node.automatic[:platform_family] = "debian"
      expect(resource.provider_for_action(:add)).to be_a(Chef::Provider::Noop)
    end

    it "resolves to a ZypperRepository class when on a suse platform_family" do
      node.automatic[:os] = "linux"
      node.automatic[:platform_family] = "suse"
      expect(resource.provider_for_action(:add)).to be_a(Chef::Provider::ZypperRepository)
    end
  end
end