我为使用Rails创建帖子创建了一个小脚手架,但是使用标准表单erb
我创建了一个简单的React组件(我使用了gem react-rails和browserify-rails)。
您可以找到包含所有源代码here 的示例回购!
React组件如下所示:
class NewPostForm extends React.Component {
constructor(props) {
super(props)
this.state = {}
}
render() {
return(
<form action="/posts" accept-charset="UTF-8" method="post">
<input name="utf8" type="hidden" value="✓"/>
<input type="hidden" name="authenticity_token" value={this.props.authenticityToken}/>
<div className="field">
<label for="post_title">Title</label>
<input type="text" name="post[title]" id="post_title" onChange={(e) => this.setState({title: e.target.value})} />
</div>
<div className="field">
<label for="post_body">Body</label>
<textarea name="post[body]" id="post_body" onChange={(e) => this.setState({body: e.target.value})}></textarea>
</div>
{ this.state.title &&
<div class="actions">
<input type="submit" name="commit" value="Create Post" data-disable-with="Create Post"/>
</div>
}
</form>
)
}
}
请注意,只有填写了标题输入字段时,才会将提交按钮添加到DOM中。
文件app/views/posts/_form.html.erb
是:
<%= react_component 'NewPostForm', {authenticityToken: form_authenticity_token.to_s}, {prerender: true} %>
现在我已经创建了使用Capybara的集成测试:
require 'test_helper'
class PostCreationTest < ActionDispatch::IntegrationTest
test "post creation" do
visit new_post_path
fill_in 'post[title]', with: 'Big News'
fill_in 'post[body]', with: 'Superman is dead!'
click_button 'Create Post' # <=== DO NOT FIND THIS BUTTON CAUSE IS ADDED WITH REACT
assert page.has_content?('Post was successfully created.')
end
end
测试因此错误而失败:
Run options: --seed 21811
# Running:
E
Error:
PostCreationTest#test_post_creation:
Capybara::ElementNotFound: Unable to find visible button "Create Post"
test/integration/post_creation_test.rb:9:in `block in <class:PostCreationTest>'
bin/rails test test/integration/post_creation_test.rb:5
在test_helper.rb中,我已将Capybara配置为使用恶作剧驱动程序。
Capybara.register_driver :poltergeist do |app|
Capybara::Poltergeist::Driver.new(app, {
js_errors: false,
phantomjs_options: ['--ignore-ssl-errors=yes', '--ssl-protocol=any'],
debug: false,
timeout: 500,
phantomjs: File.absolute_path(Phantomjs.path)
})
end
Capybara.javascript_driver = :poltergeist
Capybara.server_port = 3001
如果我总是在反应组件中显示提交按钮(删除{ this.state.title &&
),则测试成功通过。
那么,有一种方法可以使用此设置和React组件进行此测试吗?
答案 0 :(得分:3)
这里有几个问题。首先,您实际上并没有使用支持JS的驱动程序运行测试。您已将poltergeist
配置为与Capybara一起使用,但您从未通过设置Capybara.current_driver
告诉Capybara使用if您要使用的特定测试 - 请参阅https://github.com/teamcapybara/capybara#using-capybara-with-minitest
为失败的测试添加Capybara.current_driver = Capybara.javascript_driver
会带来您的下一个问题。
PhantomJS(由Poltergeist使用)目前不支持ES5.1 + JS或现代CSS,因此如果你想使用它,你需要填充并转换回ES5级别。如果您停止在您的Poltergeist配置(js_errors: true
)中隐藏JS错误,这将立即变得清晰。由此产生的初始错误是您的代码使用的Map
类在ES6 / 2015之前未添加,因此Poltergeist(不使用polyfill)不支持它。
作为Capybara JS测试的初学者,你可能最好开始使用selenium进行JS测试(这样你就可以看到发生了什么并支持现代JS / CSS),然后当测试工作时可能会停留用硒和无头铬或无头FF。
Capybara.javascript_driver = :selenium # or :selenium_chrome