senior-qa
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSenior Qa
高级QA工具包
Complete toolkit for senior qa with modern tools and best practices.
集成现代工具与最佳实践的高级QA完整工具包。
Quick Start
快速开始
Main Capabilities
核心功能
This skill provides three core capabilities through automated scripts:
bash
undefined本技能通过自动化脚本提供三项核心功能:
bash
undefinedScript 1: Test Suite Generator
Script 1: Test Suite Generator
python scripts/test_suite_generator.py [options]
python scripts/test_suite_generator.py [options]
Script 2: Coverage Analyzer
Script 2: Coverage Analyzer
python scripts/coverage_analyzer.py [options]
python scripts/coverage_analyzer.py [options]
Script 3: E2E Test Scaffolder
Script 3: E2E Test Scaffolder
python scripts/e2e_test_scaffolder.py [options]
undefinedpython scripts/e2e_test_scaffolder.py [options]
undefinedCore Capabilities
核心功能详解
1. Test Suite Generator
1. 测试套件生成器
Automated tool for test suite generator tasks.
Features:
- Automated scaffolding
- Best practices built-in
- Configurable templates
- Quality checks
Usage:
bash
python scripts/test_suite_generator.py <project-path> [options]用于测试套件生成任务的自动化工具。
特性:
- 自动化脚手架搭建
- 内置最佳实践
- 可配置模板
- 质量检查
使用方法:
bash
python scripts/test_suite_generator.py <project-path> [options]2. Coverage Analyzer
2. 覆盖率分析器
Comprehensive analysis and optimization tool.
Features:
- Deep analysis
- Performance metrics
- Recommendations
- Automated fixes
Usage:
bash
python scripts/coverage_analyzer.py <target-path> [--verbose]全面的分析与优化工具。
特性:
- 深度分析
- 性能指标
- 优化建议
- 自动化修复
使用方法:
bash
python scripts/coverage_analyzer.py <target-path> [--verbose]3. E2E Test Scaffolder
3. E2E测试脚手架工具
Advanced tooling for specialized tasks.
Features:
- Expert-level automation
- Custom configurations
- Integration ready
- Production-grade output
Usage:
bash
python scripts/e2e_test_scaffolder.py [arguments] [options]用于专项任务的高级工具。
特性:
- 专家级自动化
- 自定义配置
- 可集成性
- 生产级输出
使用方法:
bash
python scripts/e2e_test_scaffolder.py [arguments] [options]Reference Documentation
参考文档
Testing Strategies
测试策略
Comprehensive guide available in :
references/testing_strategies.md- Detailed patterns and practices
- Code examples
- Best practices
- Anti-patterns to avoid
- Real-world scenarios
完整指南请查看 :
references/testing_strategies.md- 详细模式与实践
- 代码示例
- 最佳实践
- 需避免的反模式
- 真实场景案例
Test Automation Patterns
测试自动化模式
Complete workflow documentation in :
references/test_automation_patterns.md- Step-by-step processes
- Optimization strategies
- Tool integrations
- Performance tuning
- Troubleshooting guide
完整工作流文档请查看 :
references/test_automation_patterns.md- 分步流程
- 优化策略
- 工具集成
- 性能调优
- 故障排除指南
Qa Best Practices
QA最佳实践
Technical reference guide in :
references/qa_best_practices.md- Technology stack details
- Configuration examples
- Integration patterns
- Security considerations
- Scalability guidelines
技术参考指南请查看 :
references/qa_best_practices.md- 技术栈细节
- 配置示例
- 集成模式
- 安全考量
- 可扩展性指南
Tech Stack
技术栈
Languages: TypeScript, JavaScript, Python, Go, Swift, Kotlin
Frontend: React, Next.js, React Native, Flutter
Backend: Node.js, Express, GraphQL, REST APIs
Database: PostgreSQL, Prisma, NeonDB, Supabase
DevOps: Docker, Kubernetes, Terraform, GitHub Actions, CircleCI
Cloud: AWS, GCP, Azure
编程语言: TypeScript、JavaScript、Python、Go、Swift、Kotlin
前端: React、Next.js、React Native、Flutter
后端: Node.js、Express、GraphQL、REST APIs
数据库: PostgreSQL、Prisma、NeonDB、Supabase
DevOps: Docker、Kubernetes、Terraform、GitHub Actions、CircleCI
云服务: AWS、GCP、Azure
Development Workflow
开发工作流
1. Setup and Configuration
1. 安装与配置
bash
undefinedbash
undefinedInstall dependencies
安装依赖
npm install
npm install
or
或
pip install -r requirements.txt
pip install -r requirements.txt
Configure environment
配置环境
cp .env.example .env
undefinedcp .env.example .env
undefined2. Run Quality Checks
2. 运行质量检查
bash
undefinedbash
undefinedUse the analyzer script
使用分析脚本
python scripts/coverage_analyzer.py .
python scripts/coverage_analyzer.py .
Review recommendations
查看优化建议
Apply fixes
应用修复
undefinedundefined3. Implement Best Practices
3. 实施最佳实践
Follow the patterns and practices documented in:
references/testing_strategies.mdreferences/test_automation_patterns.mdreferences/qa_best_practices.md
遵循以下文档中的模式与实践:
references/testing_strategies.mdreferences/test_automation_patterns.mdreferences/qa_best_practices.md
Best Practices Summary
最佳实践总结
Code Quality
代码质量
- Follow established patterns
- Write comprehensive tests
- Document decisions
- Review regularly
- 遵循既定模式
- 编写全面测试
- 记录决策过程
- 定期评审
Performance
性能
- Measure before optimizing
- Use appropriate caching
- Optimize critical paths
- Monitor in production
- 先测量再优化
- 使用合适的缓存策略
- 优化关键路径
- 生产环境监控
Security
安全
- Validate all inputs
- Use parameterized queries
- Implement proper authentication
- Keep dependencies updated
- 验证所有输入
- 使用参数化查询
- 实现正确的认证机制
- 保持依赖更新
Maintainability
可维护性
- Write clear code
- Use consistent naming
- Add helpful comments
- Keep it simple
- 编写清晰的代码
- 使用一致的命名规范
- 添加有用的注释
- 保持简洁
Common Commands
常用命令
bash
undefinedbash
undefinedDevelopment
开发
npm run dev
npm run build
npm run test
npm run lint
npm run dev
npm run build
npm run test
npm run lint
Analysis
分析
python scripts/coverage_analyzer.py .
python scripts/e2e_test_scaffolder.py --analyze
python scripts/coverage_analyzer.py .
python scripts/e2e_test_scaffolder.py --analyze
Deployment
部署
docker build -t app:latest .
docker-compose up -d
kubectl apply -f k8s/
undefineddocker build -t app:latest .
docker-compose up -d
kubectl apply -f k8s/
undefinedTroubleshooting
故障排除
Common Issues
常见问题
Check the comprehensive troubleshooting section in .
references/qa_best_practices.md请查看 中的完整故障排除章节。
references/qa_best_practices.mdGetting Help
获取帮助
- Review reference documentation
- Check script output messages
- Consult tech stack documentation
- Review error logs
- 查阅参考文档
- 检查脚本输出信息
- 参考技术栈文档
- 查看错误日志
Resources
资源
- Pattern Reference:
references/testing_strategies.md - Workflow Guide:
references/test_automation_patterns.md - Technical Guide:
references/qa_best_practices.md - Tool Scripts: directory
scripts/
- 模式参考:
references/testing_strategies.md - 工作流指南:
references/test_automation_patterns.md - 技术指南:
references/qa_best_practices.md - 工具脚本:目录
scripts/