Я пытаюсь заставить assert_select работать с необработанным текстом.Ниже приведено то, что у меня есть, но когда я выполняю выбор, он говорит, что совпадений нет.Я также прикрепил фрагмент из метода assert_select, который показывает, что принятие объекта HTML :: Node выполнимо (я также пытался обернуть извлеченный HTML в теги html / body)
# Controller test
test "edit form contains all required fields" do
group = groups(:a_group)
user = users(:group_member)
post = create_post(user, :group_ids => group.id)
xhr :get, :edit, {:id => post.id}, {:user_id => user.id}
node = convert_js_to_node(@response.body, "form")
puts node.inspect
assert_select node, "form"
assert_select node, "input[type=text]"
end
# test_helper.rb method
def convert_js_to_node(js, enclosing_tag)
regex = Regexp.new("(\<#{enclosing_tag}.*#{enclosing_tag}\>)")
HTML::Node.new( js.match(regex)[0] )
end
## Test output
Loaded suite functional/posts_controller_test
Started
#<HTML::Node:0x1050e6040 @line=0, @children=[], @parent="<form accept-charset=\\\"UTF-8\\\" action=\\\"/posts/1023110311\\\" class=\\\"edit_post\\\" data-post-id=\\\"1023110311\\\" data-remote=\\\"true\\\" id=\\\"edit_post_1023110311\\\" method=\\\"post\\\"><div style=\\\"margin:0;padding:0;display:inline\\\"><input name=\\\"utf8\\\" type=\\\"hidden\\\" value=\\\"✓\\\" /><input name=\\\"_method\\\" type=\\\"hidden\\\" value=\\\"put\\\" /><\\/div>\\n\t\t<h3>Edit post<\\/h3>\\n\t\t<h5><img alt=\\\"Contact\\\" class=\\\"icon\\\" height=\\\"16\\\" src=\\\"/images/contact.png?1288409655\\\" width=\\\"16\\\" /> in some where<\\/h5>\\n\t\t\t\\n\t\t<div id=\\\"post_content\\\" class=\\\"clearfix clear\\\"
1) Failure:
test_edit_form_contains_all_required_fields(PostsControllerTest)
[]:
Expected at least 1 element matching "form", found 0.
<false> is not true.
# File actionpack/lib/action_controller/assertions/selector_assertions.rb, line 201
def assert_select(*args, &block)
# Start with optional element followed by mandatory selector.
arg = args.shift
if arg.is_a?(HTML::Node)
# First argument is a node (tag or text, but also HTML root),
# so we know what we're selecting from.
root = arg
arg = args.shift
elsif arg == nil
...