Bringing localization into your Widget testing

Reme Le Hane
Wyzetalk Tech
Published in
3 min readJul 20, 2020

The more accurate you make your test, the higher the quality of the test itself.

Many apps these days are built to be more accessible, one thing we do to ensure this is we localize our applications, allowing people who do not speak the same language as we do, to also use the application.

In our application, we have been using easy_localization, I know there are quite a few choices, but for us, this was one of the easier ones to implement and for us, the JSON support was a big win with how we manage our localization.

To ensure we have the most accurate widget tests, we rather use “real” localizations than having to mock the helper classes.

To do this we keep a local copy of the locale JSON files to keep them safe from external updates and have created a helper function createLocalizedWidgetFortesting which looks like:

Widget createLocalizedWidgetForTesting({Widget child}) {
return EasyLocalization(
path: '$TEST_MOCK_STORAGE/locale',
useOnlyLangCode: true,
assetLoader: FileAssetLoader(),
fallbackLocale: const Locale('en'),
supportedLocales: globals.supportedLocale,
saveLocale: false,
child: MaterialApp(
home: Scaffold(
body: child,
),
),
);
}

As you will see, EasyLocatlizationrequires a path, that is simply a constant that we have defined a little higher in the file, as it is used as part of other mocks.

const TEST_MOCK_STORAGE = './test/fixtures/core';

Beyond that, everything else is pretty much how it is set up in main.dart .

Here is a simplified example of how a test would look with this implementation.

void main() {
testWidgets(
'Should render localized widget',
(
WidgetTester tester,
) async {
await tester.pumpWidget(
createLocalizedWidgetForTesting(
child: SampleWidget(),
),
);
await tester.pumpAndSettle();// expectations to follow
}
);
}

Through this would be able to run proper expectations like:

expect(find.text("Sample localized text", findsOneWidget);

More importantly, if you have a language switcher that a user can select you can test for text changes through a setup flow.

I hope you found this useful, and if you have any questions, comments, or improvements, feel free to drop me a comment.

Thanks for reading.

About Wyzetalk
Founded in South Africa and headquartered in The Netherlands, Wyzetalk is a leading global employee experience company that offers a mobile-first digital solution connecting large organisations with their dispersed, frontline workforce to improve communication, unleash innovation, and boost business performance. Since launching in 2012, the company has grown in revenue by more than 100% per annum. With a presence in 18 countries across five continents, today there are 650 000 employees making use of the Wyzetalk platform through clients in the Mining, Retail, FMCG, Manufacturing, Energy, Automotive and Shipping sectors.

Website: https://www.wyzetalk.com/

--

--

Reme Le Hane
Wyzetalk Tech

Runner, Developer, Gamer. | Lead Frontend Engineer at Loop with 14 years Front-End Experience & ~4yrs Flutter. | React Flutter Javascript Dart