mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 23:10:40 +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
84 lines
2.6 KiB
Dart
84 lines
2.6 KiB
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:light_sensor/light_sensor.dart';
|
|
import 'package:lightmeter/data/light_sensor_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 LightSensorService service;
|
|
|
|
setUp(() {
|
|
localPlatform = _MockLocalPlatform();
|
|
service = LightSensorService(localPlatform);
|
|
});
|
|
|
|
group(
|
|
'hasSensor()',
|
|
() {
|
|
void setMockSensorAvailability({required bool hasSensor}) {
|
|
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
|
LightSensor.methodChannel,
|
|
(methodCall) async {
|
|
switch (methodCall.method) {
|
|
case "sensor":
|
|
return hasSensor;
|
|
default:
|
|
return null;
|
|
}
|
|
},
|
|
);
|
|
}
|
|
|
|
tearDown(() {
|
|
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
|
LightSensor.methodChannel,
|
|
null,
|
|
);
|
|
});
|
|
|
|
test('true - Android', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(true);
|
|
setMockSensorAvailability(hasSensor: true);
|
|
expectLater(service.hasSensor(), completion(true));
|
|
});
|
|
|
|
test('false - Android', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(true);
|
|
setMockSensorAvailability(hasSensor: false);
|
|
expectLater(service.hasSensor(), completion(false));
|
|
});
|
|
|
|
test('false - iOS', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(false);
|
|
expectLater(service.hasSensor(), completion(false));
|
|
});
|
|
},
|
|
);
|
|
|
|
group('luxStream', () {
|
|
test('Android', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(true);
|
|
final stream = service.luxStream();
|
|
final List<int> result = [];
|
|
final subscription = stream.listen(result.add);
|
|
await sendMockVolumeAction(LightSensor.eventChannel.name, 100);
|
|
await sendMockVolumeAction(LightSensor.eventChannel.name, 150);
|
|
await sendMockVolumeAction(LightSensor.eventChannel.name, 150);
|
|
await sendMockVolumeAction(LightSensor.eventChannel.name, 200);
|
|
expect(result, [100, 150, 150, 200]);
|
|
subscription.cancel();
|
|
});
|
|
|
|
test('iOS', () async {
|
|
when(() => localPlatform.isAndroid).thenReturn(false);
|
|
expect(service.luxStream(), const Stream<int>.empty());
|
|
});
|
|
});
|
|
}
|