Revamp compiler "following" specs
This commit is contained in:
parent
824c897467
commit
a1e7d2d07f
|
@ -308,18 +308,20 @@ module Oga
|
||||||
.else { root.assign(orig_input) }
|
.else { root.assign(orig_input) }
|
||||||
.followed_by(check.assign(self.false))
|
.followed_by(check.assign(self.false))
|
||||||
.followed_by do
|
.followed_by do
|
||||||
root.each_node.add_block(doc_node) do
|
document_or_node(root).if_true do
|
||||||
doc_node.eq(input)
|
root.each_node.add_block(doc_node) do
|
||||||
.if_true do
|
doc_node.eq(input)
|
||||||
check.assign(self.true)
|
.if_true do
|
||||||
.followed_by(throw_message(:skip_children))
|
check.assign(self.true)
|
||||||
end
|
.followed_by(throw_message(:skip_children))
|
||||||
.followed_by do
|
end
|
||||||
check.if_false { send_message(:next) }
|
.followed_by do
|
||||||
end
|
check.if_false { send_message(:next) }
|
||||||
.followed_by do
|
end
|
||||||
process(ast, doc_node).if_true { yield doc_node }
|
.followed_by do
|
||||||
end
|
process(ast, doc_node).if_true { yield doc_node }
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -13,7 +13,7 @@ describe Oga::XPath::Compiler do
|
||||||
</foo>
|
</foo>
|
||||||
<baz></baz>
|
<baz></baz>
|
||||||
</root>
|
</root>
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
@bar1 = @document.children[0].children[0].children[0]
|
@bar1 = @document.children[0].children[0].children[0]
|
||||||
@baz1 = @document.children[0].children[0].children[1]
|
@baz1 = @document.children[0].children[0].children[1]
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
describe Oga::XPath::Compiler do
|
describe Oga::XPath::Compiler do
|
||||||
describe 'following axis' do
|
before do
|
||||||
before do
|
# Strip whitespace so it's easier to retrieve/compare elements.
|
||||||
# Strip whitespace so it's easier to retrieve/compare elements.
|
@document = parse(<<-EOF.strip.gsub(/^\s+|\n/m, ''))
|
||||||
@document = parse(<<-EOF.strip.gsub(/\s+/m, ''))
|
<root foo="bar">
|
||||||
<root>
|
|
||||||
<foo>
|
<foo>
|
||||||
<bar></bar>
|
<bar></bar>
|
||||||
<baz>
|
<baz>
|
||||||
|
@ -14,33 +13,51 @@ describe Oga::XPath::Compiler do
|
||||||
</foo>
|
</foo>
|
||||||
<baz></baz>
|
<baz></baz>
|
||||||
</root>
|
</root>
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
@bar1 = @document.children[0].children[0].children[0]
|
@bar1 = @document.children[0].children[0].children[0]
|
||||||
@baz1 = @document.children[0].children[0].children[1]
|
@baz1 = @document.children[0].children[0].children[1]
|
||||||
@baz2 = @baz1.children[0]
|
@baz2 = @baz1.children[0]
|
||||||
@baz3 = @document.children[0].children[1]
|
@baz3 = @document.children[0].children[1]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe 'relative to a document' do
|
||||||
# This should return an empty set since the document doesn't have any
|
# This should return an empty set since the document doesn't have any
|
||||||
# following nodes.
|
# following nodes.
|
||||||
it 'returns an empty node set for the sibling of a document' do
|
describe 'following::foo' do
|
||||||
evaluate_xpath(@document, 'following::foo').should == node_set
|
it 'returns an empty NodeSet' do
|
||||||
|
evaluate_xpath(@document).should == node_set
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'returns a node set containing the following nodes of root/foo' do
|
describe 'root/foo/following::baz' do
|
||||||
evaluate_xpath(@document, 'root/foo/following::baz')
|
it 'returns a NodeSet' do
|
||||||
.should == node_set(@baz3)
|
evaluate_xpath(@document).should == node_set(@baz3)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'returns a node set containing the following nodes of root/foo/bar' do
|
describe 'root/foo/bar/following::baz' do
|
||||||
evaluate_xpath(@document, 'root/foo/bar/following::baz')
|
it 'returns a NodeSet' do
|
||||||
.should == node_set(@baz1, @baz2, @baz3)
|
evaluate_xpath(@document).should == node_set(@baz1, @baz2, @baz3)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
it 'returns a node set containing the siblings relative to root/foo/bar' do
|
describe 'relative to an element' do
|
||||||
evaluate_xpath(@bar1, 'following::baz')
|
describe 'following::baz' do
|
||||||
.should == node_set(@baz1, @baz2, @baz3)
|
it 'returns a NodeSet' do
|
||||||
|
evaluate_xpath(@bar1).should == node_set(@baz1, @baz2, @baz3)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe 'relative to an attribute' do
|
||||||
|
describe 'following::foo' do
|
||||||
|
it 'returns an empty NodeSet' do
|
||||||
|
root = @document.children[0]
|
||||||
|
|
||||||
|
evaluate_xpath(root.attribute('foo')).should == node_set
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue