Puts the controls that change what the map is looking at over the map itself, where they act, and gives them something to search. Search is one field, not two. A string either parses as coordinates or it does not, and the answer is obvious from the text, so making the user declare up front which kind of thing they are looking for would be asking them to do the program's job. Coordinates accept decimal and degrees-minutes-seconds, comma or space separated, with hemisphere letters — including the Italian O for ovest, because someone reading an Italian map will type it and silently reading it as east would put them the wrong side of Greenwich. The 1180 Piedmont municipalities are bundled rather than geocoded online. The app is region-scoped, so a list of one region's towns is small enough to ship (100 KB) and beats a geocoder on every axis that matters: instant, offline, no API key, no rate limit, and it cannot return a result somewhere the app has no radar for. Matching folds accents, so "aglie" finds "Agliè", and prefix matches outrank substring ones — typing "tor" should surface Torino, not the first alphabetical name that happens to contain those letters. tool/generate_places.py derives the list from Istat boundary shapefiles (CC BY 4.0). Two properties of that file cost time and are now written down: the geometry is UTM 32N rather than degrees, and the DBF is UTF-8 despite one bilingual Friulian record that makes strict cp1252 fail. A terminal renders utf-8 and latin-1 output identically, so the encoding cannot be settled by looking at printed text — it took dumping codepoints. A guard in the generator and a test against the shipped asset both check for mojibake now, and the guard caught a real mistake the moment it was written. The target selector switches between following the device, a saved place, and the whole region, and the selection doubles as what the app reopens on: "the place I marked" and "what I see when I open the app" are one idea to the person using it. Dragging the map while it is following stops the camera chasing them but leaves that preference alone, because looking somewhere else now is not the same as changing their mind about next launch. The position marker and the following are MapLibre's own, driven by onCameraTrackingDismissed, so there is no second location stream to keep in step with the map. A test asserts that all 1180 municipalities fall inside the region bounds, which is what actually validates the UTM-to-degrees conversion end to end. Verified on the emulator: the dropdown lists follow, region and both saved places; "aglie" finds Agliè; "44.3841 7.5426" offers the coordinate jump and lands on Cuneo at town-reading zoom; selecting follow moves the map to the device position with the blue dot on it and changes the recentre button to match. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
168 lines
5.3 KiB
Dart
168 lines
5.3 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:nuvolari/core/region/region_config.dart';
|
|
import 'package:nuvolari/core/region/region_repository.dart';
|
|
import 'package:nuvolari/features/map/attribution_bar.dart';
|
|
import 'package:nuvolari/features/sources/sources_screen.dart';
|
|
import 'package:nuvolari/l10n/app_localizations.dart';
|
|
|
|
RegionConfig loadPiemonte() =>
|
|
RegionConfig.parse(File('assets/regions/piemonte.json').readAsStringSync());
|
|
|
|
Widget wrap(Widget child, RegionConfig region) => ProviderScope(
|
|
overrides: [regionConfigProvider.overrideWith((ref) async => region)],
|
|
child: MaterialApp(
|
|
locale: const Locale('it'),
|
|
localizationsDelegates: AppLocalizations.localizationsDelegates,
|
|
supportedLocales: AppLocalizations.supportedLocales,
|
|
home: child,
|
|
),
|
|
);
|
|
|
|
void main() {
|
|
late RegionConfig region;
|
|
|
|
setUpAll(() {
|
|
region = loadPiemonte();
|
|
});
|
|
|
|
group('SourcesScreen', () {
|
|
testWidgets('lists every configured source with its licence', (
|
|
tester,
|
|
) async {
|
|
await tester.pumpWidget(wrap(const SourcesScreen(), region));
|
|
await tester.pumpAndSettle();
|
|
|
|
// The list is longer than the test viewport, so each entry is scrolled to
|
|
// rather than expected to be on screen at once. Asserting only on what
|
|
// happens to fit would let a credit fall off the bottom unnoticed.
|
|
for (final attribution in region.attributions) {
|
|
await tester.scrollUntilVisible(
|
|
find.text(attribution.text),
|
|
200,
|
|
scrollable: find.byType(Scrollable).first,
|
|
);
|
|
await tester.pumpAndSettle();
|
|
expect(
|
|
find.text(attribution.text),
|
|
findsOneWidget,
|
|
reason: '${attribution.id} is missing from the Sources screen',
|
|
);
|
|
}
|
|
|
|
expect(find.textContaining('CC BY-SA'), findsWidgets);
|
|
expect(find.textContaining('ODbL'), findsWidgets);
|
|
});
|
|
|
|
// ARPA publishes no licence for the alert bulletin. Showing an invented one
|
|
// would be worse than showing none, so the screen must say so explicitly.
|
|
testWidgets('says when a source states no licence', (tester) async {
|
|
await tester.pumpWidget(wrap(const SourcesScreen(), region));
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.text('Nessuna licenza dichiarata dalla fonte'), findsWidgets);
|
|
});
|
|
|
|
testWidgets('shows the independence disclaimer', (tester) async {
|
|
await tester.pumpWidget(wrap(const SourcesScreen(), region));
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.text('App non ufficiale'), findsOneWidget);
|
|
expect(find.textContaining('indipendente'), findsOneWidget);
|
|
});
|
|
|
|
testWidgets('explains the share-alike obligation', (tester) async {
|
|
await tester.pumpWidget(wrap(const SourcesScreen(), region));
|
|
await tester.pumpAndSettle();
|
|
|
|
// Below the fold in the test viewport once the base-map credits are listed.
|
|
await tester.scrollUntilVisible(
|
|
find.text('Dati derivati'),
|
|
200,
|
|
scrollable: find.byType(Scrollable).first,
|
|
);
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.text('Dati derivati'), findsOneWidget);
|
|
expect(find.textContaining('CC BY-SA'), findsWidgets);
|
|
});
|
|
|
|
testWidgets('links the official bulletin', (tester) async {
|
|
await tester.pumpWidget(wrap(const SourcesScreen(), region));
|
|
await tester.pumpAndSettle();
|
|
|
|
// The button sits below the fold in the test viewport.
|
|
await tester.scrollUntilVisible(
|
|
find.text('Bollettino ufficiale Arpa Piemonte'),
|
|
200,
|
|
scrollable: find.byType(Scrollable).first,
|
|
);
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.text('Bollettino ufficiale Arpa Piemonte'), findsOneWidget);
|
|
});
|
|
});
|
|
|
|
group('AttributionBar', () {
|
|
testWidgets('shows only the sources currently on screen', (tester) async {
|
|
await tester.pumpWidget(
|
|
wrap(
|
|
Scaffold(
|
|
body: AttributionBar(
|
|
region: region,
|
|
activeSourceIds: const {'osm'},
|
|
),
|
|
),
|
|
region,
|
|
),
|
|
);
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.textContaining('OpenStreetMap'), findsOneWidget);
|
|
expect(find.textContaining('Radar-DPC'), findsNothing);
|
|
});
|
|
|
|
testWidgets('says when no base map is configured', (tester) async {
|
|
await tester.pumpWidget(
|
|
wrap(
|
|
Scaffold(
|
|
body: AttributionBar(
|
|
region: region,
|
|
activeSourceIds: const {},
|
|
showBaseMapNotice: true,
|
|
),
|
|
),
|
|
region,
|
|
),
|
|
);
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.textContaining('Mappa base non configurata'), findsOneWidget);
|
|
});
|
|
|
|
testWidgets('opens the Sources screen when tapped', (tester) async {
|
|
await tester.pumpWidget(
|
|
wrap(
|
|
Scaffold(
|
|
body: AttributionBar(
|
|
region: region,
|
|
activeSourceIds: const {'osm', 'dpc'},
|
|
),
|
|
),
|
|
region,
|
|
),
|
|
);
|
|
await tester.pumpAndSettle();
|
|
|
|
await tester.tap(find.byType(AttributionBar));
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.byType(SourcesScreen), findsOneWidget);
|
|
expect(find.text('App non ufficiale'), findsOneWidget);
|
|
});
|
|
});
|
|
}
|