1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
|
require 'helper'
RSpec.describe AST::Node do
include AST::Sexp
class MetaNode < AST::Node
attr_reader :meta
end
class SubclassNode < AST::Node
def initialize(*)
super
nil
end
end
before do
@node = AST::Node.new(:node, [ 0, 1 ])
@metanode = MetaNode.new(:node, [ 0, 1 ], :meta => 'value')
@subclass_node = SubclassNode.new(:node, [ 0, 1 ])
end
it 'should have accessors for type and children' do
expect(@node.type).to eq :node
expect(@node.children).to eq [0, 1]
end
it 'should set metadata' do
expect(@metanode.meta).to eq 'value'
end
it 'should be frozen' do
expect(@node.frozen?).to be true
expect(@node.children.frozen?).to be true
end
it 'should return self when duping' do
expect(@node.dup).to be @node
end
it 'should return self when cloning' do
expect(@node.clone).to be @node
end
it 'should return an updated node, but only if needed' do
expect(@node.updated()).to be @node
expect(@node.updated(:node)).to be @node
expect(@node.updated(nil, [0, 1])).to be @node
updated = @node.updated(:other_node)
expect(updated).to_not be @node
expect(updated.type).to eq :other_node
expect(updated.children).to eq @node.children
expect(updated.frozen?).to eq true
updated = @node.updated(nil, [1, 1])
expect(updated).to_not be @node
expect(updated.type).to eq @node.type
expect(updated.children).to eq [1, 1]
updated = @metanode.updated(nil, nil, :meta => 'other_value')
expect(updated.meta).to eq 'other_value'
end
it 'returns updated node for subclasses that override constructor' do
updated = @subclass_node.updated(nil, [2])
expect(updated.type).to eq :node
expect(updated.children).to eq [2]
end
it 'should format to_sexp correctly' do
a = AST::Node.new(:a, [ :sym, [ 1, 2 ] ]).to_sexp
expect(a).to eq '(a :sym [1, 2])'
b = AST::Node.new(:a, [ :sym, @node ]).to_sexp
expect(b).to eq "(a :sym\n (node 0 1))"
c = AST::Node.new(:a, [ :sym,
AST::Node.new(:b, [ @node, @node ])
]).to_sexp
expect(c).to eq "(a :sym\n (b\n (node 0 1)\n (node 0 1)))"
end
it 'should format to_s correctly' do
a = AST::Node.new(:a, [ :sym, [ 1, 2 ] ]).to_s
expect(a).to eq '(a :sym [1, 2])'
b = AST::Node.new(:a, [ :sym, @node ]).to_s
expect(b).to eq "(a :sym\n (node 0 1))"
c = AST::Node.new(:a, [ :sym,
AST::Node.new(:b, [ @node, @node ])
]).to_s
expect(c).to eq "(a :sym\n (b\n (node 0 1)\n (node 0 1)))"
end
it 'should format inspect correctly' do
a = AST::Node.new(:a, [ :sym, [ 1, 2 ] ]).inspect
expect(a).to eq "s(:a, :sym, [1, 2])"
b = AST::Node.new(:a, [ :sym,
AST::Node.new(:b, [ @node, @node ])
]).inspect
expect(b).to eq "s(:a, :sym,\n s(:b,\n s(:node, 0, 1),\n s(:node, 0, 1)))"
end
it 'should recreate inspect output' do
simple_node = AST::Node.new(:a, [ :sym, [ 1, 2 ] ])
a = eval(simple_node.inspect)
expect(a).to eq simple_node
end
it 'should recreate inspect output' do
complex_node = s(:a , :sym, s(:b, s(:node, 0, 1), s(:node, 0, 1)))
b = eval(complex_node.inspect)
expect(b).to eq complex_node
end
it 'should return self in to_ast' do
expect(@node.to_ast).to be @node
end
it 'should produce to_sexp_array correctly' do
a = AST::Node.new(:a, [ :sym, [ 1, 2 ] ]).to_sexp_array
expect(a).to eq [:a, :sym, [1, 2]]
b = AST::Node.new(:a, [ :sym,
AST::Node.new(:b, [ @node, @node ])
]).to_sexp_array
expect(b).to eq [:a, :sym, [:b, [:node, 0, 1], [:node, 0, 1]]]
end
it 'should only use type and children to compute #hash' do
expect(@node.hash).to eq([@node.type, @node.children, @node.class].hash)
end
it 'should only use type and children in #eql? comparisons' do
# Not identical but equivalent
expect(@node.eql?(AST::Node.new(:node, [0, 1]))).to eq true
# Not identical and not equivalent
expect(@node.eql?(AST::Node.new(:other, [0, 1]))).to eq false
# Not identical and not equivalent because of differend class
expect(@node.eql?(@metanode)).to eq false
end
it 'should only use type and children in #== comparisons' do
expect(@node).to eq @node
expect(@node).to eq @metanode
expect(@node).to_not eq :foo
mock_node = Object.new.tap do |obj|
def obj.to_ast
self
end
def obj.type
:node
end
def obj.children
[ 0, 1 ]
end
end
expect(@node).to eq mock_node
end
it 'should allow to decompose nodes with a, b = *node' do
node = s(:gasgn, :$foo, s(:integer, 1))
var_name, value = *node
expected = s(:integer, 1)
expect(var_name).to eq :$foo
expect(value).to eq expected
end
it 'should concatenate with arrays' do
node = s(:gasgn, :$foo)
array = [s(:integer, 1)]
expected = s(:gasgn, :$foo, s(:integer, 1))
expect(node + array).to eq expected
end
it 'should append elements' do
node = s(:array)
a = s(:integer, 1)
b = s(:string, "foo")
expected = s(:array, s(:integer, 1), s(:string, "foo"))
expect(node << a << b).to eq expected
end
it 'should not trigger a rubinius bug' do
bar = [ s(:bar, 1) ]
baz = s(:baz, 2)
value = s(:foo, *bar, baz)
expected = s(:foo, s(:bar, 1), s(:baz, 2))
expect(value).to eq expected
end
it 'should be matchable' do
baz = s(:baz, s(:bar, 1), 2)
r = case baz
in [:baz, [:bar, val], Integer] then val
else
:no_match
end
expect(r).to eq 1
end
end
describe AST::Processor do
include AST::Sexp
def have_sexp(text)
text = text.lines.map { |line| line.sub /^ +\|(.+)/, '\1' }.join.rstrip
lambda { |ast| ast.to_sexp == text }
end
class MockProcessor < AST::Processor
attr_reader :counts
def initialize
@counts = Hash.new(0)
end
def on_root(node)
count_node(node)
node.updated(nil, process_all(node.children))
end
alias on_body on_root
def on_def(node)
count_node(node)
name, arglist, body = node.children
node.updated(:def, [ name, process(arglist), process(body) ])
end
def handler_missing(node)
count_node(node)
end
def count_node(node)
@counts[node.type] += 1; nil
end
end
before do
@ast = AST::Node.new(:root, [
AST::Node.new(:def, [ :func,
AST::Node.new(:arglist, [ :foo, :bar ]),
AST::Node.new(:body, [
AST::Node.new(:invoke, [ :puts, "Hello world" ])
])
]),
AST::Node.new(:invoke, [ :func ])
])
@processor = MockProcessor.new
end
it 'should visit every node' do
expect(@processor.process(@ast)).to eq @ast
expect(@processor.counts).to eq({
:root => 1,
:def => 1,
:arglist => 1,
:body => 1,
:invoke => 2,
})
end
it 'should be able to replace inner nodes' do
def @processor.on_arglist(node)
node.updated(:new_fancy_arglist)
end
expect(have_sexp(<<-SEXP).call(@processor.process(@ast))).to be true
|(root
| (def :func
| (new-fancy-arglist :foo :bar)
| (body
| (invoke :puts "Hello world")))
| (invoke :func))
SEXP
end
it 'should build sexps' do
a = s(:add,
s(:integer, 1),
s(:multiply,
s(:integer, 2),
s(:integer, 3)))
expect(have_sexp(<<-SEXP).call(a)).to be true
|(add
| (integer 1)
| (multiply
| (integer 2)
| (integer 3)))
SEXP
end
it 'should return nil if passed nil' do
expect(@processor.process(nil)).to eq nil
end
it 'should refuse to process non-nodes' do
expect { @processor.process([]) }.to raise_error NoMethodError, %r|to_ast|
end
it 'should allow to visit nodes with process_all(node)' do
value = s(:foo, s(:bar), s(:integer, 1))
@processor.process_all value
expect(@processor.counts).to eq({
:bar => 1,
:integer => 1,
})
end
end
|