feat(block2): publish my seeds to the network (completes publish->discover)

The other half of the market: share your marked lots as offers.
- VarietyRepository.shareableLots(): non-private lots WITH their id (stable,
  updatable offer id) + the variety label. Private lots never leave the device.
- OffersCubit.publishLots(): maps each via OfferMapper and publishes, tagged
  with the coarse area + signed by the derived key; counts acceptances; no-op
  offline or with no area.
- Market screen: a 'share my seeds' action (online only) — publishes, then
  re-discovers to show them; 'mark some seeds first' when nothing's shared.
- i18n en/es/pt.

14 tests green (repo query, cubit publish, market UI); analyzer clean for new code.
This commit is contained in:
vjrj 2026-07-10 10:18:30 +02:00
parent cb5f55e146
commit f8f73c4153
12 changed files with 284 additions and 5 deletions

View file

@ -0,0 +1,43 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:tane/db/database.dart';
import 'package:tane/db/enums.dart';
import '../support/test_support.dart';
void main() {
late AppDatabase db;
setUp(() => db = newTestDatabase());
tearDown(() => db.close());
test('shareableLots returns non-private lots with their id and label',
() async {
final repo = newTestRepository(db);
final varietyId = await repo.addQuickVariety(
label: 'Tomate rosa',
category: 'Solanaceae',
);
final sharedId = await repo.addLot(
varietyId: varietyId,
offerStatus: OfferStatus.exchange,
);
final lots = await repo.shareableLots();
final shared = lots.where((l) => l.lotId == sharedId).toList();
expect(shared, hasLength(1));
expect(shared.single.summary, 'Tomate rosa');
expect(shared.single.offerStatus, OfferStatus.exchange);
expect(shared.single.category, 'Solanaceae');
});
test('private lots are never shareable', () async {
final repo = newTestRepository(db);
final varietyId = await repo.addQuickVariety(label: 'Pimiento');
final privateId = await repo.addLot(
varietyId: varietyId,
offerStatus: OfferStatus.private,
);
final lots = await repo.shareableLots();
expect(lots.where((l) => l.lotId == privateId), isEmpty);
});
}

View file

@ -2,6 +2,7 @@ import 'dart:async';
import 'package:commons_core/commons_core.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:tane/data/variety_repository.dart';
import 'package:tane/db/enums.dart';
import 'package:tane/services/offer_mapper.dart';
import 'package:tane/state/offers_cubit.dart';
@ -129,6 +130,72 @@ void main() {
await cubit.close();
});
test('publishLots publishes each shared lot and counts acceptances',
() async {
final transport = FakeOfferTransport();
final cubit = OffersCubit(transport);
final count = await cubit.publishLots(
const [
ShareableLot(
lotId: 'lot-1',
summary: 'Tomate',
offerStatus: OfferStatus.shared,
category: 'Solanaceae',
),
ShareableLot(
lotId: 'lot-2',
summary: 'Judía',
offerStatus: OfferStatus.exchange,
),
],
authorPubkeyHex: 'ab' * 32,
areaGeohash: 'sp3e9',
);
expect(count, 2);
expect(cubit.state.publishing, isFalse);
await cubit.discover('sp3');
await pumpEventQueue();
expect(cubit.state.offers, hasLength(2));
await cubit.close();
});
test('publishLots is a no-op offline or with no area', () async {
final offline = OffersCubit(null);
expect(
await offline.publishLots(
const [
ShareableLot(
lotId: 'x',
summary: 'x',
offerStatus: OfferStatus.shared,
),
],
authorPubkeyHex: 'ab' * 32,
areaGeohash: 'sp3e9',
),
0,
);
await offline.close();
final noArea = OffersCubit(FakeOfferTransport());
expect(
await noArea.publishLots(
const [
ShareableLot(
lotId: 'x',
summary: 'x',
offerStatus: OfferStatus.shared,
),
],
authorPubkeyHex: 'ab' * 32,
areaGeohash: '',
),
0,
);
await noArea.close();
});
test('offline (no transport): degrades gracefully, never throws', () async {
final cubit = OffersCubit(null);
expect(cubit.isOnline, isFalse);