我尝试了这个解决方案https://gist.github.com/alexeyrazuvaev/98448c9935352fac5ee96e139bc3bd72,但它并不适用于我的测试。尝试在浏览器中重现它,它按预期工作。我无法弄清楚我的测试有什么问题。
这是一个例子:
scenario 'they see their name and message in the chat box', js: true do
find('textarea#message_content').send_keys(:enter)
is_expected.to have_selector('p', text: /^#{current_user.name}|foobar$/)
end
其他信息:
cable.yml
redis: &default
adapter: redis
url: redis://localhost:6379/1
production: *default
development: *default
test: *default
规格/支持/ capybara.rb
Capybara.javascript_driver = :webkit
Capybara.server = :puma
Capybara::Webkit.configure do |config|
config.allow_url("https://code.jquery.com/jquery-3.3.1.min.js")
end
test.log中
# ...
Started GET "/cable" for 127.0.0.1 at 2018-01-30 11:21:16 +0800
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2018-01-30 11:21:16 +0800
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
Registered connection (Z2lkOi8vY2hhdHRlci9Vc2VyLzE)
ConversationChannel is transmitting the subscription confirmation
ConversationChannel is streaming from conversation_channel_1
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2018-01-30 11:21:18 +0800
ConversationChannel stopped streaming from conversation_channel_1
# ...
在将其测试到浏览器时服务器日志
# ...
Started GET "/cable" for 127.0.0.1 at 2018-01-29 09:02:02 +0800
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2018-01-29 09:02:02 +0800
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
Registered connection (Z2lkOi8vY2hhdHRlci9Vc2VyLzE)
ConversationChannel is transmitting the subscription confirmation
ConversationChannel is streaming from conversation_channel_11
ConversationChannel#send_message({"content"=>"foobar\n", "conversation_id"=>"11"})
(0.2ms) BEGIN
Conversation Load (0.3ms) SELECT "conversations".* FROM "conversations" WHERE "conversations"."id" = $1 LIMIT $2 [["id", 11], ["LIMIT", 1]]
(0.6ms) SELECT "users"."id" FROM "users" INNER JOIN "user_conversations" ON "users"."id" = "user_conversations"."user_id" WHERE "user_conversations"."conversation_id" = $1 [["conversation_id", 11]]
SQL (12.5ms) INSERT INTO "messages" ("content", "user_id", "conversation_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["content", "foobar\n"], ["user_id", 1], ["conversation_id", 11], ["created_at", "2018-01-29 01:02:18.272060"], ["updated_at", "2018-01-29 01:02:18.272060"]]
(12.4ms) COMMIT
Rendered messages/_message.html.erb (0.8ms)
[ActionCable] Broadcasting to conversation_channel_11: {:message=>"<p>John Doe: foobar\n</p>\n"}
ConversationChannel transmitting {"message"=>"<p>John Doe: foobar\n</p>\n"} (via streamed from conversation_channel_11)
答案 0 :(得分:0)
由于这适用于selenium
驱动程序而不是capybara-webkit
,因此有两种可能性之一。
capybara-webkit
无法正常使用websockets。如果你使用Qt 4.x编译它会是真的,但我相信它应该在使用Qt 5.x - ActionCable not connecting during capybara-webkit feature spec构建时 - 并且日志似乎显示它至少是连接。
您正在使用页面上的JS中的ES6 +功能。 capybara-webkit使用的QtWebkit非常过时,基本上相当于6-7岁的Safari版本,这意味着它不支持ES6 +。因此,如果您在代码中使用了任何ES6 +方法/功能而没有填充和/或转换capybara-webkit,则无法运行JS。由于actioncable
似乎确实在日志中连接了至少部分JS,因此启用&#39; raise_javascript_errors - https://github.com/thoughtbot/capybara-webkit#configuration - in your
capybara-webkit`配置可能会显示错误您在按键处理程序中使用的某些方法不受支持。