[AZ-284] Autodev baseline + testability refactor

Phase A baseline outputs from /autodev (Steps 1-5):
- Problem & solution docs (_docs/00_problem, _docs/01_solution)
- Codebase documentation (_docs/02_document) incl. architecture,
  module-layout, glossary, system-flows, baseline compliance scan
- Test specs (blackbox, performance, resilience, security, resource,
  traceability matrix)
- Test task decomposition (_docs/02_tasks/todo): AZ-285..AZ-290
- Testability refactor (_docs/04_refactoring/01-testability-refactoring):
  - TC-01 Move DownloadedTileInfoV2 + new ExistingTileInfo to Common.DTO
  - TC-02 Replace dead ISatelliteDownloader API with real signatures
  - TC-03 GoogleMapsDownloaderV2 implements ISatelliteDownloader
  - TC-04 TileService depends on ISatelliteDownloader (mockable)
  - TC-05 DI + endpoints use ISatelliteDownloader
- Test runner scripts (scripts/run-tests.sh, run-performance-tests.sh)
- Autodev state pointer (_docs/_autodev_state.md)

Prepares the codebase for AZ-285..AZ-290 unit/integration test work.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-05-10 04:44:08 +03:00
parent 25a644a9bf
commit b0fffa6d42
68 changed files with 4192 additions and 11 deletions
@@ -0,0 +1,6 @@
namespace SatelliteProvider.Common.DTO;
public record DownloadedTileInfoV2(
int X, int Y, int ZoomLevel,
double CenterLatitude, double CenterLongitude,
string FilePath, double TileSizeMeters);
@@ -0,0 +1,3 @@
namespace SatelliteProvider.Common.DTO;
public record ExistingTileInfo(double Latitude, double Longitude, int TileZoom);
@@ -4,5 +4,12 @@ namespace SatelliteProvider.Common.Interfaces;
public interface ISatelliteDownloader
{
Task GetTiles(GeoPoint geoPoint, double radiusM, int zoomLevel, CancellationToken token = default);
Task<DownloadedTileInfoV2> DownloadSingleTileAsync(
double latitude, double longitude, int zoomLevel,
CancellationToken token = default);
Task<List<DownloadedTileInfoV2>> GetTilesWithMetadataAsync(
GeoPoint centerGeoPoint, double radiusM, int zoomLevel,
IEnumerable<ExistingTileInfo> existingTiles,
CancellationToken token = default);
}