spec/ rubocopied
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
# encoding: UTF-8
|
||||
#--
|
||||
# WPScan - WordPress Security Scanner
|
||||
# Copyright (C) 2012-2013
|
||||
@@ -19,278 +20,279 @@
|
||||
require File.expand_path(File.dirname(__FILE__) + '/wpscan_helper')
|
||||
|
||||
describe WpPlugin do
|
||||
describe "#initialize" do
|
||||
it "should create a correct instance" do
|
||||
|
||||
describe '#initialize' do
|
||||
it 'should create a correct instance' do
|
||||
instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins'
|
||||
)
|
||||
instance.wp_content_dir.should == "wp-content"
|
||||
instance.base_url.should == "http://sub.example.com/path/to/wordpress/"
|
||||
instance.path.should == "test/asdf.php"
|
||||
instance.wp_content_dir.should == 'wp-content'
|
||||
instance.base_url.should == 'http://sub.example.com/path/to/wordpress/'
|
||||
instance.path.should == 'test/asdf.php'
|
||||
end
|
||||
end
|
||||
|
||||
describe "#get_full_url" do
|
||||
describe '#get_full_url' do
|
||||
after :each do
|
||||
arguments = {
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins",
|
||||
:wp_content_dir => @wp_content_dir
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins',
|
||||
wp_content_dir: @wp_content_dir
|
||||
}
|
||||
|
||||
instance = WpItem.new(arguments)
|
||||
instance.get_full_url.to_s.should === @expected
|
||||
end
|
||||
|
||||
it "should return the correct url" do
|
||||
@expected = "http://sub.example.com/path/to/wordpress/wp-content/plugins/test/asdf.php"
|
||||
it 'should return the correct url' do
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/wp-content/plugins/test/asdf.php'
|
||||
end
|
||||
|
||||
it "should return the correct url (custom wp_content_dir)" do
|
||||
@wp_content_dir = "custom"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/custom/plugins/test/asdf.php"
|
||||
it 'should return the correct url (custom wp_content_dir)' do
|
||||
@wp_content_dir = 'custom'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/custom/plugins/test/asdf.php'
|
||||
end
|
||||
|
||||
it "should trim / and add missing / before concatenating url" do
|
||||
@wp_content_dir = "/custom/"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/custom/plugins/test/asdf.php"
|
||||
it 'should trim / and add missing / before concatenating url' do
|
||||
@wp_content_dir = '/custom/'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/custom/plugins/test/asdf.php'
|
||||
end
|
||||
end
|
||||
|
||||
describe "#get_url_without_filename" do
|
||||
describe '#get_url_without_filename' do
|
||||
after :each do
|
||||
arguments = {
|
||||
:base_url => @base_url || "http://sub.example.com/path/to/wordpress/",
|
||||
:path => @path || "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins",
|
||||
:wp_content_dir => @wp_content_dir
|
||||
base_url: @base_url || 'http://sub.example.com/path/to/wordpress/',
|
||||
path: @path || 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins',
|
||||
wp_content_dir: @wp_content_dir
|
||||
}
|
||||
|
||||
instance = WpItem.new(arguments)
|
||||
instance.get_url_without_filename.to_s.should === @expected
|
||||
end
|
||||
|
||||
it "should return the correct url" do
|
||||
@expected = "http://sub.example.com/path/to/wordpress/wp-content/plugins/test/"
|
||||
it 'should return the correct url' do
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/wp-content/plugins/test/'
|
||||
end
|
||||
|
||||
it "should return the correct url (custom wp_content_dir)" do
|
||||
@wp_content_dir = "custom"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/custom/plugins/test/"
|
||||
it 'should return the correct url (custom wp_content_dir)' do
|
||||
@wp_content_dir = 'custom'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/custom/plugins/test/'
|
||||
end
|
||||
|
||||
it "should trim / and add missing / before concatenating url" do
|
||||
@wp_content_dir = "/custom/"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/custom/plugins/test/"
|
||||
it 'should trim / and add missing / before concatenating url' do
|
||||
@wp_content_dir = '/custom/'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/custom/plugins/test/'
|
||||
end
|
||||
|
||||
it "should not remove the last foldername" do
|
||||
@path = "test/"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/wp-content/plugins/test/"
|
||||
it 'should not remove the last foldername' do
|
||||
@path = 'test/'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/wp-content/plugins/test/'
|
||||
end
|
||||
|
||||
it "should return the correct url (https)" do
|
||||
@base_url = "https://sub.example.com/path/to/wordpress/"
|
||||
@expected = "https://sub.example.com/path/to/wordpress/wp-content/plugins/test/"
|
||||
it 'should return the correct url (https)' do
|
||||
@base_url = 'https://sub.example.com/path/to/wordpress/'
|
||||
@expected = 'https://sub.example.com/path/to/wordpress/wp-content/plugins/test/'
|
||||
end
|
||||
|
||||
it "should add the last slash if it's not present" do
|
||||
@path = "test-one"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/wp-content/plugins/test-one/"
|
||||
@path = 'test-one'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/wp-content/plugins/test-one/'
|
||||
end
|
||||
end
|
||||
|
||||
describe "#version" do
|
||||
describe '#version' do
|
||||
let(:fixtures_dir) { SPEC_FIXTURES_WPSCAN_WP_PLUGIN_DIR + '/version' }
|
||||
|
||||
before :each do
|
||||
@instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins'
|
||||
)
|
||||
end
|
||||
|
||||
it "should return a version number" do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(:status => 200, :body => "Stable tag: 1.2.4.3.2.1")
|
||||
@instance.version.should == "1.2.4.3.2.1"
|
||||
it 'should return a version number' do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(status: 200, body: 'Stable tag: 1.2.4.3.2.1')
|
||||
@instance.version.should == '1.2.4.3.2.1'
|
||||
end
|
||||
|
||||
it "should not return a version number" do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(:status => 200, :body => "Stable tag: trunk")
|
||||
it 'should not return a version number' do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(status: 200, body: 'Stable tag: trunk')
|
||||
@instance.version.should be nil
|
||||
end
|
||||
|
||||
it "should return nil if the version is invalid (IE : trunk etc)" do
|
||||
stub_request_to_fixture(:url => @instance.readme_url.to_s, :fixture => fixtures_dir + '/trunk-version.txt')
|
||||
it 'should return nil if the version is invalid (IE : trunk etc)' do
|
||||
stub_request_to_fixture(url: @instance.readme_url.to_s, fixture: fixtures_dir + '/trunk-version.txt')
|
||||
@instance.version.should be_nil
|
||||
end
|
||||
|
||||
it "should return the version 0.4" do
|
||||
stub_request_to_fixture(:url => @instance.readme_url.to_s, :fixture => fixtures_dir + '/simple-login-lockdown-0.4.txt')
|
||||
@instance.version.should === "0.4"
|
||||
it 'should return the version 0.4' do
|
||||
stub_request_to_fixture(url: @instance.readme_url.to_s, fixture: fixtures_dir + '/simple-login-lockdown-0.4.txt')
|
||||
@instance.version.should === '0.4'
|
||||
end
|
||||
end
|
||||
|
||||
describe "#directory_listing?" do
|
||||
describe '#directory_listing?' do
|
||||
before :each do
|
||||
@instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins'
|
||||
)
|
||||
end
|
||||
|
||||
it "should return true" do
|
||||
it 'should return true' do
|
||||
stub_request(:get, @instance.get_url_without_filename.to_s)
|
||||
.to_return(:status => 200, :body => "<html><head><title>Index of asdf</title></head></html>")
|
||||
.to_return(status: 200, body: '<html><head><title>Index of asdf</title></head></html>')
|
||||
|
||||
@instance.directory_listing?.should == true
|
||||
end
|
||||
|
||||
it "should return false" do
|
||||
it 'should return false' do
|
||||
stub_request(:get, @instance.get_url_without_filename.to_s)
|
||||
.to_return(:status => 200, :body => "<html><head><title>My Wordpress Site</title></head></html>")
|
||||
.to_return(status: 200, body: '<html><head><title>My Wordpress Site</title></head></html>')
|
||||
|
||||
@instance.directory_listing?.should == false
|
||||
end
|
||||
|
||||
it "should return false on a 404" do
|
||||
stub_request(:get, @instance.get_url_without_filename.to_s.to_s).to_return(:status => 404)
|
||||
it 'should return false on a 404' do
|
||||
stub_request(:get, @instance.get_url_without_filename.to_s.to_s).to_return(status: 404)
|
||||
@instance.directory_listing?.should be_false
|
||||
end
|
||||
end
|
||||
|
||||
describe "#extract_name_from_url" do
|
||||
describe '#extract_name_from_url' do
|
||||
after :each do
|
||||
arguments = {
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => @path || "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => @type || "plugins",
|
||||
:wp_content_dir => @wp_content_dir
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: @path || 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: @type || 'plugins',
|
||||
wp_content_dir: @wp_content_dir
|
||||
}
|
||||
|
||||
instance = WpItem.new(arguments)
|
||||
instance.extract_name_from_url.should === @expected
|
||||
end
|
||||
|
||||
it "should extract the correct name" do
|
||||
@expected = "test"
|
||||
it 'should extract the correct name' do
|
||||
@expected = 'test'
|
||||
end
|
||||
|
||||
it "should extract the correct name (custom wp_content_dir)" do
|
||||
@wp_content_dir = "custom"
|
||||
@expected = "test"
|
||||
it 'should extract the correct name (custom wp_content_dir)' do
|
||||
@wp_content_dir = 'custom'
|
||||
@expected = 'test'
|
||||
end
|
||||
|
||||
it "should extract the correct name" do
|
||||
@path = "test2/asdf.php"
|
||||
@wp_content_dir = "/custom/"
|
||||
@expected = "test2"
|
||||
it 'should extract the correct name' do
|
||||
@path = 'test2/asdf.php'
|
||||
@wp_content_dir = '/custom/'
|
||||
@expected = 'test2'
|
||||
end
|
||||
|
||||
it "should extract the correct plugin name" do
|
||||
@path = "testplugin/"
|
||||
@expected = "testplugin"
|
||||
it 'should extract the correct plugin name' do
|
||||
@path = 'testplugin/'
|
||||
@expected = 'testplugin'
|
||||
end
|
||||
|
||||
it "should extract the correct theme name" do
|
||||
@path = "testtheme/"
|
||||
@type = "themes"
|
||||
@expected = "testtheme"
|
||||
it 'should extract the correct theme name' do
|
||||
@path = 'testtheme/'
|
||||
@type = 'themes'
|
||||
@expected = 'testtheme'
|
||||
end
|
||||
end
|
||||
|
||||
describe "#to_s" do
|
||||
describe '#to_s' do
|
||||
before :each do
|
||||
@instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins'
|
||||
)
|
||||
end
|
||||
|
||||
it "should return the name including a version number" do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(:status => 200, :body => "Stable tag: 1.2.4.3.2.1")
|
||||
@instance.to_s.should == "test v1.2.4.3.2.1"
|
||||
it 'should return the name including a version number' do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(status: 200, body: 'Stable tag: 1.2.4.3.2.1')
|
||||
@instance.to_s.should == 'test v1.2.4.3.2.1'
|
||||
end
|
||||
|
||||
it "should not return the name without a version number" do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(:status => 200, :body => "Stable tag: trunk")
|
||||
@instance.to_s.should == "test"
|
||||
it 'should not return the name without a version number' do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(status: 200, body: 'Stable tag: trunk')
|
||||
@instance.to_s.should == 'test'
|
||||
end
|
||||
end
|
||||
|
||||
describe "#==" do
|
||||
describe '#==' do
|
||||
before :each do
|
||||
@instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins'
|
||||
)
|
||||
end
|
||||
|
||||
it "should return false" do
|
||||
it 'should return false' do
|
||||
instance2 = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "newname/asdf.php",
|
||||
:type => "plugins",
|
||||
:vulns_file => "XXX.xml",
|
||||
:vulns_xpath => "XX"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'newname/asdf.php',
|
||||
type: 'plugins',
|
||||
vulns_file: 'XXX.xml',
|
||||
vulns_xpath: 'XX'
|
||||
)
|
||||
(@instance==instance2).should == false
|
||||
(@instance == instance2).should == false
|
||||
end
|
||||
|
||||
it "should return true" do
|
||||
it 'should return true' do
|
||||
instance2 = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:type => "plugins",
|
||||
:vulns_file => "XXX.xml",
|
||||
:vulns_xpath => "XX"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
type: 'plugins',
|
||||
vulns_file: 'XXX.xml',
|
||||
vulns_xpath: 'XX'
|
||||
)
|
||||
(@instance==instance2).should == true
|
||||
(@instance == instance2).should == true
|
||||
end
|
||||
end
|
||||
|
||||
describe "#get_sub_folder" do
|
||||
describe '#get_sub_folder' do
|
||||
after :each do
|
||||
arguments = {
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:wp_content_dir => "wp-content",
|
||||
:wp_plugins_dir => "wp-content/plugins",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => @type || "themes"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
wp_content_dir: 'wp-content',
|
||||
wp_plugins_dir: 'wp-content/plugins',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: @type || 'themes'
|
||||
}
|
||||
|
||||
instance = WpItem.new(arguments)
|
||||
@@ -302,238 +304,238 @@ describe WpPlugin do
|
||||
end
|
||||
end
|
||||
|
||||
it "should return themes" do
|
||||
@expected = "themes"
|
||||
it 'should return themes' do
|
||||
@expected = 'themes'
|
||||
end
|
||||
|
||||
it "should return nil" do
|
||||
@type = "timthumbs"
|
||||
it 'should return nil' do
|
||||
@type = 'timthumbs'
|
||||
@expected = nil
|
||||
end
|
||||
|
||||
it "should raise an exception" do
|
||||
@type = "type"
|
||||
@raise_error = raise_error(RuntimeError, "unknown type type")
|
||||
it 'should raise an exception' do
|
||||
@type = 'type'
|
||||
@raise_error = raise_error(RuntimeError, 'unknown type type')
|
||||
end
|
||||
end
|
||||
|
||||
describe "#readme_url" do
|
||||
describe '#readme_url' do
|
||||
after :each do
|
||||
arguments = {
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => @type || "plugins",
|
||||
:wp_content_dir => @wp_content_dir
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: @type || 'plugins',
|
||||
wp_content_dir: @wp_content_dir
|
||||
}
|
||||
|
||||
instance = WpItem.new(arguments)
|
||||
instance.readme_url.to_s.should === @expected
|
||||
end
|
||||
|
||||
it "should return the corrent plugin readme url" do
|
||||
@expected = "http://sub.example.com/path/to/wordpress/wp-content/plugins/test/readme.txt"
|
||||
it 'should return the corrent plugin readme url' do
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/wp-content/plugins/test/readme.txt'
|
||||
end
|
||||
|
||||
it "should return the corrent plugin readme url (custom wp_content)" do
|
||||
@wp_content_dir = "custom"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/custom/plugins/test/readme.txt"
|
||||
it 'should return the corrent plugin readme url (custom wp_content)' do
|
||||
@wp_content_dir = 'custom'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/custom/plugins/test/readme.txt'
|
||||
end
|
||||
|
||||
it "should return the corrent theme readme url" do
|
||||
@type = "themes"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/wp-content/themes/test/readme.txt"
|
||||
it 'should return the corrent theme readme url' do
|
||||
@type = 'themes'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/wp-content/themes/test/readme.txt'
|
||||
end
|
||||
|
||||
it "should return the corrent theme readme url (custom wp_content)" do
|
||||
@type = "themes"
|
||||
@wp_content_dir = "custom"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/custom/themes/test/readme.txt"
|
||||
it 'should return the corrent theme readme url (custom wp_content)' do
|
||||
@type = 'themes'
|
||||
@wp_content_dir = 'custom'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/custom/themes/test/readme.txt'
|
||||
end
|
||||
end
|
||||
|
||||
describe "#changelog_url" do
|
||||
describe '#changelog_url' do
|
||||
after :each do
|
||||
arguments = {
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => @type || "plugins",
|
||||
:wp_content_dir => @wp_content_dir
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: @type || 'plugins',
|
||||
wp_content_dir: @wp_content_dir
|
||||
}
|
||||
|
||||
instance = WpItem.new(arguments)
|
||||
instance.changelog_url.to_s.should === @expected
|
||||
end
|
||||
|
||||
it "should return the corrent plugin changelog url" do
|
||||
@expected = "http://sub.example.com/path/to/wordpress/wp-content/plugins/test/changelog.txt"
|
||||
it 'should return the corrent plugin changelog url' do
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/wp-content/plugins/test/changelog.txt'
|
||||
end
|
||||
|
||||
it "should return the corrent plugin changelog url (custom wp_content)" do
|
||||
@wp_content_dir = "custom"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/custom/plugins/test/changelog.txt"
|
||||
it 'should return the corrent plugin changelog url (custom wp_content)' do
|
||||
@wp_content_dir = 'custom'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/custom/plugins/test/changelog.txt'
|
||||
end
|
||||
|
||||
it "should return the corrent theme changelog url" do
|
||||
@type = "themes"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/wp-content/themes/test/changelog.txt"
|
||||
it 'should return the corrent theme changelog url' do
|
||||
@type = 'themes'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/wp-content/themes/test/changelog.txt'
|
||||
end
|
||||
|
||||
it "should return the corrent theme changelog url (custom wp_content)" do
|
||||
@type = "themes"
|
||||
@wp_content_dir = "custom"
|
||||
@expected = "http://sub.example.com/path/to/wordpress/custom/themes/test/changelog.txt"
|
||||
it 'should return the corrent theme changelog url (custom wp_content)' do
|
||||
@type = 'themes'
|
||||
@wp_content_dir = 'custom'
|
||||
@expected = 'http://sub.example.com/path/to/wordpress/custom/themes/test/changelog.txt'
|
||||
end
|
||||
end
|
||||
|
||||
describe "#has_readme?" do
|
||||
describe '#has_readme?' do
|
||||
before :each do
|
||||
@instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins'
|
||||
)
|
||||
end
|
||||
|
||||
it "should return true" do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(:status => 200)
|
||||
it 'should return true' do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(status: 200)
|
||||
@instance.has_readme?.should == true
|
||||
end
|
||||
|
||||
it "should return false" do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(:status => 403)
|
||||
it 'should return false' do
|
||||
stub_request(:get, @instance.readme_url.to_s).to_return(status: 403)
|
||||
@instance.has_readme?.should == false
|
||||
end
|
||||
end
|
||||
|
||||
describe "#has_changelog?" do
|
||||
describe '#has_changelog?' do
|
||||
before :each do
|
||||
@instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins'
|
||||
)
|
||||
end
|
||||
|
||||
it "should return true" do
|
||||
stub_request(:get, @instance.changelog_url.to_s).to_return(:status => 200)
|
||||
it 'should return true' do
|
||||
stub_request(:get, @instance.changelog_url.to_s).to_return(status: 200)
|
||||
@instance.has_changelog?.should == true
|
||||
end
|
||||
|
||||
it "should return false" do
|
||||
stub_request(:get, @instance.changelog_url.to_s).to_return(:status => 403)
|
||||
it 'should return false' do
|
||||
stub_request(:get, @instance.changelog_url.to_s).to_return(status: 403)
|
||||
@instance.has_changelog?.should == false
|
||||
end
|
||||
end
|
||||
|
||||
describe "#wp_org_url" do
|
||||
it "sould return a themes url" do
|
||||
describe '#wp_org_url' do
|
||||
it 'sould return a themes url' do
|
||||
instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "themes"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'themes'
|
||||
)
|
||||
instance.wp_org_url.to_s.should == "http://wordpress.org/extend/themes/test/"
|
||||
instance.wp_org_url.to_s.should == 'http://wordpress.org/extend/themes/test/'
|
||||
end
|
||||
|
||||
it "sould return a plugins url" do
|
||||
it 'sould return a plugins url' do
|
||||
instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins'
|
||||
)
|
||||
instance.wp_org_url.to_s.should == "http://wordpress.org/extend/plugins/test/"
|
||||
instance.wp_org_url.to_s.should == 'http://wordpress.org/extend/plugins/test/'
|
||||
end
|
||||
|
||||
it "sould raise an exception" do
|
||||
it 'sould raise an exception' do
|
||||
instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "invalid"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'invalid'
|
||||
)
|
||||
expect { instance.wp_org_url }.to raise_error(RuntimeError, "No Wordpress URL for invalid")
|
||||
expect { instance.wp_org_url }.to raise_error(RuntimeError, 'No Wordpress URL for invalid')
|
||||
end
|
||||
end
|
||||
|
||||
describe "#wp_org_item?" do
|
||||
it "sould return true" do
|
||||
describe '#wp_org_item?' do
|
||||
it 'sould return true' do
|
||||
instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "w3-total-cache",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'w3-total-cache',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins'
|
||||
)
|
||||
instance.wp_org_item?.should be_true
|
||||
end
|
||||
|
||||
it "sould return true" do
|
||||
it 'sould return true' do
|
||||
instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "twentyten",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "themes"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'twentyten',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'themes'
|
||||
)
|
||||
instance.wp_org_item?.should be_true
|
||||
end
|
||||
|
||||
it "sould return false" do
|
||||
it 'sould return false' do
|
||||
instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "can_not_be_in_repository",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "plugins"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'can_not_be_in_repository',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'plugins'
|
||||
)
|
||||
instance.wp_org_item?.should be_false
|
||||
end
|
||||
|
||||
it "sould return false" do
|
||||
it 'sould return false' do
|
||||
instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "can_not_be_in_repository",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "themes"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'can_not_be_in_repository',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'themes'
|
||||
)
|
||||
instance.wp_org_item?.should be_false
|
||||
end
|
||||
|
||||
it "sould raise an exception" do
|
||||
it 'sould raise an exception' do
|
||||
instance = WpItem.new(
|
||||
:base_url => "http://sub.example.com/path/to/wordpress/",
|
||||
:path => "test/asdf.php",
|
||||
:vulns_file => "XXX.xml",
|
||||
:name => "test",
|
||||
:vulns_xpath => "XX",
|
||||
:type => "invalid"
|
||||
base_url: 'http://sub.example.com/path/to/wordpress/',
|
||||
path: 'test/asdf.php',
|
||||
vulns_file: 'XXX.xml',
|
||||
name: 'test',
|
||||
vulns_xpath: 'XX',
|
||||
type: 'invalid'
|
||||
)
|
||||
expect { instance.wp_org_item? }.to raise_error(RuntimeError, "Unknown type invalid")
|
||||
expect { instance.wp_org_item? }.to raise_error(RuntimeError, 'Unknown type invalid')
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user