|
|
|
|
@ -12,18 +12,20 @@ ENTRY = Path(__file__).resolve().parents[1] / "frontend" / "mobile-work-entry.js
|
|
|
|
|
TIMER = Path(__file__).resolve().parents[1] / "frontend" / "today-timer.js"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_mobile_work_entry_prioritizes_continue_resume_start_then_fallback():
|
|
|
|
|
def test_mobile_work_entry_prioritizes_continue_resume_start_plan_then_fallback():
|
|
|
|
|
script = f"""
|
|
|
|
|
const createEntry = require({json.dumps(str(ENTRY))});
|
|
|
|
|
const state = {{active:true, resumable:true, today:2}};
|
|
|
|
|
const state = {{active:true, resumable:true, today:2, eligible:3}};
|
|
|
|
|
const calls = [];
|
|
|
|
|
const entry = createEntry({{
|
|
|
|
|
isTodayActive: () => state.active,
|
|
|
|
|
isTodayResumable: () => state.resumable,
|
|
|
|
|
getTodayCount: () => state.today,
|
|
|
|
|
getEligibleCount: () => state.eligible,
|
|
|
|
|
continueToday: () => calls.push('continue'),
|
|
|
|
|
resumeToday: () => calls.push('resume'),
|
|
|
|
|
startToday: () => calls.push('start'),
|
|
|
|
|
planToday: () => calls.push('plan'),
|
|
|
|
|
openFallback: () => calls.push('fallback'),
|
|
|
|
|
}});
|
|
|
|
|
const modes = [];
|
|
|
|
|
@ -31,6 +33,7 @@ modes.push(entry.open());
|
|
|
|
|
state.active = false; modes.push(entry.open());
|
|
|
|
|
state.resumable = false; modes.push(entry.open());
|
|
|
|
|
state.today = 0; modes.push(entry.open());
|
|
|
|
|
state.eligible = 0; modes.push(entry.open());
|
|
|
|
|
process.stdout.write(JSON.stringify({{modes, calls}}));
|
|
|
|
|
"""
|
|
|
|
|
result = subprocess.run(
|
|
|
|
|
@ -39,8 +42,8 @@ process.stdout.write(JSON.stringify({{modes, calls}}));
|
|
|
|
|
|
|
|
|
|
assert result.returncode == 0, result.stderr
|
|
|
|
|
assert json.loads(result.stdout) == {
|
|
|
|
|
"modes": ["continue", "resume", "start", "work"],
|
|
|
|
|
"calls": ["continue", "resume", "start", "fallback"],
|
|
|
|
|
"modes": ["continue", "resume", "start", "plan", "work"],
|
|
|
|
|
"calls": ["continue", "resume", "start", "plan", "fallback"],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -125,9 +128,11 @@ dock.updateWork('resume', 0);
|
|
|
|
|
const resuming = {{ text:workLabel.textContent, label:work.attributes['aria-label'] }};
|
|
|
|
|
dock.updateWork('start', 0);
|
|
|
|
|
const starting = {{ text:workLabel.textContent, label:work.attributes['aria-label'] }};
|
|
|
|
|
dock.updateWork('plan', 0);
|
|
|
|
|
const planning = {{ text:workLabel.textContent, label:work.attributes['aria-label'] }};
|
|
|
|
|
dock.updateWork('work', 0);
|
|
|
|
|
process.stdout.write(JSON.stringify({{
|
|
|
|
|
continuing, resuming, starting,
|
|
|
|
|
continuing, resuming, starting, planning,
|
|
|
|
|
fallback:{{ text:workLabel.textContent, label:work.attributes['aria-label'] }},
|
|
|
|
|
}}));
|
|
|
|
|
"""
|
|
|
|
|
@ -143,6 +148,7 @@ process.stdout.write(JSON.stringify({{
|
|
|
|
|
},
|
|
|
|
|
"resuming": {"text": "Resume", "label": "Resume Today"},
|
|
|
|
|
"starting": {"text": "Start", "label": "Start Today"},
|
|
|
|
|
"planning": {"text": "Plan", "label": "Plan Today"},
|
|
|
|
|
"fallback": {"text": "Work", "label": "Work"},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -244,9 +250,11 @@ async def test_dashboard_wires_mobile_work_dock_into_today_session_lifecycle():
|
|
|
|
|
assert "isTodayActive: () => workSession.checkpointed()" in html
|
|
|
|
|
assert "isTodayResumable: () => workSession.resumable()" in html
|
|
|
|
|
assert "getTodayCount: () => todayMyWork.length" in html
|
|
|
|
|
assert "getEligibleCount: () => activeMyWork.length" in html
|
|
|
|
|
assert "continueToday: continueTodaySession" in html
|
|
|
|
|
assert "resumeToday: resumeTodaySession" in html
|
|
|
|
|
assert "startToday: startTodaySession" in html
|
|
|
|
|
assert "planToday: () => openPlanToday(mobileTaskButtons.work)" in html
|
|
|
|
|
assert "work: () => mobileWorkEntry.open()" in html
|
|
|
|
|
assert "mobileTaskDock.updateWork(mobileWorkEntry.mode())" in html
|
|
|
|
|
assert "mobileTaskDock.updateAttention(countMyWork(activeMyWork).attention)" in html
|
|
|
|
|
|