Files
oott/frontend/test/unit/scanner_status_models_test.dart
T
rzuasti 48d73fb207 Consolidate frontend scanner, pagination, and tick-timer duplication
Collapse the five scanner status models into two shared shapes,
ActiveScannerStatus and PassiveScannerStatus, mirroring the backend's
active/passive vocabulary. Replace the five near-identical per-scanner
detail card files with a single scanner_status_cards.dart (two shared
resolvers plus a config list), and rebuild the combined home card to
iterate a list of scanners with two shape resolvers instead of five
copy-pasted resolve methods.

Extract two reusable mixins:
- PeriodicRebuild: the shared once-a-second "rebuild to refresh elapsed
  text" timer used by the scanner cards and the stale indicator.
- PaginatedListState: the shared pagination state, page-size/page-count
  getters, cancel-token-aware fetch orchestration, and disposal used by
  the device and notification lists.

No behaviour change; ~900 lines removed. Tests and analyzer pass.
2026-06-05 21:57:58 -04:00

67 lines
2.1 KiB
Dart

import 'package:flutter_test/flutter_test.dart';
import 'package:frontend/model/active_scanner_status.dart';
import 'package:frontend/model/passive_scanner_status.dart';
import '../helpers/fixtures.dart';
void main() {
group('active scanners (ARP, SNMP)', () {
test('ActiveScannerStatus.fromJson maps populated fields', () {
final status = ActiveScannerStatus.fromJson(
intervalScannerJson(
isRunning: true,
runningForSeconds: 12.5,
nextRunInSeconds: 30,
lastScanDevicesSeen: 7,
lastScanSecondsAgo: 5,
),
);
expect(status.isRunning, isTrue);
expect(status.runningForSeconds, 12.5);
expect(status.nextRunInSeconds, 30.0);
expect(status.lastScanDevicesSeen, 7);
expect(status.lastScanSecondsAgo, 5.0);
});
test('ActiveScannerStatus.fromJson tolerates null optionals', () {
final status = ActiveScannerStatus.fromJson(intervalScannerJson());
expect(status.isRunning, isFalse);
expect(status.runningForSeconds, isNull);
expect(status.nextRunInSeconds, isNull);
expect(status.lastScanDevicesSeen, isNull);
});
});
group('passive scanners (mDNS, SSDP, DHCP)', () {
test('PassiveScannerStatus.fromJson maps populated fields', () {
final status = PassiveScannerStatus.fromJson(
listenerScannerJson(
isListening: true,
listeningForSeconds: 99.0,
devicesSeen: 4,
lastDeviceSeenSecondsAgo: 8,
),
);
expect(status.isListening, isTrue);
expect(status.listeningForSeconds, 99.0);
expect(status.devicesSeen, 4);
expect(status.lastDeviceSeenSecondsAgo, 8.0);
});
test('PassiveScannerStatus.fromJson requires devicesSeen and tolerates '
'nulls', () {
final status = PassiveScannerStatus.fromJson(
listenerScannerJson(devicesSeen: 0),
);
expect(status.isListening, isFalse);
expect(status.devicesSeen, 0);
expect(status.listeningForSeconds, isNull);
expect(status.lastDeviceSeenSecondsAgo, isNull);
});
});
}