在Ruby上使用RSpec进行单元测试:"未找到测试报告文件。配置错误?"

时间:2017-11-17 14:04:39

标签: ruby-on-rails ruby jenkins rspec

我需要在Jenkins上运行的Ruby项目上使用RSpec运行单元测试。

此时项目中没有代码,它只是一个香草项目。所以我添加了一个虚拟测试:

test_example.rb:

source 'https://rubygems.org'
git_source(:github) do |repo_name|
  repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
  "https://github.com/#{repo_name}.git"
end

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.1.4'
# Use postgres as the database for Active Record
gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 3.7'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# Turbolinks makes navigating your web application faster. 
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

group :development, :test do
 # Call 'byebug' anywhere in the code to stop execution and get a debugger console
 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
 # Adds support for Capybara system testing and selenium driver
 gem 'capybara', '~> 2.13'
 gem 'selenium-webdriver'
  # Adds support for RSpec - <<<<<<<<<<<<<<<<<<<<<<<<<<< HERE IS MY CHANGES
  gem 'rspec-rails', '~> 3.7.1'
end

group :development do
  # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  gem 'web-console', '>= 3.3.0'
  gem 'listen', '>= 3.0.5', '< 3.2'
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
  gem 'spring-watcher-listen', '~> 2.0.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

我的 Gemfile

require_relative 'config/application'
Rails.application.load_tasks

require 'rake/testtask'

Rake::TestTask.new do |t|
  t.libs << "test"
  t.test_files = FileList['test/test_example.rb']
  t.verbose = true
end

Rakefile中添加新测试文件的链接:

stage("test") {
            junit keepLongStdio: true, testResults: 'rspec/reports/**/*.xml' 
       }

当然,我在 Jenkinsfile 中添加了测试步骤:

{{1}}

但是当我运行构建时,我看到了这个错误:

enter image description here

enter image description here

我做错了什么?
对不起,我有点困惑,我有很多步骤,问题可能无处不在......我不知道应该在哪里搜索

1 个答案:

答案 0 :(得分:0)

您正在使用ruby的测试单元测试框架进行该示例测试,但您正在使用ci_reporter_rspec gem生成测试报告xmls。 rspec和test-unit不兼容测试框架,您选择的gem不会为测试单元生成测试报告xmls。您需要编写rspec测试或使用ci_reporter gem。