Files
English/kouyu_english/test/usage_contrast_test.dart
T
shenleiandClaude Opus 5 6b42b7abc3 feat: 独立词库、三向认词与当日快闪复习
## 独立词库

理解词原先只能跟着课程单元走,学完 A0 十课词汇量只增加约 22 个实词,
不足以解决"记不住单词"。新增一份独立词库 assets/words/wordbank.json
(2748 词,A1–B1),挂进 receptiveWordRegistry 的合成单元 bank-A1/A2/B1,
完全复用理解词已有的状态机,不依赖课程进度,第一天就能用。

数据来源、许可与合成规则记在 tool/words/DATA-NOTE.md:CEFR-J 定等级、
公开词书提供音标、AI 重写全部释义并生成例句、OpenSubtitles 提供口语词频。
词书部分为 CC BY-NC-SA 4.0 且上游权利不明,仅供个人非商用;
若要分发或上架,须替换音标那一列。

## 背单词机制

- 间隔阶梯 1/3/7/15/30/60/120 天,连续答对上一级,答错回第一级。
  原先首次答对后要等 7 天才复习,正是"第二天就忘"的成因。
- 每日新词上限(10 分钟 8 个 / 20 分钟 15 个 / 30 分钟 20 个)。
  阶梯第一级是次日,今天引入的新词就是明天的工作量。
- 新词按口语频率发放,不再按字母序 —— A1 从 a.m./ability 变成 no/not/know/just。
- 三个方向按层级轮转:看词(英→中)→ 听词(音→中)→ 想词(中→英)。
  想词题仍是选择题,不要求产出,理解词定位不变,不进升级分母。
- 单词页独立成 tab,首页今日任务卡下方给一张认词入口卡。

## 用法对照

课程 JSON 增加 usage 字段(when/reply/swap/confuse):一个句型用在什么场合、
对方通常怎么答、还能怎么说、跟哪个学过的句型容易混。
知道 How are you? 的意思,不等于知道它不是用来问名字的。

## 复习流

- 当日快闪(recap)独立成队列,不占复习预算,也不计入积压。
- 只发放当日预算内的量,其余保持到期状态等下次,不悄悄丢弃或改期。
- 答错的项隔几题后回来,而不是立刻重问。

测试 296 通过,flutter analyze 干净。

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-20 23:54:17 +09:00

