flutter_flutter/packages/flutter/test/widgets/localizations_test.dart
chunhtai 2b6b9d1258
Adds semantics locale support for web (#171196)
<!--
Thanks for filing a pull request!
Reviewers are typically assigned within a week of filing a request.
To learn more about code review, see our documentation on Tree Hygiene:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
-->

toward https://github.com/flutter/flutter/issues/98948

This sets the ground work for framework and web

still need to implement:
1. Android and iOS support
2. set application locale.

## Pre-launch Checklist

- [ ] I read the [Contributor Guide] and followed the process outlined
there for submitting PRs.
- [ ] I read the [Tree Hygiene] wiki page, which explains my
responsibilities.
- [ ] I read and followed the [Flutter Style Guide], including [Features
we expect every widget to implement].
- [ ] I signed the [CLA].
- [ ] I listed at least one issue that this PR fixes in the description
above.
- [ ] I updated/added relevant documentation (doc comments with `///`).
- [ ] I added new tests to check the change I am making, or this PR is
[test-exempt].
- [ ] I followed the [breaking change policy] and added [Data Driven
Fixes] where supported.
- [ ] All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-new channel
on [Discord].

<!-- Links -->
[Contributor Guide]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
[Tree Hygiene]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
[test-exempt]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests
[Flutter Style Guide]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md
[Features we expect every widget to implement]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement
[CLA]: https://cla.developers.google.com/
[flutter/tests]: https://github.com/flutter/tests
[breaking change policy]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes
[Discord]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
[Data Driven Fixes]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
2025-07-02 21:46:09 +00:00

181 lines
6.1 KiB
Dart

// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:flutter/semantics.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
final TestAutomatedTestWidgetsFlutterBinding binding = TestAutomatedTestWidgetsFlutterBinding();
testWidgets('English translations exist for all WidgetsLocalizations properties', (
WidgetTester tester,
) async {
const WidgetsLocalizations localizations = DefaultWidgetsLocalizations();
expect(localizations.reorderItemUp, isNotNull);
expect(localizations.reorderItemDown, isNotNull);
expect(localizations.reorderItemLeft, isNotNull);
expect(localizations.reorderItemRight, isNotNull);
expect(localizations.reorderItemToEnd, isNotNull);
expect(localizations.reorderItemToStart, isNotNull);
expect(localizations.copyButtonLabel, isNotNull);
expect(localizations.cutButtonLabel, isNotNull);
expect(localizations.pasteButtonLabel, isNotNull);
expect(localizations.selectAllButtonLabel, isNotNull);
expect(localizations.lookUpButtonLabel, isNotNull);
expect(localizations.searchWebButtonLabel, isNotNull);
expect(localizations.shareButtonLabel, isNotNull);
});
testWidgets('Locale is available when Localizations widget stops deferring frames', (
WidgetTester tester,
) async {
final FakeLocalizationsDelegate delegate = FakeLocalizationsDelegate();
await tester.pumpWidget(
Localizations(
locale: const Locale('fo'),
delegates: <LocalizationsDelegate<dynamic>>[WidgetsLocalizationsDelegate(), delegate],
child: const Text('loaded'),
),
);
final dynamic state = tester.state(find.byType(Localizations));
// ignore: avoid_dynamic_calls
expect(state!.locale, isNull);
expect(find.text('loaded'), findsNothing);
late Locale locale;
binding.onAllowFrame = () {
// ignore: avoid_dynamic_calls
locale = state.locale as Locale;
};
delegate.completer.complete('foo');
await tester.idle();
expect(locale, const Locale('fo'));
await tester.pump();
expect(find.text('loaded'), findsOneWidget);
});
testWidgets('Localizations.localeOf throws when no localizations exist', (
WidgetTester tester,
) async {
final GlobalKey contextKey = GlobalKey(debugLabel: 'Test Key');
await tester.pumpWidget(Container(key: contextKey));
expect(
() => Localizations.localeOf(contextKey.currentContext!),
throwsA(
isAssertionError.having(
(AssertionError e) => e.message,
'message',
contains('does not include a Localizations ancestor'),
),
),
);
});
testWidgets('Localizations.maybeLocaleOf returns null when no localizations exist', (
WidgetTester tester,
) async {
final GlobalKey contextKey = GlobalKey(debugLabel: 'Test Key');
await tester.pumpWidget(Container(key: contextKey));
expect(Localizations.maybeLocaleOf(contextKey.currentContext!), isNull);
});
group('Semantics', () {
testWidgets('set locale semantics', (WidgetTester tester) async {
await tester.pumpWidget(
Localizations(
locale: const Locale('fo'),
delegates: <LocalizationsDelegate<dynamic>>[WidgetsLocalizationsDelegate()],
child: Semantics(
container: true,
label: '1',
explicitChildNodes: true,
child: Column(
children: <Widget>[
const Text('2'),
Localizations(
locale: const Locale('zh'),
delegates: <LocalizationsDelegate<dynamic>>[WidgetsLocalizationsDelegate()],
child: const Text('3'),
),
],
),
),
),
);
final SemanticsNode node1 = tester.getSemantics(find.bySemanticsLabel('1'));
expect(node1.getSemanticsData().locale, const Locale('fo'));
final SemanticsNode node2 = tester.getSemantics(find.bySemanticsLabel('2'));
expect(node2.getSemanticsData().locale, const Locale('fo'));
final SemanticsNode node3 = tester.getSemantics(find.bySemanticsLabel('3'));
expect(node3.getSemanticsData().locale, const Locale('zh'));
});
testWidgets('application level does not set semantics', (WidgetTester tester) async {
await tester.pumpWidget(
Localizations(
locale: const Locale('fo'),
isApplicationLevel: true,
delegates: <LocalizationsDelegate<dynamic>>[WidgetsLocalizationsDelegate()],
child: Semantics(
container: true,
label: '1',
explicitChildNodes: true,
child: const Column(children: <Widget>[Text('2'), Text('3')]),
),
),
);
final SemanticsNode node1 = tester.getSemantics(find.bySemanticsLabel('1'));
expect(node1.getSemanticsData().locale, isNull);
final SemanticsNode node2 = tester.getSemantics(find.bySemanticsLabel('2'));
expect(node2.getSemanticsData().locale, isNull);
final SemanticsNode node3 = tester.getSemantics(find.bySemanticsLabel('3'));
expect(node3.getSemanticsData().locale, isNull);
});
});
}
class FakeLocalizationsDelegate extends LocalizationsDelegate<String> {
final Completer<String> completer = Completer<String>();
@override
bool isSupported(Locale locale) => true;
@override
Future<String> load(Locale locale) => completer.future;
@override
bool shouldReload(LocalizationsDelegate<String> old) => false;
}
class TestAutomatedTestWidgetsFlutterBinding extends AutomatedTestWidgetsFlutterBinding {
VoidCallback? onAllowFrame;
@override
void allowFirstFrame() {
onAllowFrame?.call();
super.allowFirstFrame();
}
}
class WidgetsLocalizationsDelegate extends LocalizationsDelegate<WidgetsLocalizations> {
@override
bool isSupported(Locale locale) => true;
@override
Future<WidgetsLocalizations> load(Locale locale) => DefaultWidgetsLocalizations.load(locale);
@override
bool shouldReload(WidgetsLocalizationsDelegate old) => false;
}