summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Doherty <cdoherty@getchef.com>2014-12-22 12:40:16 -0800
committerChris Doherty <cdoherty@getchef.com>2014-12-22 12:57:42 -0800
commit1329c262f1b2da177baaf1062af80e221bad136f (patch)
treeccc4102e24761c2b13aa0da22b15b8e4539a0ae2
parent8b37ebb3468879477fbeeba9511c10a00d530b97 (diff)
downloadchef-cdoherty-fix-logon-specs.tar.gz
Randomize service display name to fix transient test failure, and mark unimplemented test as pending.cdoherty-fix-logon-specs
-rw-r--r--spec/functional/resource/windows_service_spec.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/spec/functional/resource/windows_service_spec.rb b/spec/functional/resource/windows_service_spec.rb
index 00285f47aa..29d1fc42c3 100644
--- a/spec/functional/resource/windows_service_spec.rb
+++ b/spec/functional/resource/windows_service_spec.rb
@@ -39,11 +39,14 @@ describe Chef::Resource::WindowsService, :windows_only, :system_windows_service_
}
let(:service_params) {
+
+ id = "#{$$}_#{rand(1000)}"
+
test_service.merge( {
run_as_user: qualified_username,
run_as_password: password,
- service_name: "spec_service_#{$$}_#{rand(1000)}",
- service_display_name: "windows_service test service",
+ service_name: "spec_service_#{id}",
+ service_display_name: "windows_service spec #{id}}",
service_description: "Test service for running the windows_service functional spec.",
service_file_path: global_service_file_path,
} )
@@ -90,8 +93,6 @@ describe Chef::Resource::WindowsService, :windows_only, :system_windows_service_
service_resource.run_action(:start)
end
- it "raises an exception when it can't grant the logon privilege" do
-# service_resource.run_action(:start)
- end
+ it "raises an exception when it can't grant the logon privilege"
end
end