Files
clide/test/kernel/src/settings_control_registry_test.dart
T
jpmschweitzerandClaude Opus 4.8 757d6f71fa feat(settings): Appearance category + custom-control escape hatch (T-452)
Add the one bespoke control the schema engine defers to. New
SettingsControlContribution routes a WidgetBuilder into a kernel
SettingsControlRegistry under a customId; a SettingsFieldKind.custom field
names that id, and the renderer draws the registered widget full-width
(label on top, no scope tag — the control owns its own apply + scope).

The theme-picker extension uses it: an Appearance category whose theme field
is custom, backed by AppearanceThemeControl — base-theme chips + a
high-contrast toggle that apply live through ThemeController (persisted by
theme_persistence). Reuses the shared theme_families helpers.

Tests: control registry (register/dup/unregister), the renderer's custom-field
path, and the Appearance contribution + live theme apply.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-17 13:04:52 +02:00

27 lines
867 B
Dart

import 'package:clide/kernel/kernel.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
group('SettingsControlRegistry', () {
Widget builder(BuildContext _) => const SizedBox.shrink();
test('register exposes a builder by id', () {
final r = SettingsControlRegistry()..register('theme.picker', builder);
expect(r.builderFor('theme.picker'), isNotNull);
expect(r.builderFor('missing'), isNull);
});
test('duplicate id throws', () {
final r = SettingsControlRegistry()..register('dup', builder);
expect(() => r.register('dup', builder), throwsStateError);
});
test('unregister removes the builder', () {
final r = SettingsControlRegistry()..register('x', builder);
r.unregister('x');
expect(r.builderFor('x'), isNull);
});
});
}