feat: add profile REST endpoints with HR zone validation
Implements GET /api/profile and PUT /api/profile endpoints with validation of HR zones (must be contiguous, non-overlapping, 0-100%). Also updates profile migration to use correct HR zone defaults (0-20, 20-40, etc.) that match validation requirements. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -16,8 +16,8 @@ func TestProfile_DefaultsThenUpdate(t *testing.T) {
|
||||
if p.RollingWindowDays != 90 {
|
||||
t.Errorf("RollingWindowDays = %d, want 90 (migration default)", p.RollingWindowDays)
|
||||
}
|
||||
if p.HRZone1MinPct != 50 || p.HRZone5MaxPct != 100 {
|
||||
t.Errorf("zone defaults = %+v, want Z1 min=50, Z5 max=100", p)
|
||||
if p.HRZone1MinPct != 0 || p.HRZone5MaxPct != 100 {
|
||||
t.Errorf("zone defaults = %+v, want Z1 min=0, Z5 max=100", p)
|
||||
}
|
||||
|
||||
maxHR, restingHR := 190.0, 50.0
|
||||
|
||||
Reference in New Issue
Block a user