首页
/ Shoulda Matchers 技术文档

Shoulda Matchers 技术文档

2024-12-17 21:51:36作者:冯梦姬Eddie

安装指南

1. 添加 Gem 到 Gemfile

首先,将 shoulda-matchers 添加到你的 Gemfile 中。根据你使用的测试框架(RSpec 或 Minitest),添加相应的配置。

使用 RSpec

group :test do
  gem 'shoulda-matchers', '~> 6.0'
end

使用 Minitest

group :test do
  gem 'shoulda-matchers', '~> 6.0'
end

2. 安装 Gem

运行以下命令来安装 Gem:

bundle install

3. 配置 Gem

根据你使用的测试框架和项目类型(Rails 或非 Rails),进行相应的配置。

Rails 项目(RSpec)

spec/rails_helper.rb 文件底部添加以下配置:

Shoulda::Matchers.configure do |config|
  config.integrate do |with|
    with.test_framework :rspec
    with.library :rails
  end
end

非 Rails 项目(RSpec)

spec/spec_helper.rb 文件底部添加以下配置:

Shoulda::Matchers.configure do |config|
  config.integrate do |with|
    with.test_framework :rspec
    with.library :active_record
    with.library :active_model
  end
end

Rails 项目(Minitest)

test/test_helper.rb 文件底部添加以下配置:

Shoulda::Matchers.configure do |config|
  config.integrate do |with|
    with.test_framework :minitest
    with.library :rails
  end
end

非 Rails 项目(Minitest)

test/test_helper.rb 文件底部添加以下配置:

Shoulda::Matchers.configure do |config|
  config.integrate do |with|
    with.test_framework :minitest
    with.library :active_record
    with.library :active_model
  end
end

项目的使用说明

1. 基本使用

Shoulda Matchers 提供了许多用于测试 Rails 应用的简便方法。你可以在模型、控制器等不同部分使用这些匹配器。

示例:模型测试

# RSpec
RSpec.describe MenuItem, type: :model do
  describe 'associations' do
    it { should belong_to(:category).class_name('MenuCategory') }
  end

  describe 'validations' do
    it { should validate_presence_of(:name) }
    it { should validate_uniqueness_of(:name).scoped_to(:category_id) }
  end
end

# Minitest
class MenuItemTest < ActiveSupport::TestCase
  context 'associations' do
    should belong_to(:category).class_name('MenuCategory')
  end

  context 'validations' do
    should validate_presence_of(:name)
    should validate_uniqueness_of(:name).scoped_to(:category_id)
  end
end

2. 自定义 subject

在某些情况下,你可能需要自定义 subject。例如,在测试模型验证时,通常会提供一个有效的模型实例,而不是一个全新的实例。

# RSpec
RSpec.describe Post, type: :model do
  describe 'validations' do
    subject { build(:post) }

    it { should validate_presence_of(:title) }
  end
end

# Minitest
class PostTest < ActiveSupport::TestCase
  context 'validations' do
    subject { build(:post) }

    should validate_presence_of(:title)
  end
end

项目 API 使用文档

1. ActiveModel 匹配器

用于测试 ActiveModel 的匹配器,例如:

  • validate_presence_of
  • validate_uniqueness_of

2. ActiveRecord 匹配器

用于测试 ActiveRecord 的匹配器,例如:

  • belong_to
  • have_many

3. ActionController 匹配器

用于测试控制器的匹配器,例如:

  • render_template
  • have_http_status

4. 独立匹配器

用于测试 Rails 特定功能的匹配器,例如:

  • delegate

项目安装方式

1. 通过 Gemfile 安装

shoulda-matchers 添加到 Gemfile 中,然后运行 bundle install

2. 手动安装

你也可以通过以下命令手动安装 Gem:

gem install shoulda-matchers

3. 配置

根据你使用的测试框架和项目类型,进行相应的配置。配置文件通常位于 spec/rails_helper.rbtest/test_helper.rb 中。

通过以上步骤,你可以成功安装并配置 Shoulda Matchers,开始使用它来简化你的 Rails 测试。

热门项目推荐
相关项目推荐

项目优选

收起
Python-100-DaysPython-100-Days
Python - 100天从新手到大师
Python
263
53
国产编程语言蓝皮书国产编程语言蓝皮书
《国产编程语言蓝皮书》-编委会工作区
64
16
open-eBackupopen-eBackup
open-eBackup是一款开源备份软件,采用集群高扩展架构,通过应用备份通用框架、并行备份等技术,为主流数据库、虚拟化、文件系统、大数据等应用提供E2E的数据备份、恢复等能力,帮助用户实现关键数据高效保护。
HTML
85
63
openHiTLSopenHiTLS
旨在打造算法先进、性能卓越、高效敏捷、安全可靠的密码套件,通过轻量级、可剪裁的软件技术架构满足各行业不同场景的多样化要求,让密码技术应用更简单,同时探索后量子等先进算法创新实践,构建密码前沿技术底座!
C
53
44
Cangjie-ExamplesCangjie-Examples
本仓将收集和展示高质量的仓颉示例代码,欢迎大家投稿,让全世界看到您的妙趣设计,也让更多人通过您的编码理解和喜爱仓颉语言。
Cangjie
195
45
HarmonyOS-ExamplesHarmonyOS-Examples
本仓将收集和展示仓颉鸿蒙应用示例代码,欢迎大家投稿,在仓颉鸿蒙社区展现你的妙趣设计!
Cangjie
268
69
xxl-jobxxl-job
XXL-JOB是一个分布式任务调度平台,其核心设计目标是开发迅速、学习简单、轻量级、易扩展。现已开放源代码并接入多家公司线上产品线,开箱即用。
Java
9
0
RuoYi-VueRuoYi-Vue
🎉 基于SpringBoot,Spring Security,JWT,Vue & Element 的前后端分离权限管理系统,同时提供了 Vue3 的版本
Java
171
41
RuoYi-Cloud-Vue3RuoYi-Cloud-Vue3
🎉 基于Spring Boot、Spring Cloud & Alibaba、Vue3 & Vite、Element Plus的分布式前后端分离微服务架构权限管理系统
Vue
38
24
qwerty-learnerqwerty-learner
为键盘工作者设计的单词记忆与英语肌肉记忆锻炼软件 / Words learning and English muscle memory training software designed for keyboard workers
TSX
332
27