Compare commits

..

No commits in common. "ec1f1eeeb482d5557df3ed21ef4ad2dcf23c7402" and "d9ce47e0dd33c44d82c9af20a2400b7679ab21d9" have entirely different histories.

4 changed files with 46 additions and 51 deletions

View file

@ -87,6 +87,11 @@ jobs:
with:
submodules: recursive
- name: Download apk
uses: actions/download-artifact@v3
with:
name: m3_lightmeter_apk
- name: Increment build number & replace version number
run: bash ./.github/scripts/increment_build_number.sh ${{ github.event.inputs.version }}
@ -104,11 +109,6 @@ jobs:
branch: ${{ github.ref_name }}
unprotect_reviews: true
- name: Download apk
uses: actions/download-artifact@v3
with:
name: m3_lightmeter_apk
- name: Rename apk
run: mv app-prod-release.apk m3_lightmeter.apk

BIN
app-prod-release.apk Normal file

Binary file not shown.

View file

@ -46,7 +46,7 @@ class _MockIAPProvidersState extends State<MockIAPProviders> {
storageService: mockIAPStorageService,
child: FilmsProvider(
storageService: mockIAPStorageService,
availableFilms: widget.films ?? mockFilms,
availableFilms: mockFilms,
child: widget.child,
),
);

View file

@ -22,8 +22,6 @@ import '../integration_test/utils/widget_tester_actions.dart';
//https://stackoverflow.com/a/67186625/13167574
const _mockFilm = Film('Ilford HP5+', 400);
/// Just a screenshot generator. No expectations here.
void main() {
final binding = IntegrationTestWidgetsFlutterBinding();
@ -64,17 +62,12 @@ void main() {
});
}
setUpAll(() async {
if (Platform.isAndroid) await binding.convertFlutterSurfaceToImage();
});
/// Generates several screenshots with the light theme
testWidgets('Generate light theme screenshots', (tester) async {
testWidgets(
'Generate light theme screenshots',
(tester) async {
mockSharedPrefs(ThemeType.light, lightThemeColor);
await tester.pumpApplication(
films: [_mockFilm],
selectedFilm: _mockFilm,
);
await tester.pumpApplication();
await tester.takePhoto();
await tester.takeScreenshot(binding, 'light-metering_reflected');
@ -107,17 +100,15 @@ void main() {
await tester.tap(find.byIcon(Icons.iso).first);
await tester.pumpAndSettle();
await tester.takeScreenshot(binding, 'light-equipment_profiles_iso_picker');
});
}
);
/// and the additionally the first one with the dark theme
testWidgets(
'Generate dark theme screenshots',
(tester) async {
mockSharedPrefs(ThemeType.dark, darkThemeColor);
await tester.pumpApplication(
films: [_mockFilm],
selectedFilm: _mockFilm,
);
await tester.pumpApplication();
await tester.takePhoto();
await tester.takeScreenshot(binding, 'dark-metering_reflected');
@ -136,6 +127,10 @@ final String _platformFolder = Platform.isAndroid ? 'android' : 'ios';
extension on WidgetTester {
Future<void> takeScreenshot(IntegrationTestWidgetsFlutterBinding binding, String name) async {
if (Platform.isAndroid) {
await binding.convertFlutterSurfaceToImage();
await pumpAndSettle();
}
await binding.takeScreenshot("$_platformFolder/${const String.fromEnvironment('deviceName')}/$name");
await pumpAndSettle();
}