Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计异常

testing-patterns测试模式

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

564

周安装

24

GitHub Stars

5

下载量

198
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:testing-patterns(测试模式)
来源仓库:https://github.com/rolemodel/rolemodel-skills
仓库路径:skills/testing-patterns
安装命令:
npx skills add https://github.com/rolemodel/rolemodel-skills --skill testing-patterns
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/rolemodel/rolemodel-skills --skill testing-patterns

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合编写单元测试、端到端测试或根据失败日志定位问题。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免为通过测试而改坏真实逻辑。
  • 安装命令:npx skills add https://github.com/rolemodel/rolemodel-skills --skill testing-patterns
  • 适用于 Codex、Claude、Cursor、Gemini CLI,通过 GitHub 安装,建议区分本地模拟与生产环境操作。

SKILL.md

Testing Patterns

Overview

Write automated tests using RSpec and Capybara. Avoid using the Rails console or starting a Rails server for testing.

Test Command

bundle exec rspec

Tech Stack

  • RSpec - Testing framework
  • Capybara - System/integration testing
  • FactoryBot - Test data generation

Best Practices

General Guidelines

  • Write tests first or alongside implementation
  • Avoid manual testing via console
  • Use factories for test data creation
  • Keep tests focused and readable

RSpec Conventions

  • Use descriptive context and describe blocks
  • Follow the arrange-act-assert pattern
  • Use let for test data setup
  • Prefer let over instance variables

let vs let! (Lazy vs Eager Evaluation)

Use let (lazy evaluation) when:

  • The variable is explicitly referenced in the test
  • You want to avoid unnecessary database writes
  • The record creation has side effects you want to control

Use let! (eager evaluation) when:

  • Records must exist in the database before the test runs
  • The variable is not directly referenced but its existence is required
  • Testing queries that search for records (e.g., index pages, search functionality)
  • Setting up background data that other records depend on

Example - System Tests:

RSpec.describe 'Job Management', type: :system do
  # Use let! - these records must exist in DB for dropdowns and queries
  let!(:location) { create(:location, name: 'Downtown Site') }
  let!(:superintendent) { create(:user, :superintendent) }

  # Use let - only created when explicitly referenced in a test
  let(:job) { create(:job, name: 'Test Job', location:, superintendent:) }

  it 'shows location in dropdown' do
    visit new_job_path
    # location must exist in DB for dropdown to display it
    expect(page).to have_select('Location', with_options: [location.name])
  end

  it 'can delete a job' do
    visit job_path(job)  # job created here when first referenced
    click_button 'Delete'
  end
end

Common Pitfall:

# ❌ WRONG - Test will fail because job2 doesn't exist in DB yet
let(:job1) { create(:job, name: 'Job 1') }
let(:job2) { create(:job, name: 'Job 2') }

it 'lists all jobs' do
  visit jobs_path
  expect(page).to have_content('Job 1')  # job1 created when referenced
  expect(page).to have_content('Job 2')  # FAIL - job2 never referenced, not in DB
end

# ✅ CORRECT - Both jobs exist before test runs
let!(:job1) { create(:job, name: 'Job 1') }
let!(:job2) { create(:job, name: 'Job 2') }

it 'lists all jobs' do
  visit jobs_path
  expect(page).to have_content('Job 1')  # Both jobs already in DB
  expect(page).to have_content('Job 2')  # Test passes
end

Key Insight: If you expect to see data without explicitly interacting with the object variable (like viewing a list or selecting from a dropdown), use let! to ensure the record exists in the database.

Validation Testing Pattern

Test validations explicitly using build with invalid data, then verify the model is invalid and check error messages:

describe 'validations' do
  it 'must have a start date' do
    membership = build(:membership, start_date: nil)

    expect(membership).not_to be_valid
    expect(membership.errors.full_messages).to contain_exactly "Start date can't be blank"
  end

  it 'enforces end date must follow start date' do
    membership = build(:membership, start_date: 1.year.ago, end_date: 2.years.ago)

    expect(membership).not_to be_valid
    expect(membership.errors.full_messages).to contain_exactly 'End date must follow start date'
  end

  it 'permits empty end date' do
    membership = build(:membership, start_date: 1.year.ago, end_date: nil)

    expect(membership).to be_valid
  end
