Skip to main content 홈 크리에이터 proffesor-for-testing sentinel-api-testing test-data-management
test-data-management Strategic test data generation, management, and privacy compliance. Use when creating test data, handling PII, ensuring GDPR/CCPA compliance, or scaling data generation for realistic testing scenarios.
설치로 이동 Skills Marketplace 커뮤니티가 만든 AI 스킬을 발견하고 탐색하세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/proffesor-for-testing/sentinel-api-testing --skill test-data-management명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Zip 다운로드 다운로드 중... proffesor-for-testing
proffesor-for-testing/sentinel-api-testing
GitHub 저장소 열기 name test-data-management description Strategic test data generation, management, and privacy compliance. Use when creating test data, handling PII, ensuring GDPR/CCPA compliance, or scaling data generation for realistic testing scenarios. category specialized-testing priority high tokenEstimate 1000 agents ["qe-test-data-architect","qe-test-executor","qe-security-scanner"] implementation_status optimized optimization_version 1 last_optimized 2025-12-02T00:00:00.000Z dependencies [] quick_reference_card true tags ["test-data","faker","synthetic","gdpr","pii","anonymization","factories"]
Test Data Management
<default_to_action>
When creating or managing test data:
NEVER use production PII directly
GENERATE synthetic data with faker libraries
ANONYMIZE production data if used (mask, hash)
ISOLATE test data (transactions, per-test cleanup)
SCALE with batch generation (10k+ records/sec)
Quick Data Strategy:
Unit tests: Minimal data (just enough)
Integration: Realistic data (full complexity)
Performance: Volume data (10k+ records)
Critical Success Factors:
40% of test failures from inadequate data
GDPR fines up to €20M for PII violations
Never store production PII in test environments
</default_to_action>
Quick Reference Card
When to Use
Creating test datasets
Handling sensitive data
Performance testing with volume
GDPR/CCPA compliance
Data Strategies
Type When Size Minimal Unit tests 1-10 records Realistic Integration 100-1000 records Volume Performance 10k+ records Edge cases Boundary testing Targeted
Privacy Techniques
Technique Use Case Synthetic Generate fake data (preferred) Masking j***@example.com Hashing Irreversible pseudonymization Tokenization Reversible with key
Synthetic Data Generation
import { faker } from '@faker-js/faker' ;
faker.seed ( );
( ) {
{
: faker. . (),
: faker. . (),
: faker. . (),
: faker. . (),
: faker. . (),
: {
: faker. . (),
: faker. . (),
: faker. . ()
},
: faker. . ()
};
}
users = . ({ : }, generateUser);
123
function
generateUser
return
id
string
uuid
email
internet
email
firstName
person
firstName
lastName
person
lastName
phone
phone
number
address
street
location
streetAddress
city
location
city
zip
location
zipCode
createdAt
date
past
const
Array
from
length
1000
Test Data Builder Pattern class UserBuilder {
private user : Partial <User > = {};
asAdmin ( ) {
this .user .role = 'admin' ;
this .user .permissions = ['read' , 'write' , 'delete' ];
return this ;
}
asCustomer ( ) {
this .user .role = 'customer' ;
this .user .permissions = ['read' ];
return this ;
}
withEmail (email : string ) {
this .user .email = email;
return this ;
}
build (): User {
return {
id : this .user .id ?? faker.string .uuid (),
email : this .user .email ?? faker.internet .email (),
role : this .user .role ?? 'customer' ,
...this .user
} as User ;
}
}
const admin = new UserBuilder ().asAdmin ().withEmail ('admin@test.com' ).build ();
const customer = new UserBuilder ().asCustomer ().build ();
Data Anonymization
function maskEmail (email ) {
const [user, domain] = email.split ('@' );
return `${user[0 ]} ***@${domain} ` ;
}
function maskCreditCard (cc ) {
return `****-****-****-${cc.slice(-4 )} ` ;
}
const anonymizedUsers = prodUsers.map (user => ({
id : user.id ,
email : `user-${user.id} @example.com` ,
firstName : faker.person .firstName (),
phone : null ,
createdAt : user.createdAt
}));
Database Transaction Isolation
beforeEach (async () => {
await db.beginTransaction ();
});
afterEach (async () => {
await db.rollbackTransaction ();
});
test ('user registration' , async () => {
const user = await userService.register ({
email : 'test@example.com'
});
expect (user.id ).toBeDefined ();
});
Volume Data Generation
async function generateLargeDataset (count = 10000 ) {
const batchSize = 1000 ;
const batches = Math .ceil (count / batchSize);
for (let i = 0 ; i < batches; i++) {
const users = Array .from ({ length : batchSize }, (_, index ) => ({
id : i * batchSize + index,
email : `user${i * batchSize + index} @example.com` ,
firstName : faker.person .firstName ()
}));
await db.users .insertMany (users);
console .log (`Batch ${i + 1 } /${batches} ` );
}
}
Agent-Driven Data Generation
await Task ("Generate Test Data" , {
schema : 'ecommerce' ,
count : { users : 10000 , products : 500 , orders : 5000 },
preserveReferentialIntegrity : true ,
constraints : {
age : { min : 18 , max : 90 },
roles : ['customer' , 'admin' ]
}
}, "qe-test-data-architect" );
await Task ("Anonymize Production Data" , {
source : 'production-snapshot' ,
piiFields : ['email' , 'phone' , 'ssn' ],
method : 'pseudonymization' ,
retainStructure : true
}, "qe-test-data-architect" );
Agent Coordination Hints
Memory Namespace aqe/test-data-management/
├── schemas/* - Data schemas
├── generators/* - Generator configs
├── anonymization/* - PII handling rules
└── fixtures/* - Reusable fixtures
Fleet Coordination const dataFleet = await FleetManager .coordinate ({
strategy : 'test-data-generation' ,
agents : [
'qe-test-data-architect' ,
'qe-test-executor' ,
'qe-security-scanner'
],
topology : 'sequential'
});
Related Skills
Remember Test data is infrastructure, not an afterthought. 40% of test failures are caused by inadequate test data. Poor data = poor tests.
Never use production PII directly. GDPR fines up to €20M or 4% of revenue. Always use synthetic data or properly anonymized production snapshots.
With Agents: qe-test-data-architect generates 10k+ records/sec with realistic patterns, relationships, and constraints. Agents ensure GDPR/CCPA compliance automatically and eliminate test data bottlenecks.