mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
f3b08868be
- Fixed test coverage calculation - Removed `mockito` from the application mock - Implemented platform channel mocks to mimic incident light metering - Covered providers with unit tests - Covered metering screen pickers with widget tests - Laid foundation for integration tests
83 lines
2.8 KiB
Dart
83 lines
2.8 KiB
Dart
import 'package:flutter/services.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:lightmeter/data/volume_events_service.dart';
|
|
import 'package:mocktail/mocktail.dart';
|
|
import 'package:platform/platform.dart';
|
|
|
|
import '../event_channel_mock.dart';
|
|
|
|
class _MockLocalPlatform extends Mock implements LocalPlatform {}
|
|
|
|
void main() {
|
|
TestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
late _MockLocalPlatform localPlatform;
|
|
late VolumeEventsService service;
|
|
|
|
Future<Object?>? methodCallSuccessHandler(MethodCall methodCall) async {
|
|
switch (methodCall.method) {
|
|
case "setVolumeHandling":
|
|
return methodCall.arguments as bool;
|
|
default:
|
|
throw UnimplementedError();
|
|
}
|
|
}
|
|
|
|
setUp(() {
|
|
localPlatform = _MockLocalPlatform();
|
|
service = VolumeEventsService(localPlatform);
|
|
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
|
VolumeEventsService.volumeHandlingChannel,
|
|
methodCallSuccessHandler,
|
|
);
|
|
});
|
|
|
|
tearDown(() {
|
|
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
|
VolumeEventsService.volumeHandlingChannel,
|
|
null,
|
|
);
|
|
});
|
|
|
|
group('setVolumeHandling', () {
|
|
test('true - Android', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(true);
|
|
expectLater(service.setVolumeHandling(true), completion(true));
|
|
});
|
|
|
|
test('true - iOS', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(false);
|
|
expectLater(service.setVolumeHandling(true), completion(false));
|
|
});
|
|
|
|
test('false - Android', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(true);
|
|
expectLater(service.setVolumeHandling(false), completion(false));
|
|
});
|
|
|
|
test('false - iOS', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(false);
|
|
expectLater(service.setVolumeHandling(false), completion(false));
|
|
});
|
|
});
|
|
|
|
group('volumeButtonsEventStream', () {
|
|
test('Android', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(true);
|
|
final stream = service.volumeButtonsEventStream();
|
|
final List<int> result = [];
|
|
final subscription = stream.listen(result.add);
|
|
await sendMockVolumeAction(VolumeEventsService.volumeEventsChannel.name, 24);
|
|
await sendMockVolumeAction(VolumeEventsService.volumeEventsChannel.name, 25);
|
|
await sendMockVolumeAction(VolumeEventsService.volumeEventsChannel.name, 20);
|
|
await sendMockVolumeAction(VolumeEventsService.volumeEventsChannel.name, 24);
|
|
expect(result, [24, 25, 24]);
|
|
subscription.cancel();
|
|
});
|
|
|
|
test('iOS', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(false);
|
|
expect(service.volumeButtonsEventStream(), const Stream<int>.empty());
|
|
});
|
|
});
|
|
}
|