end

Key points:

  • Use build instead of create to avoid database writes
  • Test both invalid and valid scenarios
  • Verify exact error messages with full_messages
  • Use descriptive test names that explain the business rule
  • Don't test associations or enums

Capybara System Tests

  • Test user-facing functionality
  • Use data-testid attributes with dom_id for reliable element selection
  • Test happy paths and edge cases
  • Ensure tests are deterministic
  • Avoid sleep statements; use Capybara's waiting mechanisms such as native expectations of elements to appear
  • Use :js (e.g. it 'does something',:js do) for specs that run javascript such as stimulus controllers

Element Selection with data-testid

Use data-testid attributes with dom_id for stable, reliable element selection that's resistant to UI changes:

View:

tbody
  - @entries.each do |entry|
    tr data-testid=dom_id(entry)
      td= entry.name

Spec:

within(data_test(entry1)) do
  click_button 'Submit'
end

Benefits:

  • Resilient to text changes (descriptions, labels, etc.)
  • Works with dynamic content
  • Self-documenting test intent
  • Easier to refactor views

Avoid:

  • Text-based lookups: within('tr', text: 'Entry 1')
  • CSS class selectors that may change during styling
  • Overly specific DOM traversal

Scoping with within Blocks

When elements are ambiguous (multiple buttons/links with same text), use within blocks to scope interactions:

Best Practice: Always use within blocks when:

  1. Multiple elements share the same text/label
  2. Interacting with modals, panels, or overlays
  3. Working with repeating elements (table rows, cards)
  4. Tests fail with "Ambiguous match" errors

Turbo Confirm Dialogs

When testing actions that trigger Turbo confirm dialogs (e.g., delete buttons with data: {turbo_confirm: 'message'}), use the provided helper methods.

Setup:

Create the helper file:

# spec/support/turbo_confirm_helper.rb
module TurboConfirmHelper
  def accept_turbo_confirm
    yield
    expect(page).to have_css '.confirm-dialog-wrapper--active', wait: 5
    sleep(0.5)
    within '.confirm-dialog-wrapper--active' do
      find('#confirm-accept').click
    end
    expect(page).to_not have_css '.confirm-dialog-wrapper--active', wait: 5
  end

  def deny_turbo_confirm
    yield
    expect(page).to have_css '.confirm-dialog-wrapper--active', wait: 5
    sleep(0.5)
    within '.confirm-dialog-wrapper--active' do
      find('#confirm-cancel').click
    end
    expect(page).to_not have_css '.confirm-dialog-wrapper--active', wait: 5
  end
end

Include in RSpec configuration:

# spec/support/helpers.rb
RSpec.configure do |c|
  # ...existing code...
  c.include TurboConfirmHelper, type: :system
end

Usage in Tests:

accept_turbo_confirm do
  click_button 'Delete'
end

deny_turbo_confirm do
  click_button 'Delete'
end

Key Points:

  • Always use :js tag for tests involving Turbo confirm dialogs
  • Pass the action that triggers the confirm as a block to the helper
  • The helper automatically waits for the dialog to appear and disappear
  • Use accept_turbo_confirm to click "Yes, I'm Sure"
  • Use deny_turbo_confirm to click "Cancel"
  • Helpers include proper wait times and scoping for reliability

FactoryBot

  • Define factories for all models
  • Use traits for variations
  • Keep factories minimal
  • Override attributes in tests as needed
  • Always use build or create instead of direct model instantiation
  • Use build for validation tests to avoid database writes
  • Use create when you need persisted records

Future Topics

  • Mocking and stubbing patterns
  • Test organization strategies
  • Performance testing
  • CI/CD integration

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.41%
按下载量换算68

Claude

29.5%
按下载量换算58

Cursor

17.9%
按下载量换算35

Gemini CLI

9.68%
按下载量换算19

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills