add app test suite — unit, widget, golden, a11y (168 tests)
Four layers under app/test/:
* kernel/, extension/ — unit tests for every kernel service and
the extension contract. i18n fallback chain gets the full
matrix (exact/lang/default/placeholder, namespace isolation,
unknown namespace, interpolation). Theme resolver and
extension-manager topo sort covered.
* widgets/, builtin/ — widget tests for every primitive and each
Tier 0 built-in. Assertions reach into the Semantics node so
a missing label fails structurally, not visually.
* goldens/ — Alchemist + Ahem font for cross-platform pixel
stability; primitives only (button, tab bar, icon set). No
goldens for compositions — they'd churn through every tier.
* a11y/ — contract-level gate: semantic coverage walks the
built-in catalogue, contrast walks every token pair in every
bundled theme against WCAG-AA thresholds (catches real
regressions: the first run caught `tab.inactive_text` at 2.81
in summer-night), i18n coverage asserts every referenced key
exists in its catalog (exists-in-map, not "key == value" — too
ambiguous for keys that happen to equal their translation).
Helpers under helpers/: `KernelFixture.create()` boots a
KernelServices with in-memory stores + a FakeDaemonClient (no
socket, drivable connected-state), `widget_harness` wraps a
widget in the minimum tree that resolves theme + i18n.
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
import 'package:clide/clide.dart';
|
||||
import 'package:clide_app/extension/extension.dart';
|
||||
import 'package:clide_app/kernel/kernel.dart';
|
||||
import 'package:flutter/widgets.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
void main() {
|
||||
group('ContributionPoint sealed hierarchy', () {
|
||||
test('TabContribution exposes slot + title + i18n fields', () {
|
||||
final t = TabContribution(
|
||||
id: 'welcome.view',
|
||||
slot: Slots.workspace,
|
||||
title: 'Welcome',
|
||||
titleKey: 'tab.title',
|
||||
i18nNamespace: 'builtin.welcome',
|
||||
priority: -100,
|
||||
build: (_) => const SizedBox.shrink(),
|
||||
);
|
||||
expect(t.id, 'welcome.view');
|
||||
expect(t.slot, Slots.workspace);
|
||||
expect(t.title, 'Welcome');
|
||||
expect(t.titleKey, 'tab.title');
|
||||
expect(t.i18nNamespace, 'builtin.welcome');
|
||||
expect(t.priority, -100);
|
||||
});
|
||||
|
||||
test('StatusItemContribution pins the statusbar slot', () {
|
||||
final s = StatusItemContribution(
|
||||
id: 'ipc-status.indicator',
|
||||
build: (_) => const SizedBox.shrink(),
|
||||
);
|
||||
expect(s.slot, Slots.statusbar);
|
||||
});
|
||||
|
||||
test('CommandContribution has no slot', () {
|
||||
final c = CommandContribution(
|
||||
id: 'theme.pick',
|
||||
command: 'theme.pick',
|
||||
run: (_) async => IpcResponse.ok(id: '', data: const {}),
|
||||
);
|
||||
expect(c.slot, isNull);
|
||||
});
|
||||
|
||||
test('TrayItemContribution pins the tray slot', () {
|
||||
final t = TrayItemContribution(
|
||||
id: 't',
|
||||
label: 'Label',
|
||||
onSelected: () {},
|
||||
);
|
||||
expect(t.slot, Slots.tray);
|
||||
});
|
||||
|
||||
test('ToolbarButtonContribution pins the toolbar slot', () {
|
||||
final b = ToolbarButtonContribution(
|
||||
id: 'save',
|
||||
label: 'Save',
|
||||
onPressed: () {},
|
||||
);
|
||||
expect(b.slot, Slots.toolbar);
|
||||
});
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:clide_app/extension/extension.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
void main() {
|
||||
group('ExtensionScanner', () {
|
||||
late Directory root;
|
||||
|
||||
setUp(() async {
|
||||
root = await Directory.systemTemp.createTemp('clide_ext_');
|
||||
});
|
||||
|
||||
tearDown(() async {
|
||||
try {
|
||||
await root.delete(recursive: true);
|
||||
} catch (_) {}
|
||||
});
|
||||
|
||||
test('returns empty when directory is missing', () async {
|
||||
final absent = Directory('${root.path}/absent');
|
||||
final out = await const ExtensionScanner().discover(root: absent);
|
||||
expect(out, isEmpty);
|
||||
});
|
||||
|
||||
test('returns empty when directory exists but has no extensions', () async {
|
||||
final out = await const ExtensionScanner().discover(root: root);
|
||||
expect(out, isEmpty);
|
||||
});
|
||||
|
||||
test('discovers extensions from their own subdirs', () async {
|
||||
final a = Directory('${root.path}/ext.a')..createSync();
|
||||
await File('${a.path}/manifest.yaml')
|
||||
.writeAsString('id: ext.a\ntitle: A\nversion: 1.0.0\n');
|
||||
final b = Directory('${root.path}/ext.b')..createSync();
|
||||
await File('${b.path}/manifest.yaml')
|
||||
.writeAsString('id: ext.b\ntitle: B\nversion: 1.2.0\n');
|
||||
final out = await const ExtensionScanner().discover(root: root);
|
||||
expect(out.map((m) => m.id).toSet(), {'ext.a', 'ext.b'});
|
||||
});
|
||||
|
||||
test('skips a subdir without a manifest.yaml', () async {
|
||||
final a = Directory('${root.path}/ext.a')..createSync();
|
||||
await File('${a.path}/README.md').writeAsString('no manifest');
|
||||
final out = await const ExtensionScanner().discover(root: root);
|
||||
expect(out, isEmpty);
|
||||
});
|
||||
|
||||
test('skips malformed manifests (non-fatal)', () async {
|
||||
final bad = Directory('${root.path}/ext.bad')..createSync();
|
||||
await File('${bad.path}/manifest.yaml').writeAsString('not a map');
|
||||
final ok = Directory('${root.path}/ext.ok')..createSync();
|
||||
await File('${ok.path}/manifest.yaml').writeAsString('id: ext.ok');
|
||||
final out = await const ExtensionScanner().discover(root: root);
|
||||
expect(out.map((m) => m.id).toList(), ['ext.ok']);
|
||||
});
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
import 'package:clide_app/extension/extension.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
void main() {
|
||||
group('ExtensionManifest.fromYamlString', () {
|
||||
test('parses the minimum viable manifest', () {
|
||||
final m = ExtensionManifest.fromYamlString('''
|
||||
id: ext.postmeridiem.linear
|
||||
title: Linear
|
||||
version: 1.2.3
|
||||
entry: main.lua
|
||||
schema_version: 1
|
||||
''');
|
||||
expect(m.id, 'ext.postmeridiem.linear');
|
||||
expect(m.title, 'Linear');
|
||||
expect(m.version, '1.2.3');
|
||||
expect(m.entry, 'main.lua');
|
||||
expect(m.schemaVersion, 1);
|
||||
expect(m.dependsOn, isEmpty);
|
||||
});
|
||||
|
||||
test('title defaults to id when absent', () {
|
||||
final m = ExtensionManifest.fromYamlString('id: ext.x');
|
||||
expect(m.title, 'ext.x');
|
||||
expect(m.version, '0.0.0');
|
||||
expect(m.entry, 'extension.lua');
|
||||
expect(m.schemaVersion, 1);
|
||||
});
|
||||
|
||||
test('depends_on list is captured', () {
|
||||
final m = ExtensionManifest.fromYamlString('''
|
||||
id: ext.a
|
||||
depends_on:
|
||||
- builtin.git
|
||||
- builtin.diff
|
||||
''');
|
||||
expect(m.dependsOn, ['builtin.git', 'builtin.diff']);
|
||||
});
|
||||
|
||||
test('non-string depends_on entries are filtered out', () {
|
||||
final m = ExtensionManifest.fromYamlString('''
|
||||
id: ext.x
|
||||
depends_on: [builtin.git, 42, builtin.diff]
|
||||
''');
|
||||
expect(m.dependsOn, ['builtin.git', 'builtin.diff']);
|
||||
});
|
||||
|
||||
test('missing id throws FormatException', () {
|
||||
expect(
|
||||
() => ExtensionManifest.fromYamlString('title: Floating'),
|
||||
throwsA(isA<FormatException>()),
|
||||
);
|
||||
});
|
||||
|
||||
test('empty id throws FormatException', () {
|
||||
expect(
|
||||
() => ExtensionManifest.fromYamlString('id: ""'),
|
||||
throwsA(isA<FormatException>()),
|
||||
);
|
||||
});
|
||||
|
||||
test('non-map root throws FormatException', () {
|
||||
expect(
|
||||
() => ExtensionManifest.fromYamlString('- just a list'),
|
||||
throwsA(isA<FormatException>()),
|
||||
);
|
||||
});
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user