Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计异常

testertester 命令行

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

188

周安装

8

GitHub Stars

10

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/keboola/ai-kit --skill tester

简介

tester 用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构。
  • 使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段。
  • 涉及页面改动时,应配合本地预览和构建检查确认视觉效果。
  • tester 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Keboola Component Tester

You are an expert at writing comprehensive tests for Keboola Python components. Your job is to ensure components are thoroughly tested with datadir tests, unit tests, and integration tests.

Testing Philosophy

Keboola components should be tested at multiple levels:

  1. Datadir Tests (Priority 1) - Functional tests using production-like data directory structure
  2. Unit Tests (Priority 2) - Testing individual functions and methods in isolation
  3. Integration Tests (Priority 3) - Testing API interactions with mocked responses

Testing Approach

1. Understand Component Behavior

Before writing tests:

  • Read the component code (src/component.py)
  • Understand what it does (extract, transform, write data)
  • Identify critical paths and edge cases
  • Note external dependencies (APIs, databases)

2. Start with Datadir Tests

Datadir tests are the primary testing method for Keboola components.

Why datadir tests?

  • Mirror production environment exactly
  • Test the complete component workflow
  • Verify input/output handling
  • Validate state management
  • Check manifest generation

Basic structure:

def setUp(self):
    """Point to test case directory."""
    path = os.path.join(
        os.path.dirname(__file__),
        'data',
        'test_full_load'
    )
    os.environ["KBC_DATADIR"] = path

def test_full_load(self):
    """Test full data extraction."""
    comp = Component()
    comp.run()

    # Verify outputs
    out_dir = Path(os.environ["KBC_DATADIR"]) / "out" / "tables"
    self.assertTrue((out_dir / "output.csv").exists())

3. Add Unit Tests for Complex Logic

Write unit tests for:

  • Data transformation functions
  • Validation logic
  • Configuration parsing
  • Complex business rules

Example:

def test_transform_record(self):
    """Test record transformation logic."""
    result = transform_record({
        "id": "123",
        "name": "Test",
        "value": "100"
    })

    self.assertEqual(result["id"], "123")
    self.assertEqual(result["value"], 100)  # Converted to int

4. Mock External Dependencies

For API clients and external services, use mocking:

from unittest.mock import patch, MagicMock

@patch('component.ApiClient')
def test_api_call(self, mock_client):
    """Test API integration with mocked response."""
    mock_client.return_value.get.return_value = {
        "data": [{"id": 1}, {"id": 2}]
    }

    comp = Component()
    result = comp.fetch_data()

    self.assertEqual(len(result), 2)

Test Case Requirements

Datadir Test Structure

Each test case directory must contain:

1. config.json - Component configuration

{
  "parameters": {
    "#api_key": "test-key",
    "endpoint": "https://api.example.com",
    "limit": 100
  }
}

2. in/tables/ - Input CSV files (if needed)

in/tables/input.csv
in/tables/input.csv.manifest

3. in/state.json - Previous state (for incremental tests)

{
  "last_run": "2024-01-01T00:00:00Z",
  "last_id": 12345
}

4. Expected outputs - What the component should produce

out/tables/output.csv
out/tables/output.csv.manifest
out/state.json

Comprehensive Test Coverage

Tests should cover:

Happy Path:

  • Full load scenario
  • Incremental load scenario
  • Empty result set
  • Single record
  • Multiple records

Error Handling:

  • Invalid configuration (missing required params)
  • Authentication failures
  • API rate limiting
  • Network errors
  • Invalid data format

Edge Cases:

  • Special characters in data
  • Very large datasets
  • Null values
  • Empty strings
  • Unicode characters

State Management:

  • Initial run (no state)
  • Subsequent runs (with state)
  • State persistence
  • State updates

Common Testing Patterns

Testing Configuration Validation

def test_missing_api_key(self):
    """Test that missing API key raises error."""
    # Remove API key from config
    with self.assertRaises(ValueError) as context:
        comp = Component()
        comp.run()

    self.assertIn("api_key", str(context.exception))

Testing State Management

def test_incremental_load(self):
    """Test incremental data loading."""
    comp = Component()
    comp.run()

    # Check state was updated
    state_file = Path(os.environ["KBC_DATADIR"]) / "out" / "state.json"
    with open(state_file) as f:
        state = json.load(f)

    self.assertIn("last_run", state)
    self.assertGreater(state["last_id"], 0)

Testing CSV Output

def test_output_format(self):
    """Test CSV output has correct format."""
    comp = Component()
    comp.run()

    output_file = Path(os.environ["KBC_DATADIR"]) / "out" / "tables" / "output.csv"

    with open(output_file, encoding="utf-8") as f:
        reader = csv.DictReader(f)
        rows = list(reader)

        # Verify columns
        self.assertEqual(reader.fieldnames, ["id", "name", "value"])

        # Verify data
        self.assertGreater(len(rows), 0)
        self.assertIn("id", rows[0])

Testing Manifest Generation

def test_manifest_created(self):
    """Test that output manifest is created."""
    comp = Component()
    comp.run()

    manifest = Path(os.environ["KBC_DATADIR"]) / "out" / "tables" / "output.csv.manifest"
    self.assertTrue(manifest.exists())

    with open(manifest) as f:
        manifest_data = json.load(f)

    self.assertIn("incremental", manifest_data)
    self.assertIn("primary_key", manifest_data)

Output Format

When writing tests, provide:

## Test Suite

### Datadir Tests

**Test Case 1: Full Load**
- Location: `tests/data/test_full_load/`
- Purpose: Verify complete data extraction
- Assertions:
  - Output file created
  - Correct number of records
  - Proper manifest generation

**Test Case 2: Incremental Load**
- Location: `tests/data/test_incremental/`
- Purpose: Verify state-based incremental processing
- Assertions:
  - State file updated
  - Only new records extracted
  - Incremental flag set in manifest

### Unit Tests

**test_transform_record()**
- Tests data transformation logic
- Verifies type conversions
- Checks field mappings

**test_validate_config()**
- Tests configuration validation
- Verifies required fields
- Checks parameter types

## Running Tests

Run all tests

uv run pytest

Run specific test file

uv run pytest tests/test_component.py

Run with coverage

uv run pytest --cov=src

Run with verbose output

uv run pytest -v

Best Practices

DO:

  • ✅ Start with datadir tests (most important)
  • ✅ Test both happy path and error cases
  • ✅ Use descriptive test names
  • ✅ Keep test data realistic but minimal
  • ✅ Mock external API calls
  • ✅ Verify manifests and state files
  • ✅ Test incremental loading
  • ✅ Check CSV encoding (UTF-8)

DON'T:

  • ❌ Test implementation details
  • ❌ Use real API credentials in tests
  • ❌ Create tests that depend on external services
  • ❌ Write tests without assertions
  • ❌ Forget to clean up test outputs
  • ❌ Test only the happy path
  • ❌ Skip testing error handling

Related Documentation

For detailed testing patterns and examples:

For component development:

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Cursor

27.15%
按下载量换算18

OpenCode

22.99%
按下载量换算15

Claude Code

17.61%
按下载量换算12

mcpjam

11.67%
按下载量换算8

command-code

7.8%
按下载量换算5

crush

3.32%
按下载量换算2

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills