Spaces:
Sleeping
Sleeping
File size: 8,512 Bytes
115612d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 | # HOW TO TEST - Quick Start Guide
## π 3-Step Testing
### 1οΈβ£ Quick Smoke Test (2 minutes)
```bash
python test_cloudsoc.py --quick
```
β Validates all 3 difficulty levels
β Tests basic tool execution
β Checks preconditions & traps
β Confirms everything works
### 2οΈβ£ Full Unit Tests (10 minutes)
```bash
python test_cloudsoc.py --verbose
```
β 20+ comprehensive tests
β Tests all 12 mechanics
β Covers 24 tools
β Full feature validation
### 3οΈβ£ Interactive Debugging (5-15 minutes)
```bash
python debug_cloudsoc.py --quick
```
β Explore cloud infrastructure
β View alerts and logs
β See discovered flags
β Execute sample actions
β Check scoring details
---
## π Test Coverage
| Test Level | Time | Coverage | File |
|-----------|------|----------|------|
| Quick | 2m | Core mechanics | `test_cloudsoc.py --quick` |
| Full | 10m | All features | `test_cloudsoc.py --verbose` |
| Debug | 5-15m | Interactive | `debug_cloudsoc.py --quick` |
| Manual | varies | With LLM | `inference.py` |
| Docker | 5m | Deployment | `docker build .` |
---
## π― What Gets Tested
### β
Mechanics (All 12)
1. Deceptive Environment β Mixed logs with noise
2. Partial Observability β Query costs tracked
3. Strict Preconditions β Snapshot/isolate dependencies
4. Adversarial Traps β Terminate = -1.0, game over
5. Gradient Rewards β +0.02 per flag
6. Memory Pressure β 6-turn sliding window
7. Tool Abstraction β Pydantic JSON schema
8. Rich Scoring β 4-phase breakdown
9. Deterministic Seeds β Reproducible states
10. CoT Prompting β thought/tool/args format
11. Multi-Task Campaign β EasyβMediumβHard state transfer
12. Timeline Reconstruction β Jaccard + order scoring
### β
Tools (24 Available)
```
aws.cloudwatch.query_basic aws.cloudwatch.query_deep
aws.ec2.describe aws.ec2.isolate
aws.ec2.snapshot aws.ec2.terminate
aws.iam.describe_role aws.iam.detach_role
aws.iam.revoke_credentials aws.iam.list_policies
aws.s3.get_bucket_policy aws.s3.block_public_access
aws.s3.list_objects aws.rds.rotate_credentials
aws.security_group.modify aws.investigate
aws.soc.get_alerts aws.soc.close_incident
aws.guardduty.get_findings aws.cloudtrail.lookup_events
aws.config.get_compliance aws.ssm.run_command
aws.lambda.list_functions aws.sts.get_caller_identity
```
### β
Scenarios (3 Difficulty Levels)
| Task | Steps | Flags | Tools | Complexity |
|------|-------|-------|-------|-----------|
| Easy | 15 | 3 | 5+ | Straightforward S3 discovery |
| Medium | 25 | 4 | 8+ | Credential tracing & revocation |
| Hard | 40 | 7 | 12+ | Full ransomware IR |
---
## π Example Test Output
```
=== Quick Smoke Tests ===
1. Testing environment initialization...
β easy: 15 steps, 3 flags
β medium: 25 steps, 4 flags
β hard: 40 steps, 7 flags
2. Testing tool execution...
β Tool executed: reward=0.00
3. Testing deterministic seeding...
β Same seed produces same state
4. Testing action preconditions...
β Precondition check works
5. Testing adversarial trap...
β Adversarial trap triggered (-1.0 penalty)
β
All quick tests passed!
```
---
## π Manual Test Examples
### Test Preconditions
```bash
python -c "
from cloud_soc_env import CloudSOCEnv
import json
env = CloudSOCEnv(task='easy', seed=42)
env.reset()
instance = list(env.state.instances.keys())[0]
# Try isolate without snapshot (should fail)
action = json.dumps({
'thought': 'Isolate',
'tool': 'aws.ec2.isolate',
'args': {'instance_id': instance}
})
obs, reward, term, trunc, info = env.step(action)
print(f'Error: {info[\"last_action_error\"]}') # Should have PRECONDITION_FAILED
"
```
### Test Tool Execution
```bash
python -c "
from cloud_soc_env import CloudSOCEnv
import json
env = CloudSOCEnv(task='easy', seed=42)
env.reset()
# Execute 5 sample tools
for tool in ['aws.soc.get_alerts', 'aws.guardduty.get_findings',
'aws.cloudwatch.query_basic', 'aws.ec2.describe']:
action = json.dumps({'thought': 'Test', 'tool': tool, 'args': {}})
obs, reward, _, _, info = env.step(action)
print(f'{tool}: reward={reward:.2f}')
"
```
### Test Reward Shaping
```bash
python -c "
from cloud_soc_env import CloudSOCEnv
import json
env = CloudSOCEnv(task='easy', seed=42)
env.reset()
# Query deep logs - should discover flags and get reward
action = json.dumps({
'thought': 'Deep query',
'tool': 'aws.cloudwatch.query_deep',
'args': {'log_group': '/aws/ec2'}
})
obs, reward, _, _, info = env.step(action)
print(f'Reward: {reward:.2f} (includes -0.05 cost + flag discovery)')
print(f'Flags discovered: {len(env.state.discovered_flags)}')
"
```
---
## π³ Docker Testing
```bash
# Build
docker build -t cloudsoc:test .
# Run with environment variables
docker run --rm \
-e HF_TOKEN="test_token" \
-e API_BASE_URL="https://api.openai.com/v1" \
-e MODEL_NAME="gpt-4.1-mini" \
cloudsoc:test
# Check resource usage
docker stats cloudsoc # Should be < 2GB RAM
```
---
## β‘ Performance Benchmarks
```
Environment Init: < 100ms
Per Step (no LLM): < 3ms
Per Step (with LLM): 0.5-3s (depends on LLM latency)
Memory Usage: < 2GB for hard task
```
---
## β¨ Files Overview
| File | Size | Purpose |
|------|------|---------|
| `cloud_soc_env.py` | 65KB | Core Gymnasium environment |
| `inference.py` | 18KB | LLM evaluation loop |
| `test_cloudsoc.py` | 18KB | Unit test suite |
| `debug_cloudsoc.py` | 13KB | Interactive debugger |
| `openenv.yaml` | 11KB | Benchmark specification |
| `TESTING.md` | 10KB | Detailed testing guide |
| `DEPLOYMENT.md` | 10KB | Deployment checklist |
| `README.md` | 3KB | Project overview |
---
## π What Each Test Does
### Quick Smoke Test
```python
python test_cloudsoc.py --quick
```
- Loads all 3 difficulty levels β
- Executes sample tool calls β
- Checks precondition enforcement β
- Tests adversarial trap triggering β
- Verifies deterministic seeding β
### Full Unit Test Suite
```python
python test_cloudsoc.py --verbose
```
- 20+ individual test methods
- Tests all major features
- Covers error handling
- Validates all tools
- Tests multi-task campaigns
### Interactive Debug
```python
python debug_cloudsoc.py --quick
```
- Shows initial cloud state
- Displays all alerts and logs
- Executes sample action sequence
- Tracks progress and flags
- Shows scoring breakdown
- Previews system prompt
---
## π¨ Common Issues & Fixes
| Issue | Fix |
|-------|-----|
| `ModuleNotFoundError: gymnasium` | `pip install -r requirements.txt` |
| No test output | Make sure you're in the project directory |
| "No compromised instance" error | Try different seed: `--seed 42` |
| Parser fails on LLM response | Check verbose output with `--verbose` |
| Docker out of memory | Use `--task easy` instead of hard |
---
## π Scoring Verification
After running tests, you should see:
β
**Easy Task**
- 3 required flags discoverable
- Completion in < 15 steps typical
- Timeline accuracy scoring working
β
**Medium Task**
- 4 required flags
- Requires credential revocation
- State inheritance from Easy task
β
**Hard Task**
- 7 required flags
- Full incident response required
- Forensic evidence preservation critical
---
## π Quick Verification Checklist
Run these in order:
```bash
# 1. Syntax check (instant)
python -m py_compile cloud_soc_env.py inference.py
# 2. Quick tests (2 minutes)
python test_cloudsoc.py --quick
# 3. Interactive exploration (5 minutes)
python debug_cloudsoc.py --quick
# 4. Full tests (10 minutes)
python test_cloudsoc.py --verbose
# 5. Docker build (5 minutes)
docker build -t cloudsoc:test .
```
**Total time: ~25 minutes for complete validation** β
---
## π Success Criteria
- [ ] All quick tests pass β
- [ ] All unit tests pass β
- [ ] Interactive debug shows proper cloud state β
- [ ] Tools execute with correct rewards β
- [ ] Preconditions enforced β
- [ ] Adversarial trap triggers (-1.0) β
- [ ] Timeline grading works β
- [ ] Docker builds successfully β
- [ ] Memory usage < 2GB β
- [ ] All 3 difficulty levels load β
**If all pass β Ready for hackathon submission! π**
---
## Need Help?
1. **See what's happening**: Run with `--verbose` flag
2. **Explore environment**: Use `debug_cloudsoc.py`
3. **Check specific test**: Run individual test class
4. **Review docs**: See `TESTING.md` and `DEPLOYMENT.md`
Good luck! π
|