CI en verde: assets de secretos en analyze y test de bundle sin binding
All checks were successful
ci / analyze (push) Successful in 1m37s
ci / test (push) Successful in 1m15s

Los dos jobs de ci.yml fallaban desde julio, y no era por los secretos:

- `flutter analyze` exige que existan los assets declarados en pubspec, y
  private-settings*.json están en .gitignore. El workflow los crea vacíos: para
  analizar basta con que existan.
- test/file_test.dart usaba package:test y llamaba a getFileNameOfLang, que lee
  del rootBundle; sin binding moría, y con binding se quedaba colgado esperando
  al canal de assets. getFileNameOfLang acepta ahora un AssetBundle inyectable y
  el test usa uno de mentira, lo que además permite cubrir el idioma de respaldo
  y el fichero base.
- SDK de Dart a >=3.8.0, que es lo que piden los generadores actuales.

Reproducido antes y después en la misma imagen del runner
(ghcr.io/cirruslabs/flutter:3.41.9): ANALYZE_EXIT=1/TEST_EXIT=1 -> ambos en verde.
This commit is contained in:
vjrj 2026-08-01 19:11:10 +02:00
parent 7412f61502
commit 726ba7bffa
4 changed files with 68 additions and 9 deletions

View file

@ -28,6 +28,13 @@ jobs:
git remote add origin "http://x-access-token:${TOKEN}@forgejo:3000/${GITHUB_REPOSITORY}.git"
git fetch -q --depth 1 origin "${GITHUB_SHA}"
git checkout -q FETCH_HEAD
# private-settings*.json están en .gitignore (llevan DSN y claves), pero
# pubspec.yaml los declara como assets y `flutter analyze` los exige.
# Aquí basta con que existan: analyze no mira el contenido.
- name: Placeholders de private-settings
run: |
echo '{}' > assets/private-settings.json
echo '{}' > assets/private-settings-dev.json
- run: flutter pub get
- name: Generate code (json_serializable)
run: dart run build_runner build --delete-conflicting-outputs
@ -47,6 +54,10 @@ jobs:
git remote add origin "http://x-access-token:${TOKEN}@forgejo:3000/${GITHUB_REPOSITORY}.git"
git fetch -q --depth 1 origin "${GITHUB_SHA}"
git checkout -q FETCH_HEAD
- name: Placeholders de private-settings
run: |
echo '{}' > assets/private-settings.json
echo '{}' > assets/private-settings-dev.json
- run: flutter pub get
- name: Generate code + test
run: |

View file

@ -1,6 +1,6 @@
import 'dart:async';
import 'package:flutter/services.dart' show rootBundle;
import 'package:flutter/services.dart' show AssetBundle, rootBundle;
final RegExp esRegExp = RegExp('^es-');
@ -20,13 +20,15 @@ Future<String> getFileNameOfLang(
{required String dir,
required String fileName,
required String ext,
required String lang}) async {
required String lang,
// Inyectable para poder probarlo sin depender del bundle real.
AssetBundle? bundle}) async {
final String base = '$dir/$fileName';
final String fallback = getFallbackLang(lang);
String file = '$base-$lang.$ext';
if (await assetNotExists(file)) {
if (await assetNotExists(file, bundle)) {
file = '$base-$fallback.$ext';
if (await assetNotExists(file)) {
if (await assetNotExists(file, bundle)) {
file = '$base.$ext';
}
}
@ -34,8 +36,8 @@ Future<String> getFileNameOfLang(
}
// https://github.com/flutter/flutter/issues/15325
Future<bool> assetNotExists(String asset) {
return rootBundle
Future<bool> assetNotExists(String asset, [AssetBundle? bundle]) {
return (bundle ?? rootBundle)
.load(asset)
.then((_) => false)
.catchError((Object err, StackTrace stack) {

View file

@ -5,7 +5,9 @@ description: All Against Fire
version: 1.10.0+10
environment:
sdk: ">=3.5.0 <4.0.0"
# 3.8 es lo que piden los generadores de código actuales (build_runner avisa
# "does not match the required range ^3.8.0" con una cota más baja).
sdk: ">=3.8.0 <4.0.0"
dependencies:
flutter:

View file

@ -1,5 +1,25 @@
import 'dart:convert';
import 'package:fires_flutter/file_utils.dart';
import 'package:test/test.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart';
/// Bundle de mentira: solo "existen" los assets que se le pasan. Evita depender
/// del bundle real, que en un test unitario no responde.
class _FakeBundle extends CachingAssetBundle {
_FakeBundle(this.present);
final Set<String> present;
@override
Future<ByteData> load(String key) async {
if (!present.contains(key)) {
throw FlutterError('Unable to load asset: $key');
}
return ByteData.sublistView(Uint8List.fromList(utf8.encode('x')));
}
}
void main() {
test('test es-ES fallback', () {
@ -24,7 +44,31 @@ void main() {
test('test privacy English md page', () async {
final String answer = await getFileNameOfLang(
dir: 'assets/pages', fileName: 'privacy', ext: 'md', lang: 'en');
dir: 'assets/pages',
fileName: 'privacy',
ext: 'md',
lang: 'en',
bundle: _FakeBundle(<String>{'assets/pages/privacy-en.md'}));
expect(answer, 'assets/pages/privacy-en.md');
});
test('idioma sin fichero propio cae al del idioma de respaldo', () async {
final String answer = await getFileNameOfLang(
dir: 'assets/pages',
fileName: 'privacy',
ext: 'md',
lang: 'gl',
bundle: _FakeBundle(<String>{'assets/pages/privacy-es.md'}));
expect(answer, 'assets/pages/privacy-es.md');
});
test('sin traducciones cae al fichero base', () async {
final String answer = await getFileNameOfLang(
dir: 'assets/pages',
fileName: 'privacy',
ext: 'md',
lang: 'fr',
bundle: _FakeBundle(<String>{}));
expect(answer, 'assets/pages/privacy.md');
});
}