简体   繁体   English

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

[英]Unit tests with RSpec on the Ruby: “No test report files were found. Configuration error?”

I need to run unit tests with RSpec on the Ruby project that runs on Jenkins. 我需要在Jenkins上运行的Ruby项目上使用RSpec运行单元测试。

At this moment there is no code in the project, it's just a vanilla project. 目前,项目中没有代码,这只是一个普通项目。 So I add a dummy test: 因此,我添加了一个虚拟测试:

test_example.rb: test_example.rb:

describe Hash do
  it "should return a blank instance" do
Hash.new.should == {}
  end
end

My Gemfile : 我的Gemfile

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]

And add the link on new test file in the Rakefile: 并在Rakefile中的新测试文件上添加链接

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

Of course, I add the test step in my Jenkinsfile : 当然,我在Jenkinsfile中添加了测试步骤:

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

But when I run the build, I see this error: 但是当我运行构建时,我看到此错误:

在此处输入图片说明

在此处输入图片说明

What am I doing wrong? 我究竟做错了什么?
I'm sorry I'm a little bit confused that I have so many steps and the problem can be everywhere... I don't know where should I search 抱歉,我有这么多步骤,我有点困惑,问题可能无处不在...我不知道应该在哪里搜索

You're using ruby's test-unit testing framework for that example test, yet you're using the ci_reporter_rspec gem to generate test report xmls. 您正在使用ruby的测试单元测试框架进行示例测试,但是使用的是ci_reporter_rspec gem来生成测试报告xml。 rspec and test-unit are not compatible testing frameworks, and the gem you've chosen will not generate test report xmls for test-unit. rspec和测试单元不是兼容的测试框架,并且您选择的gem不会为测试单元生成测试报告xml。 You either need to write rspec tests or use the ci_reporter gem. 您需要编写rspec测试或使用ci_reporter gem。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM