1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/journey/gtg/builder_test.rb
Ryuta Kamizono 639f5fda30 Remove unused journey code
Journey was integrated into Action Dispatch at 56fee39, but from that
time, almost all NFA namespace code were not used.
2020-04-25 00:40:37 +09:00

81 lines
1.9 KiB
Ruby

# frozen_string_literal: true
require "abstract_unit"
module ActionDispatch
module Journey
module GTG
class TestBuilder < ActiveSupport::TestCase
def test_following_states_multi
table = tt ["a|a"]
assert_equal 1, table.move([0], "a").length
end
def test_following_states_multi_regexp
table = tt [":a|b"]
assert_equal 1, table.move([0], "fooo").length
assert_equal 2, table.move([0], "b").length
end
def test_multi_path
table = tt ["/:a/d", "/b/c"]
[
[1, "/"],
[2, "b"],
[2, "/"],
[1, "c"],
].inject([0]) { |state, (exp, sym)|
new = table.move(state, sym)
assert_equal exp, new.length
new
}
end
def test_match_data_ambiguous
table = tt %w{
/articles(.:format)
/articles/new(.:format)
/articles/:id/edit(.:format)
/articles/:id(.:format)
}
sim = Simulator.new table
memos = sim.memos "/articles/new"
assert_equal 2, memos.length
end
##
# Identical Routes may have different restrictions.
def test_match_same_paths
table = tt %w{
/articles/new(.:format)
/articles/new(.:format)
}
sim = Simulator.new table
memos = sim.memos "/articles/new"
assert_equal 2, memos.length
end
private
def ast(strings)
parser = Journey::Parser.new
asts = strings.map { |string|
memo = Object.new
ast = parser.parse string
ast.each { |n| n.memo = memo }
ast
}
Nodes::Or.new asts
end
def tt(strings)
Builder.new(ast(strings)).transition_table
end
end
end
end
end