Skip to content

Instantly share code, notes, and snippets.

@yahonda
Created January 17, 2023 11:51
Show Gist options
  • Save yahonda/38e25661da84019d29d91c5ef78d0f72 to your computer and use it in GitHub Desktop.
Save yahonda/38e25661da84019d29d91c5ef78d0f72 to your computer and use it in GitHub Desktop.
$ CI=1 docker-compose -f .buildkite/docker-compose.yml run default runner actiontext 'rake test:system'
Creating buildkite_default_run ... done
--- bundle env
## Environment
```
Bundler 2.4.4
Platforms ruby, x86_64-linux
Ruby 3.2.0p0 (2022-12-25 revision a528908271c678360d2d8ca232c178e7cdd340b4) [x86_64-linux]
Full Path /usr/local/bin/ruby
Config Dir /usr/local/etc
RubyGems 3.4.4
Gem Home /usr/local/bundle
Gem Path /root/.local/share/gem/ruby/3.2.0:/usr/local/lib/ruby/gems/3.2.0:/usr/local/bundle
User Home /root
User Path /root/.local/share/gem/ruby/3.2.0
Bin Dir /usr/local/bundle/bin
Tools
Git 2.30.2
RVM not installed
rbenv not installed
chruby not installed
```
## Bundler Build Metadata
```
Built At 2023-01-16
Git SHA e1c0b50e84
Released Version true
```
## Bundler settings
```
app_config
Set via BUNDLE_APP_CONFIG: "/usr/local/bundle"
jobs
Set for your local app (/usr/local/bundle/config): 8
silence_root_warning
Set via BUNDLE_SILENCE_ROOT_WARNING: true
```
## Gemfile
### Gemfile
```ruby
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
if RUBY_VERSION < "3"
gem "minitest", ">= 5.15.0", "< 5.16"
else
gem "minitest", ">= 5.15.0"
end
# We need a newish Rake since Active Job sets its test tasks' descriptions.
gem "rake", ">= 13"
gem "sprockets-rails", ">= 2.0.0"
gem "propshaft", ">= 0.1.7"
gem "capybara", ">= 3.38"
gem "selenium-webdriver", ">= 4.0.0"
gem "rack-cache", "~> 1.2"
gem "stimulus-rails"
gem "turbo-rails"
gem "jsbundling-rails"
gem "cssbundling-rails"
gem "importmap-rails"
gem "tailwindcss-rails"
# require: false so bcrypt is loaded only when has_secure_password is used.
# This is to avoid Active Model (and by extension the entire framework)
# being dependent on a binary library.
gem "bcrypt", "~> 3.1.11", require: false
# This needs to be with require false to avoid it being automatically loaded by
# sprockets.
gem "terser", ">= 1.1.4", require: false
# Explicitly avoid 1.x that doesn't support Ruby 2.4+
gem "json", ">= 2.0.0"
# Workaround until Ruby ships with cgi version 0.3.6 or higher.
gem "cgi", ">= 0.3.6", require: false
group :rubocop do
gem "rubocop", ">= 1.25.1", require: false
gem "rubocop-minitest", require: false
gem "rubocop-packaging", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
end
group :doc do
gem "sdoc", ">= 2.6.0"
gem "redcarpet", "~> 3.2.3", platforms: :ruby
gem "w3c_validators", "~> 1.3.6"
gem "rouge"
gem "rubyzip", "~> 2.0"
end
# Active Support
gem "dalli", ">= 3.0.1"
gem "listen", "~> 3.3", require: false
gem "libxml-ruby", platforms: :ruby
gem "connection_pool", require: false
gem "rexml", require: false
# for railties
gem "bootsnap", ">= 1.4.4", require: false
gem "webrick", require: false
gem "jbuilder", require: false
gem "web-console", require: false
# Active Job
group :job do
gem "resque", require: false
gem "resque-scheduler", require: false
gem "sidekiq", require: false
gem "sucker_punch", require: false
gem "delayed_job", require: false
gem "queue_classic", ">= 4.0.0", require: false, platforms: :ruby
gem "sneakers", require: false
gem "backburner", require: false
gem "delayed_job_active_record", require: false
gem "sequel", require: false
end
# Action Cable
group :cable do
gem "puma", ">= 5.0.3", require: false
gem "redis", ">= 4.0.1", require: false
gem "redis-namespace"
gem "websocket-client-simple", github: "matthewd/websocket-client-simple", branch: "close-race", require: false
end
# Active Storage
group :storage do
gem "aws-sdk-s3", require: false
gem "google-cloud-storage", "~> 1.11", require: false
gem "azure-storage-blob", "~> 2.0", require: false
gem "image_processing", "~> 1.2"
end
# Action Mailbox
gem "aws-sdk-sns", require: false
gem "webmock"
group :ujs do
gem "webdrivers"
end
# Add your own local bundler stuff.
local_gemfile = File.expand_path(".Gemfile", __dir__)
instance_eval File.read local_gemfile if File.exist? local_gemfile
group :test do
gem "minitest-bisect"
gem "minitest-ci", require: false
gem "minitest-retry"
platforms :mri do
gem "stackprof"
gem "debug", ">= 1.1.0", require: false
end
gem "benchmark-ips"
end
platforms :ruby, :windows do
gem "nokogiri", ">= 1.8.1", "!= 1.11.0"
# Needed for compiling the ActionDispatch::Journey parser.
gem "racc", ">=1.4.6", require: false
# Active Record.
gem "sqlite3", "~> 1.4"
group :db do
gem "pg", "~> 1.3"
gem "mysql2", "~> 0.5"
end
end
platforms :jruby do
if ENV["AR_JDBC"]
gem "activerecord-jdbcsqlite3-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
group :db do
gem "activerecord-jdbcmysql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
gem "activerecord-jdbcpostgresql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
end
else
gem "activerecord-jdbcsqlite3-adapter", ">= 1.3.0"
group :db do
gem "activerecord-jdbcmysql-adapter", ">= 1.3.0"
gem "activerecord-jdbcpostgresql-adapter", ">= 1.3.0"
end
end
end
# Gems that are necessary for Active Record tests with Oracle.
if ENV["ORACLE_ENHANCED"]
platforms :ruby do
gem "ruby-oci8", "~> 2.2"
end
gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "master"
end
gem "tzinfo-data", platforms: [:windows, :jruby]
gem "wdm", ">= 0.1.0", platforms: [:windows]
# The error_highlight gem only works on CRuby 3.1 or later.
# Also, Rails depends on a new API available since error_highlight 0.4.0.
# (Note that Ruby 3.1 bundles error_highlight 0.3.0.)
if RUBY_VERSION >= "3.1"
gem "error_highlight", ">= 0.4.0", platforms: [:ruby]
end
```
### Gemfile.lock
```
GIT
remote: https://github.com/matthewd/websocket-client-simple.git
revision: e161305f1a466b9398d86df3b1731b03362da91b
branch: close-race
specs:
websocket-client-simple (0.3.0)
event_emitter
websocket
PATH
remote: .
specs:
actioncable (7.1.0.alpha)
actionpack (= 7.1.0.alpha)
activesupport (= 7.1.0.alpha)
nio4r (~> 2.0)
websocket-driver (>= 0.6.1)
zeitwerk (~> 2.6)
actionmailbox (7.1.0.alpha)
actionpack (= 7.1.0.alpha)
activejob (= 7.1.0.alpha)
activerecord (= 7.1.0.alpha)
activestorage (= 7.1.0.alpha)
activesupport (= 7.1.0.alpha)
mail (>= 2.7.1)
net-imap
net-pop
net-smtp
actionmailer (7.1.0.alpha)
actionpack (= 7.1.0.alpha)
actionview (= 7.1.0.alpha)
activejob (= 7.1.0.alpha)
activesupport (= 7.1.0.alpha)
mail (~> 2.5, >= 2.5.4)
net-imap
net-pop
net-smtp
rails-dom-testing (~> 2.0)
actionpack (7.1.0.alpha)
actionview (= 7.1.0.alpha)
activesupport (= 7.1.0.alpha)
rack (~> 2.0, >= 2.2.4)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.2.0)
actiontext (7.1.0.alpha)
actionpack (= 7.1.0.alpha)
activerecord (= 7.1.0.alpha)
activestorage (= 7.1.0.alpha)
activesupport (= 7.1.0.alpha)
globalid (>= 0.6.0)
nokogiri (>= 1.8.5)
actionview (7.1.0.alpha)
activesupport (= 7.1.0.alpha)
builder (~> 3.1)
erubi (~> 1.11)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
activejob (7.1.0.alpha)
activesupport (= 7.1.0.alpha)
globalid (>= 0.3.6)
activemodel (7.1.0.alpha)
activesupport (= 7.1.0.alpha)
activerecord (7.1.0.alpha)
activemodel (= 7.1.0.alpha)
activesupport (= 7.1.0.alpha)
activestorage (7.1.0.alpha)
actionpack (= 7.1.0.alpha)
activejob (= 7.1.0.alpha)
activerecord (= 7.1.0.alpha)
activesupport (= 7.1.0.alpha)
marcel (~> 1.0)
mini_mime (>= 1.1.0)
activesupport (7.1.0.alpha)
concurrent-ruby (~> 1.0, >= 1.0.2)
connection_pool (>= 2.2.5)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
rails (7.1.0.alpha)
actioncable (= 7.1.0.alpha)
actionmailbox (= 7.1.0.alpha)
actionmailer (= 7.1.0.alpha)
actionpack (= 7.1.0.alpha)
actiontext (= 7.1.0.alpha)
actionview (= 7.1.0.alpha)
activejob (= 7.1.0.alpha)
activemodel (= 7.1.0.alpha)
activerecord (= 7.1.0.alpha)
activestorage (= 7.1.0.alpha)
activesupport (= 7.1.0.alpha)
bundler (>= 1.15.0)
railties (= 7.1.0.alpha)
railties (7.1.0.alpha)
actionpack (= 7.1.0.alpha)
activesupport (= 7.1.0.alpha)
rake (>= 12.2)
thor (~> 1.0)
zeitwerk (~> 2.6)
GEM
remote: https://rubygems.org/
specs:
activerecord-jdbc-adapter (1.3.25)
activerecord (>= 2.2, < 5.0)
activerecord-jdbcmysql-adapter (1.3.25)
activerecord-jdbc-adapter (~> 1.3.25)
jdbc-mysql (>= 5.1.22)
activerecord-jdbcpostgresql-adapter (1.3.25)
activerecord-jdbc-adapter (~> 1.3.25)
jdbc-postgres (~> 9.1, <= 9.4.1206)
activerecord-jdbcsqlite3-adapter (1.3.25)
activerecord-jdbc-adapter (~> 1.3.25)
jdbc-sqlite3 (>= 3.7.2, < 3.9)
addressable (2.8.1)
public_suffix (>= 2.0.2, < 6.0)
amq-protocol (2.3.2)
ast (2.4.2)
aws-eventstream (1.2.0)
aws-partitions (1.693.0)
aws-sdk-core (3.168.4)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.651.0)
aws-sigv4 (~> 1.5)
jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.61.0)
aws-sdk-core (~> 3, >= 3.165.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.117.2)
aws-sdk-core (~> 3, >= 3.165.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.4)
aws-sdk-sns (1.57.0)
aws-sdk-core (~> 3, >= 3.165.0)
aws-sigv4 (~> 1.1)
aws-sigv4 (1.5.2)
aws-eventstream (~> 1, >= 1.0.2)
azure-storage-blob (2.0.3)
azure-storage-common (~> 2.0)
nokogiri (~> 1, >= 1.10.8)
azure-storage-common (2.0.4)
faraday (~> 1.0)
faraday_middleware (~> 1.0, >= 1.0.0.rc1)
net-http-persistent (~> 4.0)
nokogiri (~> 1, >= 1.10.8)
backburner (1.6.1)
beaneater (~> 1.0)
concurrent-ruby (~> 1.0, >= 1.0.1)
dante (> 0.1.5)
bcrypt (3.1.18)
beaneater (1.1.3)
benchmark-ips (2.10.0)
bindex (0.8.1)
bootsnap (1.15.0)
msgpack (~> 1.2)
builder (3.2.4)
bunny (2.20.2)
amq-protocol (~> 2.3, >= 2.3.1)
sorted_set (~> 1, >= 1.0.2)
capybara (3.38.0)
addressable
matrix
mini_mime (>= 0.1.3)
nokogiri (~> 1.8)
rack (>= 1.6.0)
rack-test (>= 0.6.3)
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
cgi (0.3.6)
concurrent-ruby (1.1.10)
connection_pool (2.3.0)
crack (0.4.5)
rexml
crass (1.0.6)
cssbundling-rails (1.1.2)
railties (>= 6.0.0)
dalli (3.2.3)
dante (0.2.0)
date (3.3.3)
debug (1.7.1)
declarative (0.0.20)
delayed_job (4.1.11)
activesupport (>= 3.0, < 8.0)
delayed_job_active_record (4.1.7)
activerecord (>= 3.0, < 8.0)
delayed_job (>= 3.0, < 5)
digest-crc (0.6.4)
rake (>= 12.0.0, < 14.0.0)
error_highlight (0.5.1)
erubi (1.12.0)
et-orbi (1.2.7)
tzinfo
event_emitter (0.2.6)
execjs (2.8.1)
faraday (1.10.2)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
faraday-httpclient (~> 1.0)
faraday-multipart (~> 1.0)
faraday-net_http (~> 1.0)
faraday-net_http_persistent (~> 1.0)
faraday-patron (~> 1.0)
faraday-rack (~> 1.0)
faraday-retry (~> 1.0)
ruby2_keywords (>= 0.0.4)
faraday-em_http (1.0.0)
faraday-em_synchrony (1.0.0)
faraday-excon (1.1.0)
faraday-httpclient (1.0.1)
faraday-multipart (1.0.4)
multipart-post (~> 2)
faraday-net_http (1.0.1)
faraday-net_http_persistent (1.2.0)
faraday-patron (1.0.0)
faraday-rack (1.0.0)
faraday-retry (1.0.3)
faraday_middleware (1.2.0)
faraday (~> 1.0)
ffi (1.15.5)
fugit (1.8.0)
et-orbi (~> 1, >= 1.2.7)
raabro (~> 1.4)
globalid (1.0.0)
activesupport (>= 5.0)
google-apis-core (0.9.5)
addressable (~> 2.5, >= 2.5.1)
googleauth (>= 0.16.2, < 2.a)
httpclient (>= 2.8.1, < 3.a)
mini_mime (~> 1.0)
representable (~> 3.0)
retriable (>= 2.0, < 4.a)
rexml
webrick
google-apis-iamcredentials_v1 (0.16.0)
google-apis-core (>= 0.9.1, < 2.a)
google-apis-storage_v1 (0.19.0)
google-apis-core (>= 0.9.0, < 2.a)
google-cloud-core (1.6.0)
google-cloud-env (~> 1.0)
google-cloud-errors (~> 1.0)
google-cloud-env (1.6.0)
faraday (>= 0.17.3, < 3.0)
google-cloud-errors (1.3.0)
google-cloud-storage (1.44.0)
addressable (~> 2.8)
digest-crc (~> 0.4)
google-apis-iamcredentials_v1 (~> 0.1)
google-apis-storage_v1 (~> 0.19.0)
google-cloud-core (~> 1.6)
googleauth (>= 0.16.2, < 2.a)
mini_mime (~> 1.0)
googleauth (1.3.0)
faraday (>= 0.17.3, < 3.a)
jwt (>= 1.4, < 3.0)
memoist (~> 0.16)
multi_json (~> 1.11)
os (>= 0.9, < 2.0)
signet (>= 0.16, < 2.a)
hashdiff (1.0.1)
httpclient (2.8.3)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
image_processing (1.12.2)
mini_magick (>= 4.9.5, < 5)
ruby-vips (>= 2.0.17, < 3)
importmap-rails (1.1.5)
actionpack (>= 6.0.0)
railties (>= 6.0.0)
jbuilder (2.11.5)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
jdbc-mysql (8.0.27)
jdbc-postgres (9.4.1206)
jdbc-sqlite3 (3.8.11.2)
jmespath (1.6.2)
jsbundling-rails (1.1.1)
railties (>= 6.0.0)
json (2.6.3)
jwt (2.6.0)
libxml-ruby (4.0.0)
listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
loofah (2.19.1)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.8.0.1)
mini_mime (>= 0.1.1)
net-imap
net-pop
net-smtp
marcel (1.0.2)
matrix (0.4.2)
memoist (0.16.2)
mini_magick (4.12.0)
mini_mime (1.1.2)
minitest (5.17.0)
minitest-bisect (1.6.0)
minitest-server (~> 1.0)
path_expander (~> 1.1)
minitest-ci (3.4.0)
minitest (>= 5.0.6)
minitest-retry (0.2.2)
minitest (>= 5.0)
minitest-server (1.0.7)
minitest (~> 5.16)
mono_logger (1.1.1)
msgpack (1.6.0)
multi_json (1.15.0)
multipart-post (2.2.3)
mustermann (3.0.0)
ruby2_keywords (~> 0.0.1)
mysql2 (0.5.4)
net-http-persistent (4.0.1)
connection_pool (~> 2.2)
net-imap (0.3.4)
date
net-protocol
net-pop (0.1.2)
net-protocol
net-protocol (0.2.1)
timeout
net-smtp (0.3.3)
net-protocol
nio4r (2.5.8)
nokogiri (1.14.0-x86_64-linux)
racc (~> 1.4)
os (1.1.4)
parallel (1.22.1)
parser (3.2.0.0)
ast (~> 2.4.1)
path_expander (1.1.1)
pg (1.4.5)
propshaft (0.6.4)
actionpack (>= 7.0.0)
activesupport (>= 7.0.0)
rack
railties (>= 7.0.0)
psych (5.0.1)
stringio
public_suffix (5.0.1)
puma (6.0.2)
nio4r (~> 2.0)
queue_classic (4.0.0)
pg (>= 1.1, < 2.0)
raabro (1.4.0)
racc (1.6.2)
rack (2.2.6)
rack-cache (1.13.0)
rack (>= 0.4)
rack-protection (3.0.5)
rack
rack-test (2.0.2)
rack (>= 1.3)
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
rails-html-sanitizer (1.4.4)
loofah (~> 2.19, >= 2.19.1)
rainbow (3.1.1)
rake (13.0.6)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rbtree (0.4.6)
rdoc (6.5.0)
psych (>= 4.0.0)
redcarpet (3.2.3)
redis (5.0.6)
redis-client (>= 0.9.0)
redis-client (0.12.1)
connection_pool
redis-namespace (1.10.0)
redis (>= 4)
regexp_parser (2.6.1)
representable (3.2.0)
declarative (< 0.1.0)
trailblazer-option (>= 0.1.1, < 0.2.0)
uber (< 0.2.0)
resque (2.4.0)
mono_logger (~> 1.0)
multi_json (~> 1.0)
redis-namespace (~> 1.6)
sinatra (>= 0.9.2)
resque-scheduler (4.7.0)
mono_logger (~> 1.0)
redis (>= 3.3)
resque (>= 1.27)
rufus-scheduler (~> 3.2, != 3.3)
retriable (3.1.2)
rexml (3.2.5)
rouge (4.0.1)
rubocop (1.43.0)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 3.2.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.24.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.24.1)
parser (>= 3.1.1.0)
rubocop-minitest (0.26.1)
rubocop (>= 0.90, < 2.0)
rubocop-packaging (0.5.2)
rubocop (>= 1.33, < 2.0)
rubocop-performance (1.15.2)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rails (2.17.4)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0)
ruby-progressbar (1.11.0)
ruby-vips (2.1.4)
ffi (~> 1.12)
ruby2_keywords (0.0.5)
rubyzip (2.3.2)
rufus-scheduler (3.8.2)
fugit (~> 1.1, >= 1.1.6)
sdoc (2.6.0)
rdoc (>= 5.0)
selenium-webdriver (4.7.1)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
sequel (5.64.0)
serverengine (2.0.7)
sigdump (~> 0.2.2)
set (1.0.3)
sidekiq (7.0.3)
concurrent-ruby (< 2)
connection_pool (>= 2.3.0)
rack (>= 2.2.4)
redis-client (>= 0.11.0)
sigdump (0.2.4)
signet (0.17.0)
addressable (~> 2.8)
faraday (>= 0.17.5, < 3.a)
jwt (>= 1.5, < 3.0)
multi_json (~> 1.10)
sinatra (3.0.5)
mustermann (~> 3.0)
rack (~> 2.2, >= 2.2.4)
rack-protection (= 3.0.5)
tilt (~> 2.0)
sneakers (2.11.0)
bunny (~> 2.12)
concurrent-ruby (~> 1.0)
rake
serverengine (~> 2.0.5)
thor
sorted_set (1.0.3)
rbtree
set (~> 1.0)
sprockets (4.2.0)
concurrent-ruby (~> 1.0)
rack (>= 2.2.4, < 4)
sprockets-rails (3.4.2)
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
sqlite3 (1.6.0-x86_64-linux)
stackprof (0.2.23)
stimulus-rails (1.2.1)
railties (>= 6.0.0)
stringio (3.0.4)
sucker_punch (3.1.0)
concurrent-ruby (~> 1.0)
tailwindcss-rails (2.0.21-x86_64-linux)
railties (>= 6.0.0)
terser (1.1.13)
execjs (>= 0.3.0, < 3)
thor (1.2.1)
tilt (2.0.11)
timeout (0.3.1)
trailblazer-option (0.1.2)
turbo-rails (1.3.2)
actionpack (>= 6.0.0)
activejob (>= 6.0.0)
railties (>= 6.0.0)
tzinfo (2.0.5)
concurrent-ruby (~> 1.0)
tzinfo-data (1.2022.7)
tzinfo (>= 1.0.0)
uber (0.1.0)
unicode-display_width (2.4.2)
w3c_validators (1.3.7)
json (>= 1.8)
nokogiri (~> 1.6)
rexml (~> 3.2)
wdm (0.1.1)
web-console (4.2.0)
actionview (>= 6.0.0)
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
webdrivers (5.2.0)
nokogiri (~> 1.6)
rubyzip (>= 1.3.0)
selenium-webdriver (~> 4.0)
webmock (3.18.1)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
webrick (1.7.0)
websocket (1.2.9)
websocket-driver (0.7.5)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
xpath (3.2.0)
nokogiri (~> 1.8)
zeitwerk (2.6.6)
PLATFORMS
x86_64-linux
DEPENDENCIES
activerecord-jdbcmysql-adapter (>= 1.3.0)
activerecord-jdbcpostgresql-adapter (>= 1.3.0)
activerecord-jdbcsqlite3-adapter (>= 1.3.0)
aws-sdk-s3
aws-sdk-sns
azure-storage-blob (~> 2.0)
backburner
bcrypt (~> 3.1.11)
benchmark-ips
bootsnap (>= 1.4.4)
capybara (>= 3.38)
cgi (>= 0.3.6)
connection_pool
cssbundling-rails
dalli (>= 3.0.1)
debug (>= 1.1.0)
delayed_job
delayed_job_active_record
error_highlight (>= 0.4.0)
google-cloud-storage (~> 1.11)
image_processing (~> 1.2)
importmap-rails
jbuilder
jsbundling-rails
json (>= 2.0.0)
libxml-ruby
listen (~> 3.3)
minitest (>= 5.15.0)
minitest-bisect
minitest-ci
minitest-retry
mysql2 (~> 0.5)
nokogiri (>= 1.8.1, != 1.11.0)
pg (~> 1.3)
propshaft (>= 0.1.7)
puma (>= 5.0.3)
queue_classic (>= 4.0.0)
racc (>= 1.4.6)
rack-cache (~> 1.2)
rails!
rake (>= 13)
redcarpet (~> 3.2.3)
redis (>= 4.0.1)
redis-namespace
resque
resque-scheduler
rexml
rouge
rubocop (>= 1.25.1)
rubocop-minitest
rubocop-packaging
rubocop-performance
rubocop-rails
rubyzip (~> 2.0)
sdoc (>= 2.6.0)
selenium-webdriver (>= 4.0.0)
sequel
sidekiq
sneakers
sprockets-rails (>= 2.0.0)
sqlite3 (~> 1.4)
stackprof
stimulus-rails
sucker_punch
tailwindcss-rails
terser (>= 1.1.4)
turbo-rails
tzinfo-data
w3c_validators (~> 1.3.6)
wdm (>= 0.1.0)
web-console
webdrivers
webmock
webrick
websocket-client-simple!
BUNDLED WITH
2.4.4
```
## Gemspecs
### rails.gemspec
```ruby
# frozen_string_literal: true
version = File.read(File.expand_path("RAILS_VERSION", __dir__)).strip
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "rails"
s.version = version
s.summary = "Full-stack web application framework."
s.description = "Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration."
s.required_ruby_version = ">= 2.7.0"
s.required_rubygems_version = ">= 3.3.13"
s.license = "MIT"
s.author = "David Heinemeier Hansson"
s.email = "david@loudthinking.com"
s.homepage = "https://rubyonrails.org"
s.files = ["README.md", "MIT-LICENSE"]
s.metadata = {
"bug_tracker_uri" => "https://github.com/rails/rails/issues",
"changelog_uri" => "https://github.com/rails/rails/releases/tag/v#{version}",
"documentation_uri" => "https://api.rubyonrails.org/v#{version}/",
"mailing_list_uri" => "https://discuss.rubyonrails.org/c/rubyonrails-talk",
"source_code_uri" => "https://github.com/rails/rails/tree/v#{version}",
"rubygems_mfa_required" => "true",
}
s.add_dependency "activesupport", version
s.add_dependency "actionpack", version
s.add_dependency "actionview", version
s.add_dependency "activemodel", version
s.add_dependency "activerecord", version
s.add_dependency "actionmailer", version
s.add_dependency "activejob", version
s.add_dependency "actioncable", version
s.add_dependency "activestorage", version
s.add_dependency "actionmailbox", version
s.add_dependency "actiontext", version
s.add_dependency "railties", version
s.add_dependency "bundler", ">= 1.15.0"
end
```
+++
+++ actiontext: rake test:system
/usr/local/bin/ruby -w -I"lib:test" /usr/local/lib/ruby/gems/3.2.0/gems/rake-13.0.6/lib/rake/rake_test_loader.rb "test/system/system_test_helper_test.rb"
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/date_time_parser.rb:837: warning: statement not reached
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/date_time_parser.rb:691: warning: assigned but unused variable - testEof
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/address_lists_parser.rb:32457: warning: statement not reached
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/address_lists_parser.rb:32618: warning: statement not reached
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/address_lists_parser.rb:32654: warning: statement not reached
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/address_lists_parser.rb:32743: warning: statement not reached
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/address_lists_parser.rb:32759: warning: statement not reached
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/address_lists_parser.rb:32825: warning: statement not reached
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/address_lists_parser.rb:32866: warning: statement not reached
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/address_lists_parser.rb:32891: warning: statement not reached
/usr/local/bundle/gems/mail-2.8.0.1/lib/mail/parsers/address_lists_parser.rb:31987: warning: assigned but unused variable - testEof
/usr/local/bundle/gems/httpclient-2.8.3/lib/httpclient/ssl_config.rb:370: warning: assigned but unused variable - pathlen
/usr/local/bundle/gems/httpclient-2.8.3/lib/httpclient/ssl_config.rb:51: warning: method redefined; discarding old initialize
/usr/local/bundle/gems/httpclient-2.8.3/lib/httpclient/ssl_config.rb:58: warning: method redefined; discarding old add_cert
/usr/local/bundle/gems/httpclient-2.8.3/lib/httpclient/ssl_config.rb:58: warning: method redefined; discarding old add_file
/usr/local/bundle/gems/httpclient-2.8.3/lib/httpclient/ssl_config.rb:58: warning: method redefined; discarding old add_path
/usr/local/bundle/gems/turbo-rails-1.3.2/app/models/concerns/turbo/broadcastable.rb:84: warning: `**' interpreted as argument prefix
Run options: --seed 15363
# Running:
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:633: warning: Expected selenium/webdriver/remote/commands to define Selenium::WebDriver::Remote::COMMANDS but it didn't
E
Error:
ActionText::SystemTestHelperTest#test_filling_in_a_rich-text_area_by_aria-label:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x55a63c928303 <unknown>
#1 0x55a63c6fcd37 <unknown>
#2 0x55a63c725157 <unknown>
#3 0x55a63c721330 <unknown>
#4 0x55a63c7624a6 <unknown>
#5 0x55a63c759753 <unknown>
#6 0x55a63c72ca14 <unknown>
#7 0x55a63c72db7e <unknown>
#8 0x55a63c97732e <unknown>
#9 0x55a63c97ac0e <unknown>
#10 0x55a63c95d610 <unknown>
#11 0x55a63c97bc23 <unknown>
#12 0x55a63c94f545 <unknown>
#13 0x55a63c99c6a8 <unknown>
#14 0x55a63c99c836 <unknown>
#15 0x55a63c9b7d13 <unknown>
#16 0x7fe58eefaea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:175:in `app_host'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:171:in `url_options'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:198:in `call'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:327:in `block in define_url_helper'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `public_send'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `method_missing'
/rails/actiontext/test/system/system_test_helper_test.rb:7:in `setup'
Error:
ActionText::SystemTestHelperTest#test_filling_in_a_rich-text_area_by_aria-label:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x56209cad6303 <unknown>
#1 0x56209c8aad37 <unknown>
#2 0x56209c8d3157 <unknown>
#3 0x56209c8cf330 <unknown>
#4 0x56209c9104a6 <unknown>
#5 0x56209c907753 <unknown>
#6 0x56209c8daa14 <unknown>
#7 0x56209c8dbb7e <unknown>
#8 0x56209cb2532e <unknown>
#9 0x56209cb28c0e <unknown>
#10 0x56209cb0b610 <unknown>
#11 0x56209cb29c23 <unknown>
#12 0x56209cafd545 <unknown>
#13 0x56209cb4a6a8 <unknown>
#14 0x56209cb4a836 <unknown>
#15 0x56209cb65d13 <unknown>
#16 0x7f5cb3906ea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/dsl.rb:46:in `page'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:99:in `save_image'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:36:in `take_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:45:in `take_failed_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb:8:in `before_teardown'
bin/test /rails/actiontext/test/system/system_test_helper_test.rb:22
E
Error:
ActionText::SystemTestHelperTest#test_filling_in_a_rich-text_area_by_label:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x5576f3fec303 <unknown>
#1 0x5576f3dc0d37 <unknown>
#2 0x5576f3de9157 <unknown>
#3 0x5576f3de5330 <unknown>
#4 0x5576f3e264a6 <unknown>
#5 0x5576f3e1d753 <unknown>
#6 0x5576f3df0a14 <unknown>
#7 0x5576f3df1b7e <unknown>
#8 0x5576f403b32e <unknown>
#9 0x5576f403ec0e <unknown>
#10 0x5576f4021610 <unknown>
#11 0x5576f403fc23 <unknown>
#12 0x5576f4013545 <unknown>
#13 0x5576f40606a8 <unknown>
#14 0x5576f4060836 <unknown>
#15 0x5576f407bd13 <unknown>
#16 0x7f36dd0e5ea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:175:in `app_host'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:171:in `url_options'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:198:in `call'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:327:in `block in define_url_helper'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `public_send'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `method_missing'
/rails/actiontext/test/system/system_test_helper_test.rb:7:in `setup'
Error:
ActionText::SystemTestHelperTest#test_filling_in_a_rich-text_area_by_label:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x5581f8489303 <unknown>
#1 0x5581f825dd37 <unknown>
#2 0x5581f8286157 <unknown>
#3 0x5581f8282330 <unknown>
#4 0x5581f82c34a6 <unknown>
#5 0x5581f82ba753 <unknown>
#6 0x5581f828da14 <unknown>
#7 0x5581f828eb7e <unknown>
#8 0x5581f84d832e <unknown>
#9 0x5581f84dbc0e <unknown>
#10 0x5581f84be610 <unknown>
#11 0x5581f84dcc23 <unknown>
#12 0x5581f84b0545 <unknown>
#13 0x5581f84fd6a8 <unknown>
#14 0x5581f84fd836 <unknown>
#15 0x5581f8518d13 <unknown>
#16 0x7f858f8aeea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/dsl.rb:46:in `page'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:99:in `save_image'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:36:in `take_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:45:in `take_failed_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb:8:in `before_teardown'
bin/test /rails/actiontext/test/system/system_test_helper_test.rb:28
E
Error:
ActionText::SystemTestHelperTest#test_filling_in_the_only_rich-text_area:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x55cbaae89303 <unknown>
#1 0x55cbaac5dd37 <unknown>
#2 0x55cbaac86157 <unknown>
#3 0x55cbaac82330 <unknown>
#4 0x55cbaacc34a6 <unknown>
#5 0x55cbaacba753 <unknown>
#6 0x55cbaac8da14 <unknown>
#7 0x55cbaac8eb7e <unknown>
#8 0x55cbaaed832e <unknown>
#9 0x55cbaaedbc0e <unknown>
#10 0x55cbaaebe610 <unknown>
#11 0x55cbaaedcc23 <unknown>
#12 0x55cbaaeb0545 <unknown>
#13 0x55cbaaefd6a8 <unknown>
#14 0x55cbaaefd836 <unknown>
#15 0x55cbaaf18d13 <unknown>
#16 0x7fc5bb72aea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:175:in `app_host'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:171:in `url_options'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:198:in `call'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:327:in `block in define_url_helper'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `public_send'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `method_missing'
/rails/actiontext/test/system/system_test_helper_test.rb:7:in `setup'
Error:
ActionText::SystemTestHelperTest#test_filling_in_the_only_rich-text_area:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x556b26736303 <unknown>
#1 0x556b2650ad37 <unknown>
#2 0x556b26533157 <unknown>
#3 0x556b2652f330 <unknown>
#4 0x556b265704a6 <unknown>
#5 0x556b26567753 <unknown>
#6 0x556b2653aa14 <unknown>
#7 0x556b2653bb7e <unknown>
#8 0x556b2678532e <unknown>
#9 0x556b26788c0e <unknown>
#10 0x556b2676b610 <unknown>
#11 0x556b26789c23 <unknown>
#12 0x556b2675d545 <unknown>
#13 0x556b267aa6a8 <unknown>
#14 0x556b267aa836 <unknown>
#15 0x556b267c5d13 <unknown>
#16 0x7f9eacf68ea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/dsl.rb:46:in `page'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:99:in `save_image'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:36:in `take_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:45:in `take_failed_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb:8:in `before_teardown'
bin/test /rails/actiontext/test/system/system_test_helper_test.rb:40
E
Error:
ActionText::SystemTestHelperTest#test_filling_in_a_rich-text_area_by_ID:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x563de8fb8303 <unknown>
#1 0x563de8d8cd37 <unknown>
#2 0x563de8db5157 <unknown>
#3 0x563de8db1330 <unknown>
#4 0x563de8df24a6 <unknown>
#5 0x563de8de9753 <unknown>
#6 0x563de8dbca14 <unknown>
#7 0x563de8dbdb7e <unknown>
#8 0x563de900732e <unknown>
#9 0x563de900ac0e <unknown>
#10 0x563de8fed610 <unknown>
#11 0x563de900bc23 <unknown>
#12 0x563de8fdf545 <unknown>
#13 0x563de902c6a8 <unknown>
#14 0x563de902c836 <unknown>
#15 0x563de9047d13 <unknown>
#16 0x7fea52836ea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:175:in `app_host'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:171:in `url_options'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:198:in `call'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:327:in `block in define_url_helper'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `public_send'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `method_missing'
/rails/actiontext/test/system/system_test_helper_test.rb:7:in `setup'
Error:
ActionText::SystemTestHelperTest#test_filling_in_a_rich-text_area_by_ID:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x5643cbbf0303 <unknown>
#1 0x5643cb9c4d37 <unknown>
#2 0x5643cb9ed157 <unknown>
#3 0x5643cb9e9330 <unknown>
#4 0x5643cba2a4a6 <unknown>
#5 0x5643cba21753 <unknown>
#6 0x5643cb9f4a14 <unknown>
#7 0x5643cb9f5b7e <unknown>
#8 0x5643cbc3f32e <unknown>
#9 0x5643cbc42c0e <unknown>
#10 0x5643cbc25610 <unknown>
#11 0x5643cbc43c23 <unknown>
#12 0x5643cbc17545 <unknown>
#13 0x5643cbc646a8 <unknown>
#14 0x5643cbc64836 <unknown>
#15 0x5643cbc7fd13 <unknown>
#16 0x7fb018bacea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/dsl.rb:46:in `page'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:99:in `save_image'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:36:in `take_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:45:in `take_failed_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb:8:in `before_teardown'
bin/test /rails/actiontext/test/system/system_test_helper_test.rb:10
E
Error:
ActionText::SystemTestHelperTest#test_filling_in_a_rich-text_area_by_input_name:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x560bd3fe9303 <unknown>
#1 0x560bd3dbdd37 <unknown>
#2 0x560bd3de6157 <unknown>
#3 0x560bd3de2330 <unknown>
#4 0x560bd3e234a6 <unknown>
#5 0x560bd3e1a753 <unknown>
#6 0x560bd3deda14 <unknown>
#7 0x560bd3deeb7e <unknown>
#8 0x560bd403832e <unknown>
#9 0x560bd403bc0e <unknown>
#10 0x560bd401e610 <unknown>
#11 0x560bd403cc23 <unknown>
#12 0x560bd4010545 <unknown>
#13 0x560bd405d6a8 <unknown>
#14 0x560bd405d836 <unknown>
#15 0x560bd4078d13 <unknown>
#16 0x7fc73cc71ea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:175:in `app_host'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:171:in `url_options'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:198:in `call'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:327:in `block in define_url_helper'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `public_send'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `method_missing'
/rails/actiontext/test/system/system_test_helper_test.rb:7:in `setup'
Error:
ActionText::SystemTestHelperTest#test_filling_in_a_rich-text_area_by_input_name:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x55ed99f79303 <unknown>
#1 0x55ed99d4dd37 <unknown>
#2 0x55ed99d76157 <unknown>
#3 0x55ed99d72330 <unknown>
#4 0x55ed99db34a6 <unknown>
#5 0x55ed99daa753 <unknown>
#6 0x55ed99d7da14 <unknown>
#7 0x55ed99d7eb7e <unknown>
#8 0x55ed99fc832e <unknown>
#9 0x55ed99fcbc0e <unknown>
#10 0x55ed99fae610 <unknown>
#11 0x55ed99fccc23 <unknown>
#12 0x55ed99fa0545 <unknown>
#13 0x55ed99fed6a8 <unknown>
#14 0x55ed99fed836 <unknown>
#15 0x55ed9a008d13 <unknown>
#16 0x7f31d836dea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/dsl.rb:46:in `page'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:99:in `save_image'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:36:in `take_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:45:in `take_failed_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb:8:in `before_teardown'
bin/test /rails/actiontext/test/system/system_test_helper_test.rb:34
E
Error:
ActionText::SystemTestHelperTest#test_filling_in_a_rich-text_area_by_placeholder:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x559c249b5303 <unknown>
#1 0x559c24789d37 <unknown>
#2 0x559c247b2157 <unknown>
#3 0x559c247ae330 <unknown>
#4 0x559c247ef4a6 <unknown>
#5 0x559c247e6753 <unknown>
#6 0x559c247b9a14 <unknown>
#7 0x559c247bab7e <unknown>
#8 0x559c24a0432e <unknown>
#9 0x559c24a07c0e <unknown>
#10 0x559c249ea610 <unknown>
#11 0x559c24a08c23 <unknown>
#12 0x559c249dc545 <unknown>
#13 0x559c24a296a8 <unknown>
#14 0x559c24a29836 <unknown>
#15 0x559c24a44d13 <unknown>
#16 0x7f338217dea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:175:in `app_host'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:171:in `url_options'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:198:in `call'
/rails/actionpack/lib/action_dispatch/routing/route_set.rb:327:in `block in define_url_helper'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `public_send'
/rails/actionpack/lib/action_dispatch/system_test_case.rb:183:in `method_missing'
/rails/actiontext/test/system/system_test_helper_test.rb:7:in `setup'
Error:
ActionText::SystemTestHelperTest#test_filling_in_a_rich-text_area_by_placeholder:
Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
#0 0x55955ba85303 <unknown>
#1 0x55955b859d37 <unknown>
#2 0x55955b882157 <unknown>
#3 0x55955b87e330 <unknown>
#4 0x55955b8bf4a6 <unknown>
#5 0x55955b8b6753 <unknown>
#6 0x55955b889a14 <unknown>
#7 0x55955b88ab7e <unknown>
#8 0x55955bad432e <unknown>
#9 0x55955bad7c0e <unknown>
#10 0x55955baba610 <unknown>
#11 0x55955bad8c23 <unknown>
#12 0x55955baac545 <unknown>
#13 0x55955baf96a8 <unknown>
#14 0x55955baf9836 <unknown>
#15 0x55955bb14d13 <unknown>
#16 0x7fee6e118ea7 start_thread
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:56:in `assert_ok'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/response.rb:35:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:83:in `create_response'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/remote/bridge.rb:52:in `create_session'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:323:in `block in create_bridge'
<internal:kernel>:90:in `tap'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:321:in `create_bridge'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:74:in `initialize'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `new'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver/common/driver.rb:47:in `for'
/usr/local/bundle/gems/selenium-webdriver-4.7.1/lib/selenium/webdriver.rb:88:in `for'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/selenium/driver.rb:83:in `browser'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:64:in `block in register_selenium'
<internal:kernel>:90:in `tap'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:63:in `register_selenium'
/rails/actionpack/lib/action_dispatch/system_testing/driver.rb:49:in `block in register'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:105:in `driver'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/session.rb:91:in `initialize'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `new'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:421:in `block in session_pool'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara.rb:317:in `current_session'
/usr/local/bundle/gems/capybara-3.38.0/lib/capybara/dsl.rb:46:in `page'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:99:in `save_image'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:36:in `take_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb:45:in `take_failed_screenshot'
/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb:8:in `before_teardown'
bin/test /rails/actiontext/test/system/system_test_helper_test.rb:16
Finished in 5.380689s, 1.1151 runs/s, 0.0000 assertions/s.
6 runs, 0 assertions, 0 failures, 6 errors, 0 skips
rake aborted!
Command failed with status (1): [ruby -w -I"lib:test" /usr/local/lib/ruby/gems/3.2.0/gems/rake-13.0.6/lib/rake/rake_test_loader.rb "test/system/system_test_helper_test.rb" ]
Tasks: TOP => test:system
(See full trace by running task with --trace)
ERROR: 1
$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment