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
|
# Author:: Tor Magnus Rakvåg (tm@intility.no)
# Copyright:: 2018, Intility AS
# 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::PowershellPackageSource do
let(:resource) { Chef::Resource::PowershellPackageSource.new("MyGallery") }
let(:provider) { resource.provider_for_action(:enable) }
it "has a resource name of :powershell_package_source" do
expect(resource.resource_name).to eql(:powershell_package_source)
end
it "the name_property is 'name'" do
expect(resource.source_name).to eql("MyGallery")
end
it "the default action is :register" do
expect(resource.action).to eql([:register])
end
it "supports :register and :unregister actions" do
expect { resource.action :register }.not_to raise_error
expect { resource.action :unregister }.not_to raise_error
end
it "the url property accepts strings" do
resource.url("https://mygallery.company.co/api/v2/")
expect(resource.url).to eql("https://mygallery.company.co/api/v2/")
end
it "the trusted property accepts true and false" do
resource.trusted(false)
expect(resource.trusted).to eql(false)
resource.trusted(true)
expect(resource.trusted).to eql(true)
end
it "trusted defaults to false" do
expect(resource.trusted).to eql(false)
end
it "provider_name accepts 'Programs', 'msi', 'NuGet', 'msu', 'PowerShellGet', 'psl', 'chocolatey'" do
expect { resource.provider_name("Programs") }.not_to raise_error
expect { resource.provider_name("msi") }.not_to raise_error
expect { resource.provider_name("NuGet") }.not_to raise_error
expect { resource.provider_name("msu") }.not_to raise_error
expect { resource.provider_name("PowerShellGet") }.not_to raise_error
expect { resource.provider_name("psl") }.not_to raise_error
expect { resource.provider_name("chocolatey") }.not_to raise_error
end
it "the publish_location property accepts strings" do
resource.publish_location("https://mygallery.company.co/api/v2/package")
expect(resource.publish_location).to eql("https://mygallery.company.co/api/v2/package")
end
it "the script_source_location property accepts strings" do
resource.publish_location("https://mygallery.company.co/api/v2/scripts")
expect(resource.publish_location).to eql("https://mygallery.company.co/api/v2/scripts")
end
it "the script_publish_location property accepts strings" do
resource.publish_location("https://mygallery.company.co/api/v2/scripts")
expect(resource.publish_location).to eql("https://mygallery.company.co/api/v2/scripts")
end
describe "#build_ps_repository_command" do
before do
resource.source_name("MyGallery")
resource.url("https://mygallery.company.co/api/v2/")
end
context "#register" do
it "builds a minimal command" do
expect(provider.build_ps_repository_command("Register", resource)).to eql("Register-PSRepository -Name 'MyGallery' -SourceLocation 'https://mygallery.company.co/api/v2/' -InstallationPolicy 'Untrusted'")
end
it "builds a command with trusted set to true" do
resource.trusted(true)
expect(provider.build_ps_repository_command("Register", resource)).to eql("Register-PSRepository -Name 'MyGallery' -SourceLocation 'https://mygallery.company.co/api/v2/' -InstallationPolicy 'Trusted'")
end
it "builds a command with a publish location" do
resource.publish_location("https://mygallery.company.co/api/v2/package")
expect(provider.build_ps_repository_command("Register", resource)).to eql("Register-PSRepository -Name 'MyGallery' -SourceLocation 'https://mygallery.company.co/api/v2/' -InstallationPolicy 'Untrusted' -PublishLocation 'https://mygallery.company.co/api/v2/package'")
end
it "builds a command with a script source location" do
resource.script_source_location("https://mygallery.company.co/api/v2/scripts")
expect(provider.build_ps_repository_command("Register", resource)).to eql("Register-PSRepository -Name 'MyGallery' -SourceLocation 'https://mygallery.company.co/api/v2/' -InstallationPolicy 'Untrusted' -ScriptSourceLocation 'https://mygallery.company.co/api/v2/scripts'")
end
it "builds a command with a script publish location" do
resource.script_publish_location("https://mygallery.company.co/api/v2/scripts/package")
expect(provider.build_ps_repository_command("Register", resource)).to eql("Register-PSRepository -Name 'MyGallery' -SourceLocation 'https://mygallery.company.co/api/v2/' -InstallationPolicy 'Untrusted' -ScriptPublishLocation 'https://mygallery.company.co/api/v2/scripts/package'")
end
end
context "#set" do
it "builds a minimal command" do
expect(provider.build_ps_repository_command("Set", resource)).to eql("Set-PSRepository -Name 'MyGallery' -SourceLocation 'https://mygallery.company.co/api/v2/' -InstallationPolicy 'Untrusted'")
end
it "builds a command to change the url" do
resource.url("https://othergallery.company.co/api/v2/")
expect(provider.build_ps_repository_command("Set", resource)).to eql("Set-PSRepository -Name 'MyGallery' -SourceLocation 'https://othergallery.company.co/api/v2/' -InstallationPolicy 'Untrusted'")
end
it "builds a command with trusted set to true" do
resource.trusted(true)
expect(provider.build_ps_repository_command("Set", resource)).to eql("Set-PSRepository -Name 'MyGallery' -SourceLocation 'https://mygallery.company.co/api/v2/' -InstallationPolicy 'Trusted'")
end
it "builds a command with a publish location" do
resource.publish_location("https://mygallery.company.co/api/v2/package")
expect(provider.build_ps_repository_command("Set", resource)).to eql("Set-PSRepository -Name 'MyGallery' -SourceLocation 'https://mygallery.company.co/api/v2/' -InstallationPolicy 'Untrusted' -PublishLocation 'https://mygallery.company.co/api/v2/package'")
end
it "builds a command with a script source location" do
resource.script_source_location("https://mygallery.company.co/api/v2/scripts")
expect(provider.build_ps_repository_command("Set", resource)).to eql("Set-PSRepository -Name 'MyGallery' -SourceLocation 'https://mygallery.company.co/api/v2/' -InstallationPolicy 'Untrusted' -ScriptSourceLocation 'https://mygallery.company.co/api/v2/scripts'")
end
it "builds a command with a script publish location" do
resource.script_publish_location("https://mygallery.company.co/api/v2/scripts/package")
expect(provider.build_ps_repository_command("Set", resource)).to eql("Set-PSRepository -Name 'MyGallery' -SourceLocation 'https://mygallery.company.co/api/v2/' -InstallationPolicy 'Untrusted' -ScriptPublishLocation 'https://mygallery.company.co/api/v2/scripts/package'")
end
end
end
describe "#build_package_source_command" do
before do
resource.source_name("NuGet")
resource.url("http://nuget.org/api/v2/")
end
context "#register" do
it "builds a minimal command" do
expect(provider.build_package_source_command("Register", resource)).to eql("Register-PackageSource -Name 'NuGet' -Location 'http://nuget.org/api/v2/' -Trusted:$false -ProviderName 'NuGet'")
end
it "builds a command with trusted set to true" do
resource.trusted(true)
expect(provider.build_package_source_command("Register", resource)).to eql("Register-PackageSource -Name 'NuGet' -Location 'http://nuget.org/api/v2/' -Trusted:$true -ProviderName 'NuGet'")
end
it "builds a command with a different provider" do
resource.source_name("choco")
resource.url("https://chocolatey.org/api/v2/")
resource.provider_name("chocolatey")
expect(provider.build_package_source_command("Register", resource)).to eql("Register-PackageSource -Name 'choco' -Location 'https://chocolatey.org/api/v2/' -Trusted:$false -ProviderName 'chocolatey'")
end
end
context "#set" do
it "builds a minimal command" do
expect(provider.build_package_source_command("Set", resource)).to eql("Set-PackageSource -Name 'NuGet' -Location 'http://nuget.org/api/v2/' -Trusted:$false -ProviderName 'NuGet'")
end
it "builds a command to change the url" do
resource.url("https://nuget.company.co/api/v2/")
expect(provider.build_package_source_command("Set", resource)).to eql("Set-PackageSource -Name 'NuGet' -Location 'https://nuget.company.co/api/v2/' -Trusted:$false -ProviderName 'NuGet'")
end
it "builds a command with trusted set to true" do
resource.trusted(true)
expect(provider.build_package_source_command("Set", resource)).to eql("Set-PackageSource -Name 'NuGet' -Location 'http://nuget.org/api/v2/' -Trusted:$true -ProviderName 'NuGet'")
end
it "builds a command with a different provider" do
resource.source_name("choco")
resource.url("https://chocolatey.org/api/v2/")
resource.provider_name("chocolatey")
expect(provider.build_package_source_command("Set", resource)).to eql("Set-PackageSource -Name 'choco' -Location 'https://chocolatey.org/api/v2/' -Trusted:$false -ProviderName 'chocolatey'")
end
end
end
describe "#psrepository_cmdlet_appropriate?" do
it "returns true if the provider_name is 'PowerShellGet'" do
resource.provider_name("PowerShellGet")
expect(provider.psrepository_cmdlet_appropriate?).to eql(true)
end
it "returns false if the provider_name is something else" do
resource.provider_name("NuGet")
expect(provider.psrepository_cmdlet_appropriate?).to eql(false)
end
end
describe "#package_source_exists?" do
it "returns true if it exists" do
allow(provider).to receive(:powershell_out!).with("(Get-PackageSource -Name 'MyGallery').Name").and_return(double("powershell_out!", stdout: "MyGallery\r\n"))
resource.source_name("MyGallery")
expect(provider.package_source_exists?).to eql(true)
end
it "returns false if it doesn't exist" do
allow(provider).to receive(:powershell_out!).with("(Get-PackageSource -Name 'MyGallery').Name").and_return(double("powershell_out!", stdout: ""))
resource.source_name("MyGallery")
expect(provider.package_source_exists?).to eql(false)
end
end
end
|