WpItem::Infos specs

This commit is contained in:
erwanlr
2013-03-25 15:24:46 +01:00
parent 276952ffb9
commit 5bb9aa29fa
4 changed files with 123 additions and 12 deletions

View File

@@ -0,0 +1,109 @@
# encoding: UTF-8
shared_examples 'WpItem::Infos' do
# 3 expected urls have to be set in the described class (or subject)
# e.g :
# let(:readme_url) { }
# let(:changelog_url) { }
# let(:error_log_url) { }
describe '#readme_url' do
it 'returns the correct url' do
subject.readme_url.should == readme_url
end
end
describe '#has_readme?' do
after :each do
stub_request(:get, subject.readme_url).to_return(status: @status)
subject.has_readme?.should === @expected
end
it 'returns true on a 200' do
@status = 200
@expected = true
end
it 'returns false otherwise' do
@status = 404
@expected = false
end
end
describe '#changelog_url' do
it 'returns the correct url' do
subject.changelog_url.should == changelog_url
end
end
describe '#has_changelog?' do
after :each do
stub_request(:get, subject.changelog_url).to_return(status: @status)
subject.has_changelog?.should === @expected
end
it 'returns true on a 200' do
@status = 200
@expected = true
end
it 'returns false otherwise' do
@status = 404
@expected = false
end
end
describe '#has_directory_listing?' do
after do
stub_request(:get, subject.uri.to_s).to_return(@stub_return)
subject.has_directory_listing?.should === @expected
end
context 'when the body contains <title>Index of' do
it 'returns true' do
@stub_return = { status: 200, body: '<title>Index of asdf</title>' }
@expected = true
end
end
it 'returns false otherwise' do
@stub_return = { status: 200, body: '<title>My Wordpress Site</title>' }
@expected = false
end
it 'returns false on a 404' do
@stub_return = { status: 404 }
@expected = false
end
end
describe '#error_log_url' do
it 'returns the correct url' do
subject.error_log_url.should == error_log_url
end
end
describe '#has_error_log?' do
after do
stub_request(:get, subject.error_log_url).to_return(@stub_return)
subject.has_error_log?.should === @expected
end
it 'returns true if the pattern is detected' do
@stub_return = { status: 200, body: File.new( MODELS_FIXTURES + '/wp_item/error_log') }
@expected = true
end
it 'returns false otherwise' do
@stub_return = { status: 200, body: 'yolo' }
@expected = false
end
it 'returns false on a 404' do
@stub_return = { status: 404 }
@expected = false
end
end
end