a few more tweaks
This commit is contained in:
parent
d3b4747704
commit
da679f87da
@ -266,7 +266,7 @@ module Apache
|
|||||||
end
|
end
|
||||||
|
|
||||||
def initial_blank!
|
def initial_blank!
|
||||||
@conditions.empty ? nil : ''
|
@conditions.empty? ? nil : ''
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_s
|
def to_s
|
||||||
@ -274,11 +274,12 @@ module Apache
|
|||||||
end
|
end
|
||||||
|
|
||||||
def to_a
|
def to_a
|
||||||
[ intial_blank!, @conditions.collect(&:to_s), super ].flatten
|
[ initial_blank!, @conditions.collect(&:to_s), super ].flatten
|
||||||
end
|
end
|
||||||
|
|
||||||
# Test this RewriteRule, ensuring the RewriteConds also match
|
# Test this RewriteRule, ensuring the RewriteConds also match
|
||||||
def test(from, opts = {})
|
def test(from, opts = {})
|
||||||
|
ensure_opts!(opts)
|
||||||
opts[:request_uri] = from
|
opts[:request_uri] = from
|
||||||
result = from
|
result = from
|
||||||
|
|
||||||
@ -287,7 +288,13 @@ module Apache
|
|||||||
result.replace_placeholderize(opts)
|
result.replace_placeholderize(opts)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def ensure_opts!(opts)
|
||||||
|
raise "Options must be a hash" if !opts
|
||||||
|
raise "Options must be a hash" if !opts.kind_of? ::Hash
|
||||||
|
end
|
||||||
|
|
||||||
def match?(from, opts = {})
|
def match?(from, opts = {})
|
||||||
|
ensure_opts!(opts)
|
||||||
opts[:request_uri] = from
|
opts[:request_uri] = from
|
||||||
|
|
||||||
@conditions.each do |cond|
|
@conditions.each do |cond|
|
||||||
|
@ -88,6 +88,10 @@ describe Apache::RewriteRule, "a RewriteRule" do
|
|||||||
it "should not the test" do
|
it "should not the test" do
|
||||||
subject.test('/test', :request_filename => 'test').should == '/test2'
|
subject.test('/test', :request_filename => 'test').should == '/test2'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "should fail if opts is not provided" do
|
||||||
|
lambda { subject.match?('test', nil) }.should raise_error
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe Apache::RewriteCondition, "a RewriteCond" do
|
describe Apache::RewriteCondition, "a RewriteCond" do
|
||||||
|
Loading…
Reference in New Issue
Block a user