adding tests to the flutter results widget - lightly designing it. Added in a testing widget for being able to test widgets without a camera - camera components needs to be updated not to crash the app later though.

Also added real building and testing to the CICD
This commit is contained in:
Lucas Oskorep
2022-07-09 17:37:33 -04:00
parent a6e3038cb8
commit 654f4f2ffd
8 changed files with 115 additions and 50 deletions
-30
View File
@@ -1,30 +0,0 @@
// This is a basic Flutter widget test.
//
// To perform an interaction with a widget in your test, use the WidgetTester
// utility in the flutter_test package. For example, you can send tap and scroll
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:tensordex_mobile/main.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
// Verify that our counter starts at 0.
expect(find.text('0'), findsOneWidget);
expect(find.text('1'), findsNothing);
// Tap the '+' icon and trigger a frame.
await tester.tap(find.byIcon(Icons.add));
await tester.pump();
// Verify that our counter has incremented.
expect(find.text('0'), findsNothing);
expect(find.text('1'), findsOneWidget);
});
}
+27
View File
@@ -0,0 +1,27 @@
import 'package:flutter/material.dart';
class WidgetTestApp extends StatelessWidget {
final List<Widget> widgets;
const WidgetTestApp(this.widgets, {Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Test App',
theme: ThemeData(
primarySwatch: Colors.lightBlue,
),
home: Scaffold(
appBar: AppBar(
title: const Text('TEST APP'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: widgets,
),
),
));
}
}
+44
View File
@@ -0,0 +1,44 @@
// This is a basic Flutter widget test.
//
// To perform an interaction with a widget in your test, use the WidgetTester
// utility in the flutter_test package. For example, you can send tap and scroll
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:tensordex_mobile/tflite/model/outputs/recognition.dart';
import 'package:tensordex_mobile/tflite/model/outputs/stats.dart';
import 'package:tensordex_mobile/widgets/results.dart';
import '../widget_test_app.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
List<Recognition> recognitions = [
Recognition(1, 'Pikachu', 0.9),
Recognition(1, 'Raichu', 0.09),
Recognition(1, 'Pichu', 0.01),
];
Stats stat = Stats(
totalTime: 150,
preProcessingTime: 75,
inferenceTime: 50,
postProcessingTime: 25,
);
Results results = Results(recognitions, stat);
// Build our app and trigger a frame.
List<Widget> widgets = [results];
await tester.pumpWidget(WidgetTestApp(widgets));
// Verify that all of hte rcognitions can be found on the recognition widget
expect(find.text('Pikachu'), findsOneWidget);
expect(find.text('Raichu'), findsOneWidget);
expect(find.text('Pichu'), findsOneWidget);
expect(find.text('0.9'), findsOneWidget);
expect(find.text('0.09'), findsOneWidget);
});
}
View File