spec/unit/knife/bootstrap_template_spec.rb in knife-windows-1.2.0 vs spec/unit/knife/bootstrap_template_spec.rb in knife-windows-1.2.1
- old
+ new
@@ -1,92 +1,92 @@
-#
-# Author:: Chirag Jog (<chirag@clogeny.com>)
-# Copyright:: Copyright (c) 2013 Chirag Jog
-# 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.
-
-
-TEMPLATE_FILE = File.expand_path(File.dirname(__FILE__)) + "/../../../lib/chef/knife/bootstrap/windows-chef-client-msi.erb"
-
-require 'spec_helper'
-
-describe Chef::Knife::BootstrapWindowsWinrm do
- let(:template_file) { TEMPLATE_FILE }
- let(:options) { [] }
- let(:rendered_template) do
- knife.instance_variable_set("@template_file", template_file)
- knife.parse_options(options)
- # Avoid referencing a validation keyfile we won't find during #render_template
- template = IO.read(template_file).chomp
- knife.render_template(template)
- end
-
- before(:all) do
- @original_config = Chef::Config.hash_dup
- @original_knife_config = Chef::Config[:knife].dup
- end
-
- after(:all) do
- Chef::Config.configuration = @original_config
- Chef::Config[:knife] = @original_knife_config
- end
-
- before(:each) do
- Chef::Log.logger = Logger.new(StringIO.new)
- @knife = Chef::Knife::BootstrapWindowsWinrm.new
- # Merge default settings in.
- @knife.merge_configs
- @knife.config[:template_file] = template_file
- @stdout = StringIO.new
- allow(@knife.ui).to receive(:stdout).and_return(@stdout)
- @stderr = StringIO.new
- allow(@knife.ui).to receive(:stderr).and_return(@stderr)
- end
-
- describe "specifying no_proxy with various entries" do
- subject(:knife) { described_class.new }
- let(:options){ ["--bootstrap-proxy", "", "--bootstrap-no-proxy", setting] }
-
- context "via --bootstrap-no-proxy" do
- let(:setting) { "api.opscode.com" }
-
- it "renders the client.rb with a single FQDN no_proxy entry" do
- expect(rendered_template).to match(%r{.*no_proxy\s*\"api.opscode.com\".*})
- end
- end
- context "via --bootstrap-no-proxy multiple" do
- let(:setting) { "api.opscode.com,172.16.10.*" }
-
- it "renders the client.rb with comma-separated FQDN and wildcard IP address no_proxy entries" do
- expect(rendered_template).to match(%r{.*no_proxy\s*"api.opscode.com,172.16.10.\*".*})
- end
- end
- end
-
- describe "specifying --msi-url" do
- subject(:knife) { described_class.new }
-
- context "with explicitly provided --msi-url" do
- let(:options) { ["--msi-url", "file:///something.msi"] }
-
- it "bootstrap batch file must fetch from provided url" do
- expect(rendered_template).to match(%r{.*REMOTE_SOURCE_MSI_URL=file:///something\.msi.*})
- end
- end
- context "with no provided --msi-url" do
- it "bootstrap batch file must fetch from provided url" do
- expect(rendered_template).to match(%r{.*REMOTE_SOURCE_MSI_URL=https://www\.chef\.io/.*})
- end
- end
- end
-end
+#
+# Author:: Chirag Jog (<chirag@clogeny.com>)
+# Copyright:: Copyright (c) 2013 Chirag Jog
+# 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.
+
+
+TEMPLATE_FILE = File.expand_path(File.dirname(__FILE__)) + "/../../../lib/chef/knife/bootstrap/windows-chef-client-msi.erb"
+
+require 'spec_helper'
+
+describe Chef::Knife::BootstrapWindowsWinrm do
+ let(:template_file) { TEMPLATE_FILE }
+ let(:options) { [] }
+ let(:rendered_template) do
+ knife.instance_variable_set("@template_file", template_file)
+ knife.parse_options(options)
+ # Avoid referencing a validation keyfile we won't find during #render_template
+ template = IO.read(template_file).chomp
+ knife.render_template(template)
+ end
+
+ before(:all) do
+ @original_config = Chef::Config.hash_dup
+ @original_knife_config = Chef::Config[:knife].dup
+ end
+
+ after(:all) do
+ Chef::Config.configuration = @original_config
+ Chef::Config[:knife] = @original_knife_config
+ end
+
+ before(:each) do
+ Chef::Log.logger = Logger.new(StringIO.new)
+ @knife = Chef::Knife::BootstrapWindowsWinrm.new
+ # Merge default settings in.
+ @knife.merge_configs
+ @knife.config[:template_file] = template_file
+ @stdout = StringIO.new
+ allow(@knife.ui).to receive(:stdout).and_return(@stdout)
+ @stderr = StringIO.new
+ allow(@knife.ui).to receive(:stderr).and_return(@stderr)
+ end
+
+ describe "specifying no_proxy with various entries" do
+ subject(:knife) { described_class.new }
+ let(:options){ ["--bootstrap-proxy", "", "--bootstrap-no-proxy", setting] }
+
+ context "via --bootstrap-no-proxy" do
+ let(:setting) { "api.opscode.com" }
+
+ it "renders the client.rb with a single FQDN no_proxy entry" do
+ expect(rendered_template).to match(%r{.*no_proxy\s*\"api.opscode.com\".*})
+ end
+ end
+ context "via --bootstrap-no-proxy multiple" do
+ let(:setting) { "api.opscode.com,172.16.10.*" }
+
+ it "renders the client.rb with comma-separated FQDN and wildcard IP address no_proxy entries" do
+ expect(rendered_template).to match(%r{.*no_proxy\s*"api.opscode.com,172.16.10.\*".*})
+ end
+ end
+ end
+
+ describe "specifying --msi-url" do
+ subject(:knife) { described_class.new }
+
+ context "with explicitly provided --msi-url" do
+ let(:options) { ["--msi-url", "file:///something.msi"] }
+
+ it "bootstrap batch file must fetch from provided url" do
+ expect(rendered_template).to match(%r{.*REMOTE_SOURCE_MSI_URL=file:///something\.msi.*})
+ end
+ end
+ context "with no provided --msi-url" do
+ it "bootstrap batch file must fetch from provided url" do
+ expect(rendered_template).to match(%r{.*REMOTE_SOURCE_MSI_URL=https://www\.chef\.io/.*})
+ end
+ end
+ end
+end