WpTarget modules reworked
This commit is contained in:
37
spec/shared_examples/wp_target/wp_readme.rb
Normal file
37
spec/shared_examples/wp_target/wp_readme.rb
Normal file
@@ -0,0 +1,37 @@
|
||||
# encoding: UTF-8
|
||||
|
||||
shared_examples 'WpTarget::WpReadme' do
|
||||
|
||||
let(:fixtures_dir) { SPEC_FIXTURES_WPSCAN_WP_TARGET_DIR + '/wp_readme' }
|
||||
|
||||
describe '#readme_url' do
|
||||
it 'returns http://example.localhost/readme.html' do
|
||||
wp_target.readme_url.should === "#{wp_target.uri}readme.html"
|
||||
end
|
||||
end
|
||||
|
||||
describe '#has_readme?' do
|
||||
after do
|
||||
stub_request(:get, wp_target.readme_url).to_return(@stub)
|
||||
|
||||
wp_target.has_readme?.should === @expected
|
||||
end
|
||||
|
||||
it 'returns false on a 404' do
|
||||
@stub = { status: 404 }
|
||||
@expected = false
|
||||
end
|
||||
|
||||
it 'returns true if it exists' do
|
||||
@stub = { status: 200, body: File.new(fixtures_dir + '/readme-3.2.1.html') }
|
||||
@expected = true
|
||||
end
|
||||
|
||||
# http://code.google.com/p/wpscan/issues/detail?id=108
|
||||
it 'returns true even if the readme.html is not in english' do
|
||||
@stub = { status: 200, body: File.new(fixtures_dir + '/readme-3.3.2-fr.html') }
|
||||
@expected = true
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user