Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计通过

create-testcases创建测试用例

Agent Skill

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

总安装

214

周安装

9

GitHub Stars

2

下载量

75
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vimkim/my-cubrid-skills --skill create-testcases

简介

用于为 CUBRID 数据库创建单元、SQL 和 Shell 测试用例,支持 OOS 场景模拟。

  • 自动生成符合项目规范的测试代码,使用 VARBIT 类型处理磁盘空间相关测试。
  • 使用时需提供功能描述或 JIRA 编号,并遵循测试用例编写指南确保可复现性。
  • 涉及敏感数据时应先确认脱敏规则,批量执行测试前建议验证运行环境配置。
  • create-testcases 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Create CUBRID test cases for a given feature or bug fix.

Given a description of the feature/fix to test (and optionally a JIRA ticket like CBRD-XXXXX), create all three types of test cases:

  1. Unit tests (Google Test, C++)
  2. SQL tests (csql-based)
  3. Shell tests (bash-based)

$ARGUMENTS


OOS Test Case Guidelines

When creating test cases for OOS (Out of Space) scenarios:

  • Use BIT VARYING (VARBIT) data type instead of string types (VARCHAR, CHAR, etc.) for data that needs predictable on-disk size.
  • Reason: CUBRID compresses strings, making actual disk usage unpredictable unless the server is stopped and compression is disabled. VARBIT data is not compressed, so its size is predictable — critical for OOS tests that need to fill storage to specific thresholds.

Step 1: Understand what to test

  • If a CBRD ticket is mentioned, use /jira to fetch context first.
  • Read the relevant source code to understand the feature/fix being tested.
  • Identify the key behaviors, edge cases, and error conditions to cover.

Step 2: Create Unit Tests

Reference: unit_tests/oos/ in the current project directory for patterns.

Location: Create in unit_tests/<feature_name>/ under the project root.

Conventions:

  • File naming: test_<feature>.cpp
  • Use Google Test framework (GTest::gtest)
  • Shared infrastructure goes in test_<feature>_common.hpp
  • Each test file has its own main(): int main(int argc, char **argv) {::testing::InitGoogleTest(&argc, argv);::testing::AddGlobalTestEnvironment(new ServerEnv());::testing::GTEST_FLAG(break_on_failure) = true; return RUN_ALL_TESTS();}
  • Link against ${EP_LIBS} cubridsa GTest::gtest with SA_MODE
  • Use RAII patterns (unique_ptr with custom deleters) for page/record cleanup
  • Use bridge functions to access static internals when needed
  • Use ASSERT_* macros with descriptive messages
  • Create a CMakeLists.txt that globs test_*.cpp and creates one executable per file

Files to create:

  • unit_tests/<feature>/CMakeLists.txt
  • unit_tests/<feature>/test_<feature>.cpp
  • Optionally: test_<feature>_common.hpp for shared utilities

Step 3: Create SQL Tests

Reference: ~/gh/tc/cubrid-testcases/sql/ for patterns.

Location: Create under ~/gh/tc/cubrid-testcases/sql/_36_guava/ (or appropriate category).

Conventions:

  • Directory structure: <test_dir>/cases/<name>.sql and <test_dir>/answers/<name>.answer
  • Test naming: use JIRA ticket ID if available (e.g., cbrd_26609.sql), otherwise descriptive name
  • SQL file contains: setup DDL, test DML/queries, cleanup (DROP statements)
  • Use autocommit on; at the top if needed
  • Answer file contains expected output with === separators between statements
  • If the answer file cannot be determined ahead of time, create the .sql file and add a comment explaining the user should run it and capture the output as the .answer file

Files to create:

  • ~/gh/tc/cubrid-testcases/sql/<category>/<test_name>/cases/<name>.sql
  • ~/gh/tc/cubrid-testcases/sql/<category>/<test_name>/answers/<name>.answer (if deterministic)

Step 4: Create Shell Tests

Reference: ~/cubrid-testcases-private-ex/shell/ for patterns.

Location: Create under ~/cubrid-testcases-private-ex/shell/ in the appropriate category.

Conventions:

  • Directory structure: <category>/<test_name>/cases/<test_name>.sh
  • Test script sources $init_path/init.sh for helper functions
  • Standard flow: #!/bin/bash. $init_path/init.sh init test # Setup cubrid_createdb testdb cubrid server start testdb # Test operations csql -c "SQL" testdb #... verify results... # Cleanup cubrid server stop testdb cubrid deletedb testdb finish
  • Use write_ok / write_nok to record pass/fail
  • Use test_exec_sql and test_exec_command helpers
  • Result format: <test_name>-N: OK or <test_name>-N: NOK
  • Create .result file with expected pass/fail lines

Files to create:

  • ~/cubrid-testcases-private-ex/shell/<category>/<test_name>/cases/<test_name>.sh
  • ~/cubrid-testcases-private-ex/shell/<category>/<test_name>/cases/<test_name>.result

Step 5: Summary

After creating all test files, present a summary table:

TypePathDescription
Unitunit_tests/......
SQL~/gh/tc/......
Shell~/cubrid-testcases-private-ex/......

Ask the user if they want to adjust any of the test cases.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.37%
按下载量换算26

Claude

29.26%
按下载量换算22

Cursor

19.72%
按下载量换算15

Gemini CLI

9.81%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/vimkim/my-cubrid-skills --skill create-testcases 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills