gpt4 book ai didi

ruby-on-rails - 使用 Selenium 和 Headless Chrome 进行 Rails 系统测试的 Gitlab CI 配置

转载 作者:行者123 更新时间:2023-12-04 07:39:25 26 4
gpt4 key购买 nike

我正在尝试为一个非常简单的 Rails 项目设置持续的 Gitlab 集成,尽管我进行了所有搜索,但找不到任何可行的解决方案来使用 headless Chrome 进行系统测试。

这是我的 .gitlab-ci.yml 文件:

image: 'ruby:2.6.3'


before_script:
- curl -sL https://deb.nodesource.com/setup_11.x | bash -
- apt-get install -y nodejs
- apt-get install -y npm
- gem install bundler --conservative
- bundle install
- npm install -g yarn
- yarn install

stages:
- test

test:
stage: test
variables:
MYSQL_HOST: 'mysql'
MYSQL_DATABASE: 'cwrmb_test'
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
SYSTEM_EMAIL: 'test@example.com'
REDIS_URL: 'redis://redis:6379/'
SELENIUM_URL: "http://selenium__standalone-chrome:4444/wd/hub"
services:
- redis:latest
- selenium/standalone-chrome:latest
- name: mysql:latest
command: ['--default-authentication-plugin=mysql_native_password']
script:
- RAILS_ENV=test bin/rails db:setup
- bin/rails test:system

这是我的application_system_test_case.rb:

require 'test_helper'

def selenium_options
driver_options = {
desired_capabilities: {
chromeOptions: {
args: %w[headless disable-gpu no-sandbox disable-dev-shm-usage]
}
}
}
driver_options[:url] = ENV['SELENIUM_URL'] if ENV['SELENIUM_URL']
driver_options
end

class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
driven_by :selenium, using: :chrome, screen_size: [1400, 1400], options: selenium_options
end

但是,此配置会为每个系统测试产生以下错误:

Selenium::WebDriver::Error::UnknownError: java.net.ConnectException: Connection refused(连接被拒绝)

我认为此配置文件中没有任何其他错误(与 Redis 或 MySQL 有关),因为只要我省略系统测试,一切都会完美运行。

顺便说一句,如果有人有更好的配置文件来实现相同的目标,我很想看看其他人是怎么做的。提前致谢。

最佳答案

how services are linked to the jobaccessing the services它说,如果你启动一个 tutum/wordpress 容器(通过 service 节);

tutum/wordpress will be started and you will have access to it from your build container under two hostnames to choose from:

  • tutum-wordpress
  • tutum__wordpress

Note: Hostnames with underscores are not RFC valid and may cause problems in 3rd party applications

下面是我将如何进行:

  • 尝试使用 http://selenium-standalone-chrome:4444/wd/hub 虽然这似乎是一个低概率的解决方案..
  • 在您的测试驱动程序中输出 SELENIUM_URL。是否设置正确?
  • 查看 how the health check of services works 中的日志. standalone-chrome 即将推出吗?
  • 在某处添加pingnslookupselenium-standalone-chrome(或替代方案)是否正在解析?看起来确实如此,否则我们会得到“主机名未知”而不是“连接被拒绝”,但您永远无法确定。

关于ruby-on-rails - 使用 Selenium 和 Headless Chrome 进行 Rails 系统测试的 Gitlab CI 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56894827/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com