mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 15:00:40 +00:00
134af8ad28
* implemented `MockCameraContainerBloc` to stub camera on simulator * [iOS] fixed camera preview aspect ratio * place screenshots in platform-specific folders * [iOS] updated buildable name * [iOS] fixed stub image cover fit * [iOS] implemented screenshots generator for all target devices * store screenshots in _generated_ folder * Update .gitignore * Created "Build Prod .ipa" workflow * added. certs to .ipa workflow * test ipa building * fixed provision cert path * set provision profile in XCode * set automatic signing for dev builds * set ios version in Podfile * renamed provision file * renamed provision profile * fixed cert folder... * changed provision path * typo * typo * try automatic signing * use manual profile installation * added export options * typo * increased timeout * increased ipa timeout * Update README.md * typo * [iOS] separated camera handling logic * [iOS] fixed vibration * migrated to http server iap * [iOS] fixed histogram * replaced distribution profile with development profile * removed constants from env to the separate file * removed duplicate launch schema * fixed PR check workflow * [iOS] set `ITSAppUsesNonExemptEncryption` to NO * [iOS] removed java reference from "Build .ipa" workflow
137 lines
5.5 KiB
Dart
137 lines
5.5 KiB
Dart
import 'dart:convert';
|
|
import 'dart:io';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
import 'package:lightmeter/data/models/ev_source_type.dart';
|
|
import 'package:lightmeter/data/models/metering_screen_layout_config.dart';
|
|
import 'package:lightmeter/data/models/theme_type.dart';
|
|
import 'package:lightmeter/data/models/volume_action.dart';
|
|
import 'package:lightmeter/data/shared_prefs_service.dart';
|
|
import 'package:lightmeter/generated/l10n.dart';
|
|
import 'package:lightmeter/res/theme.dart';
|
|
import 'package:lightmeter/screens/metering/components/shared/readings_container/components/iso_picker/widget_picker_iso.dart';
|
|
import 'package:lightmeter/screens/settings/components/metering/components/equipment_profiles/components/equipment_profile_screen/screen_equipment_profile.dart';
|
|
import 'package:lightmeter/screens/settings/screen_settings.dart';
|
|
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
import '../integration_test/mocks/paid_features_mock.dart';
|
|
import '../integration_test/utils/widget_tester_actions.dart';
|
|
|
|
//https://stackoverflow.com/a/67186625/13167574
|
|
|
|
/// Just a screenshot generator. No expectations here.
|
|
void main() {
|
|
final binding = IntegrationTestWidgetsFlutterBinding();
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
final Color lightThemeColor = primaryColorsList[5];
|
|
final Color darkThemeColor = primaryColorsList[3];
|
|
|
|
void mockSharedPrefs(ThemeType theme, Color color) {
|
|
// ignore: invalid_use_of_visible_for_testing_member
|
|
SharedPreferences.setMockInitialValues({
|
|
/// Metering values
|
|
UserPreferencesService.evSourceTypeKey: EvSourceType.camera.index,
|
|
UserPreferencesService.isoKey: 400,
|
|
UserPreferencesService.ndFilterKey: 0,
|
|
|
|
/// Metering settings
|
|
UserPreferencesService.stopTypeKey: StopType.third.index,
|
|
UserPreferencesService.cameraEvCalibrationKey: 0.0,
|
|
UserPreferencesService.lightSensorEvCalibrationKey: 0.0,
|
|
UserPreferencesService.meteringScreenLayoutKey: json.encode(
|
|
{
|
|
MeteringScreenLayoutFeature.equipmentProfiles: true,
|
|
MeteringScreenLayoutFeature.extremeExposurePairs: true,
|
|
MeteringScreenLayoutFeature.filmPicker: true,
|
|
}.toJson(),
|
|
),
|
|
|
|
/// General settings
|
|
UserPreferencesService.caffeineKey: true,
|
|
UserPreferencesService.hapticsKey: true,
|
|
UserPreferencesService.volumeActionKey: VolumeAction.shutter.toString(),
|
|
UserPreferencesService.localeKey: 'en',
|
|
|
|
/// Theme settings
|
|
UserPreferencesService.themeTypeKey: theme.index,
|
|
UserPreferencesService.primaryColorKey: color.value,
|
|
UserPreferencesService.dynamicColorKey: false,
|
|
});
|
|
}
|
|
|
|
/// Generates several screenshots with the light theme
|
|
testWidgets(
|
|
'Generate light theme screenshots',
|
|
(tester) async {
|
|
mockSharedPrefs(ThemeType.light, lightThemeColor);
|
|
await tester.pumpApplication();
|
|
|
|
await tester.takePhoto();
|
|
await tester.takeScreenshot(binding, 'light-metering_reflected');
|
|
|
|
if (Platform.isAndroid) {
|
|
await tester.tap(find.byTooltip(S.current.tooltipUseLightSensor));
|
|
await tester.pumpAndSettle();
|
|
await tester.toggleIncidentMetering(7.3);
|
|
await tester.takeScreenshot(binding, 'light-metering_incident');
|
|
}
|
|
|
|
await tester.openAnimatedPicker<IsoValuePicker>();
|
|
await tester.takeScreenshot(binding, 'light-metering_iso_picker');
|
|
|
|
await tester.tapCancelButton();
|
|
await tester.tap(find.byTooltip(S.current.tooltipOpenSettings));
|
|
await tester.pumpAndSettle();
|
|
await tester.takeScreenshot(binding, 'light-settings');
|
|
|
|
await tester.tapDescendantTextOf<SettingsScreen>(S.current.meteringScreenLayout);
|
|
await tester.takeScreenshot(binding, 'light-settings_metering_screen_layout');
|
|
|
|
await tester.tapCancelButton();
|
|
await tester.tapDescendantTextOf<SettingsScreen>(S.current.equipmentProfiles);
|
|
await tester.pumpAndSettle();
|
|
await tester.tapDescendantTextOf<EquipmentProfilesScreen>(mockEquipmentProfiles.first.name);
|
|
await tester.pumpAndSettle();
|
|
await tester.takeScreenshot(binding, 'light-equipment_profiles');
|
|
|
|
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();
|
|
|
|
await tester.takePhoto();
|
|
await tester.takeScreenshot(binding, 'dark-metering_reflected');
|
|
|
|
if (Platform.isAndroid) {
|
|
await tester.tap(find.byTooltip(S.current.tooltipUseLightSensor));
|
|
await tester.pumpAndSettle();
|
|
await tester.toggleIncidentMetering(7.3);
|
|
await tester.takeScreenshot(binding, 'dark-metering_incident');
|
|
}
|
|
},
|
|
);
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|