mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
24 lines
586 B
Ruby
24 lines
586 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
return unless os.windows?
|
||
|
|
||
|
# iis service is running
|
||
|
describe service('W3SVC') do
|
||
|
it { should be_installed }
|
||
|
it { should be_running }
|
||
|
end
|
||
|
|
||
|
# test the site without the iis resource
|
||
|
describe powershell("Get-Website") do
|
||
|
its(:stdout) {should match '.*?Default Web Site.*?'}
|
||
|
end
|
||
|
|
||
|
# test the site with the resource
|
||
|
describe iis_site('Default Web Site') do
|
||
|
it { should exist }
|
||
|
it { should be_running }
|
||
|
it { should have_app_pool('DefaultAppPool') }
|
||
|
it { should have_binding('http *:80:') }
|
||
|
it { should have_path('%SystemDrive%\\inetpub\\wwwroot\\') }
|
||
|
end
|