summaryrefslogtreecommitdiff
path: root/spec/unit/mixin
diff options
context:
space:
mode:
authorNimishaS <nimisha.sharad@msystechnologies.com>2016-09-26 12:52:37 +0000
committerNimishaS <nimisha.sharad@msystechnologies.com>2016-09-30 12:42:03 +0000
commit31c04a1338e1c2dd0e1332a4e4af7bca4fa2f82a (patch)
treeee0f959a42df63d6f6b9ce43411f4cc0aeda7160 /spec/unit/mixin
parent4f738f8aaf0fb6f1ee0f24a123640d5abf57a800 (diff)
downloadchef-31c04a1338e1c2dd0e1332a4e4af7bca4fa2f82a.tar.gz
Handling double quotes. Added specs
Signed-off-by: NimishaS <nimisha.sharad@msystechnologies.com>
Diffstat (limited to 'spec/unit/mixin')
-rw-r--r--spec/unit/mixin/powershell_out_spec.rb45
1 files changed, 13 insertions, 32 deletions
diff --git a/spec/unit/mixin/powershell_out_spec.rb b/spec/unit/mixin/powershell_out_spec.rb
index 8e5f3588ce..c37fc4c8d9 100644
--- a/spec/unit/mixin/powershell_out_spec.rb
+++ b/spec/unit/mixin/powershell_out_spec.rb
@@ -18,7 +18,7 @@
require "spec_helper"
require "chef/mixin/powershell_out"
-describe Chef::Mixin::PowershellOut do
+describe Chef::Mixin::PowershellOut, :windows_only do
let(:shell_out_class) { Class.new { include Chef::Mixin::PowershellOut } }
subject(:object) { shell_out_class.new }
let(:architecture) { "something" }
@@ -28,43 +28,24 @@ describe Chef::Mixin::PowershellOut do
describe "#powershell_out" do
it "runs a command and returns the shell_out object" do
- ret = double("Mixlib::ShellOut")
- expect(object).to receive(:shell_out).with(
- "powershell.exe #{flags} -Command \"Get-Process\"",
- {}
- ).and_return(ret)
- expect(object.powershell_out("Get-Process")).to eql(ret)
+ result = object.powershell_out("Get-Process")
+ expect(result.stderr).to be == ""
end
it "passes options" do
- ret = double("Mixlib::ShellOut")
- expect(object).to receive(:shell_out).with(
- "powershell.exe #{flags} -Command \"Get-Process\"",
- timeout: 600
- ).and_return(ret)
- expect(object.powershell_out("Get-Process", timeout: 600)).to eql(ret)
+ result = object.powershell_out("Get-Process", timeout: 600)
+ expect(result.stderr).to be == ""
end
- end
- describe "#powershell_out!" do
- it "runs a command and returns the shell_out object" do
- mixlib_shellout = double("Mixlib::ShellOut")
- expect(object).to receive(:shell_out).with(
- "powershell.exe #{flags} -Command \"Get-Process\"",
- {}
- ).and_return(mixlib_shellout)
- expect(mixlib_shellout).to receive(:error!)
- expect(object.powershell_out!("Get-Process")).to eql(mixlib_shellout)
- end
+ context "when double quote is passed in the powershell command" do
+ it "passes if double quote is appended with single escape" do
+ result = object.powershell_out("Write-Verbose \"Some String\" -Verbose")
+ expect(result.stderr).to be == ""
+ end
- it "passes options" do
- mixlib_shellout = double("Mixlib::ShellOut")
- expect(object).to receive(:shell_out).with(
- "powershell.exe #{flags} -Command \"Get-Process\"",
- timeout: 600
- ).and_return(mixlib_shellout)
- expect(mixlib_shellout).to receive(:error!)
- expect(object.powershell_out!("Get-Process", timeout: 600)).to eql(mixlib_shellout)
+ it "raises error if double quote is passed with double escape characters" do
+ expect { object.powershell_out("Write-Verbose \\\"Some String\\\" -Verbose") }.to raise_error("Please use single escape for special characters in powershell_out.")
+ end
end
end
end