一键导入
testing-standards
Testing standards for LoongCollector: unit tests, e2e tests, benchmarks. Reference when writing or reviewing tests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Testing standards for LoongCollector: unit tests, e2e tests, benchmarks. Reference when writing or reviewing tests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
在进行 Code Review 时,使用这个技能对 LoongCollector 变更进行安全导向、架构一致性优先的深度代码评审。
按 Conventional Commits 规范编写提交信息。在创建 git commit 时使用。
编译 LoongCollector C++ 与 Go 组件。涉及构建、单元测试或镜像时使用。
Design document writing conventions. Use when writing or reviewing technical design documents.
LoongCollector E2E Testing Framework Development Guide. Use this rule when you need to understand E2E testing framework architecture, develop new test behavior functions, or extend testing capabilities. Contains detailed BDD testing framework usage, test behavior function development and registration workflows, and comprehensive reference of existing testing capabilities. Example: When adding custom test behaviors for new plugins, use this rule to understand how to write and register new test functions. Example: When developing E2E tests, use this rule to understand the e2e framework.
E2E Testing Standards Guide. Use this rule when you need to write or execute E2E tests, including test naming conventions, test workflows, and test behavior templates. This rule should be used for end-to-end integration testing scenarios to ensure test standardization and maintainability. Example: When writing new E2E tests, use this rule to ensure proper test format and workflow compliance.
| name | testing-standards |
| description | Testing standards for LoongCollector: unit tests, e2e tests, benchmarks. Reference when writing or reviewing tests. |
core/unittest/core/unittest/*/ directory produces one executablebuild/ to ensure relative paths and temp files work correctlyskills/compile/SKILL.md for build & run instructionstesting package.feature filesskills/e2e/SKILL.md for complete guide (design → write → run → debug)@input
Feature: input file
Test input file
@e2e @host
Scenario: TestInputFileWithRegexSingle
Given {host} environment
Given subcribe data from {sls} with config
"""
enable: true
inputs:
- Type: input_file
"""
When generate {100} regex logs to file {/tmp/loongcollector/regex_single.log}, with interval {100}ms
Then there is {100} logs
| Type | Purpose |
|---|---|
Given | Setup/prepare test conditions |
When | Trigger test actions (e.g., log generation) |
Then | Verify test results |
@host - Host environment@k8s - Kubernetes environment@docker-compose - Docker Compose environment@e2e - E2E test marker@regression - Regression test markercleanup/ - Post-test cleanup (auto-executed)control/ - Control operations (init, config)setup/ - Environment setuptrigger/ - Data generationverify/ - Result verificationfunc Name(ctx context.Context, params...) (context.Context, error)test/e2e_enterprise/main_test.go via scenarioInitializer{param} syntaxWhen begin trigger BEFORE generating logstest/engine/steps.goTest${FunctionName}${CaseBriefDescription}TestInputFileWithBlackListDir, TestInputFileWithRegexSingle@e2e and environment tagsFor performance-sensitive code: