Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Track coverage while installing solidus #5398

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ commands:
- run:
name: "Prepare the rails application"
command: |
cp core/spec/solidus_install_coverage.rb /tmp/solidus_install_coverage.rb
cd /tmp
test -d my_app || (gem install rails -v "< 7.1" && gem install solidus)
test -d my_app || rails new my_app --skip-git
Expand All @@ -180,9 +181,16 @@ commands:
name: "Run `solidus:install` with `<<parameters.flags>>`"
command: |
cd /tmp/my_app
bundle add gem simplecov simplecov-cobertura --require=false
bundle add solidus --path "$(ruby -e"puts File.expand_path ENV['CIRCLE_WORKING_DIRECTORY']")"
unset RAILS_ENV # avoid doing everything on the test environment
cat /tmp/solidus_install_coverage.rb >> config/boot.rb
bin/rails generate solidus:install --auto-accept <<parameters.flags>>
- run:
name: Report Coverage
command: |
cd /tmp/my_app
bundle exec ruby /tmp/solidus_install_coverage.rb

test_page:
parameters:
Expand Down Expand Up @@ -251,6 +259,10 @@ jobs:
executor:
name: sqlite
ruby: "3.0"
environment:
COVERAGE: "true"
COVERAGE_DIR: /tmp/coverage
DISABLE_ACTIVE_STORAGE: false
steps:
- checkout
- run:
Expand Down Expand Up @@ -279,6 +291,8 @@ jobs:
name: "Ensure solidus_frontend installer is run"
command: |
test -f /tmp/dummy_extension/spec/dummy/config/initializers/solidus_frontend.rb
- codecov/upload:
file: /tmp/coverage/coverage.xml

test_solidus:
parameters:
Expand Down
21 changes: 21 additions & 0 deletions core/spec/solidus_install_coverage.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# frozen_string_literal: true

if ENV["COVERAGE"]
require 'simplecov'
if ENV["COVERAGE_DIR"]
SimpleCov.coverage_dir(ENV["COVERAGE_DIR"])
end
SimpleCov.command_name('solidus:install')
SimpleCov.merge_timeout(3600)
SimpleCov.start('rails')
end

# When the file is executed directly, run the coverage report
if __FILE__ == $PROGRAM_NAME
require "simplecov"
SimpleCov.merge_timeout 3600
SimpleCov.coverage_dir(ENV["COVERAGE_DIR"])
require "simplecov-cobertura"
SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
SimpleCov.result.format!
end