176 lines
6.5 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:kouyu_english/core/app_state.dart';
import 'package:kouyu_english/core/courses/courses.dart';
import 'package:kouyu_english/core/models.dart';
import 'package:kouyu_english/features/review/review_page.dart';
/// Knowing what a sentence means is not knowing when to say it. The packs
/// carry that as `usage`; these cover what the app does with it — learning
/// engine 3.1 (what counts as which evidence) and 3.5 (recognition inside a
/// situation).
void main() {
ReviewItem due(String id) => ReviewItem(
id: id,
target: coreItemEnglish(id),
prompt: coreReviewTemplate(id).prompt,
hint: coreItemEnglish(id),
dueAt: DateTime.now().subtract(const Duration(hours: 1)),
skill: '回忆表达',
);
test('the pack says when a pattern is used and what it is confused with', () {
final usage = coreUsage('A0-P02')!;
expect(usage.when, isNotEmpty);
expect(usage.reply, isNotEmpty);
expect(
usage.confuse.map((entry) => entry.id),
contains('A0-P05'),
reason: 'What\'s your name? 和 How are you? 正是分不清的那一对',
);
});
test('a contrast question asks which sentence the situation calls for', () {
final question = coreContrastQuestion('A0-P02')!;
expect(question.situation, coreUsage('A0-P02')!.when);
expect(question.answer, coreItemSpoken('A0-P02'));
expect(question.options, contains(coreItemSpoken('A0-P05')));
expect(question.note, isNotEmpty);
});
test('an untaught confusable is left out of the question', () {
// `How are you?` is taught two units later than `What's your name?`, so
// on the day P02 is first reviewed it is not a choice the learner could
// make sense of. Its same-unit partner still is.
final early = coreContrastQuestion('A0-P02', isTaught: (_) => false)!;
expect(early.options, isNot(contains(coreItemSpoken('A0-P05'))));
expect(early.options, contains(coreItemSpoken('A0-P01')));
// Once the learner has met it, it is the option worth offering.
final later = coreContrastQuestion(
'A0-P02',
isTaught: (id) => id == 'A0-P05',
)!;
expect(later.options, contains(coreItemSpoken('A0-P05')));
});
test('a contrast question never offers more than three sentences', () {
// `What's your name?` is confused with three other taught sentences.
expect(coreUsage('A0-P02')!.confuse.length, greaterThan(2));
expect(coreContrastQuestion('A0-P02')!.options, hasLength(3));
});
test('answering a contrast question records 认识, not a checkpoint', () {
final state = AppState();
final item = due('A0-P02');
state.reviewQueue.add(item);
state.recordContrastAnswer(item, correct: true);
final mastery = state.mastery['A0-P02']!;
expect(mastery.status, MasteryStatus.recognize);
expect(mastery.checkpoint, 0);
// It is not recall either: the learner picked the sentence, not said it.
expect(mastery.status, isNot(MasteryStatus.recall));
});
test('a contrast answer survives rebuilding mastery from evidence', () {
final state = AppState();
final item = due('A0-P02');
state.reviewQueue.add(item);
state.recordContrastAnswer(item, correct: true);
state.rebuildMasteryFromEvidence();
expect(state.mastery['A0-P02']!.checkpoint, 0);
expect(state.mastery['A0-P02']!.status, MasteryStatus.recognize);
});
test('the contrast question cannot undo the miss that led to it', () {
final state = AppState();
final item = due('A0-P02');
state.reviewQueue.add(item);
state.reportReviewFailure(item);
expect(state.mastery['A0-P02']!.needsReview, isTrue);
state.recordContrastAnswer(item, correct: true);
expect(state.mastery['A0-P02']!.needsReview, isTrue);
expect(state.mastery['A0-P02']!.checkpoint, 0);
});
test('getting the contrast wrong is not a language failure', () {
final state = AppState();
final item = due('A0-P02');
state.reviewQueue.add(item);
state.recordContrastAnswer(item, correct: false);
expect(state.mastery['A0-P02']!.needsReview, isFalse);
expect(state.mastery['A0-P02']!.checkpoint, 0);
});
testWidgets('a miss opens the explanation, then the contrast question', (
tester,
) async {
final messenger = tester.binding.defaultBinaryMessenger;
for (final name in const [
'com.llfbandit.record/messages',
'xyz.luan/audioplayers',
'xyz.luan/audioplayers.global',
]) {
messenger.setMockMethodCallHandler(MethodChannel(name), (_) async => null);
}
messenger.setMockStreamHandler(
const EventChannel('xyz.luan/audioplayers.global/events'),
MockStreamHandler.inline(onListen: (_, _) {}),
);
final reportError = FlutterError.onError;
FlutterError.onError = (details) {
if (details.exception is! MissingPluginException) {
reportError?.call(details);
}
};
addTearDown(() => FlutterError.onError = reportError);
final state = AppState();
state.reviewQueue.add(due('A0-P02'));
// Past the first checkpoint, so the review opens on the production task
// rather than the recognition question.
state.mastery['A0-P02'] = const MasteryItem(
id: 'A0-P02',
label: "What's your name?",
status: MasteryStatus.recall,
evidence: [],
checkpoint: 1,
);
await tester.pumpWidget(
MaterialApp(
home: Scaffold(
body: ReviewPage(
state: state,
onFinished: () {},
onOpenAdaptiveLesson: () {},
),
),
),
);
final giveUp = find.text('暂时想不起来');
await tester.ensureVisible(giveUp);
await tester.tap(giveUp);
await tester.pumpAndSettle();
expect(find.text('先弄清楚什么时候用'), findsOneWidget);
expect(find.textContaining(coreUsage('A0-P02')!.when), findsWidgets);
final checkpointAfterMiss = state.mastery['A0-P02']!.checkpoint;
final wrong = find.widgetWithText(
OutlinedButton,
coreItemSpoken('A0-P01'),
);
await tester.ensureVisible(wrong);
await tester.tap(wrong);
await tester.pumpAndSettle();
// The answer is named and the difference explained, and the miss stands.
expect(
find.textContaining('这里要说 ${coreItemSpoken('A0-P02')}'),
findsOneWidget,
);
expect(state.mastery['A0-P02']!.needsReview, isTrue);
expect(state.mastery['A0-P02']!.checkpoint, checkpointAfterMiss);
});
}