Add tests for drupal.

This commit is contained in:
James Barnett 2017-06-06 15:34:30 -05:00
parent 1826f8540c
commit 15e9daaf29

View File

@ -0,0 +1,11 @@
# InSpec Testing for Drupal
describe command('curl http://localhost/drupal/') do
its('stdout') { should match /kali-metasploit-256\.png/ } # Make sure it has the icon
its('stdout') { should match /Metasploitable FAQs/ } # Make sure it has the title
its('stdout') { should match /What else is there to do here/ } # Make sure it has the content
end
describe command('mysql -h 127.0.0.1 --user="root" --password="sploitme" --execute="SHOW DATABASES LIKE \'drupal\'"') do
its('stdout') { should match /drupal/ } # Make sure the database exists
end