Files
buzz/mobile/test/shared/community/community_storage_test.dart
cls 9dfa06ffee
Docker image / Build (linux/amd64) (push) Has been cancelled
Docker image / Build (linux/arm64) (push) Has been cancelled
Docker image / Merge release multi-arch manifest (push) Has been cancelled
Docker image / Merge debug multi-arch manifest (push) Has been cancelled
Docker image / Build public push gateway (linux/amd64) (push) Has been cancelled
Docker image / Build public push gateway (linux/arm64) (push) Has been cancelled
Docker image / Publish public push gateway image (push) Has been cancelled
Sprig image / Build (linux/amd64) (push) Has been cancelled
Sprig image / Build (linux/arm64) (push) Has been cancelled
Sprig image / Merge multi-arch manifest (push) Has been cancelled
Harbor Buzz Orchestra / Python tests and lint (push) Has been cancelled
CI / Detect Changed Paths (push) Has been cancelled
CI / Rust Lint (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Desktop Core (push) Has been cancelled
CI / Desktop Smoke E2E (1) (push) Has been cancelled
CI / Desktop Smoke E2E (2) (push) Has been cancelled
CI / Desktop Smoke E2E (3) (push) Has been cancelled
CI / Desktop Smoke E2E (4) (push) Has been cancelled
CI / Desktop (push) Has been cancelled
CI / Desktop E2E Relay (push) Has been cancelled
CI / Desktop E2E Integration (1/2) (push) Has been cancelled
CI / Desktop E2E Integration (2/2) (push) Has been cancelled
CI / Desktop E2E Integration (push) Has been cancelled
CI / Backend Integration (relay e2e) (push) Has been cancelled
CI / Relay E2E (push) Has been cancelled
CI / Web (push) Has been cancelled
CI / Mobile (push) Has been cancelled
CI / Security (push) Has been cancelled
CI / Dead Token Reference Guard (push) Has been cancelled
CI / Server Cross-Compile (aarch64-unknown-linux-musl) (push) Has been cancelled
CI / Server Cross-Compile (x86_64-unknown-linux-musl) (push) Has been cancelled
CI / Windows Rust (x86_64-pc-windows-msvc) (push) Has been cancelled
CI / Desktop Build (macOS) (push) Has been cancelled
helm chart / lint + unittest + render matrix (push) Has been cancelled
helm chart / install on kind (gated) (push) Has been cancelled
helm chart / publish chart to GHCR (push) Has been cancelled
Mesh Lifecycle / Relay-Driven Mesh Lifecycle Smoke (push) Has been cancelled
Sprig / Build (aarch64-unknown-linux-musl) (push) Has been cancelled
Sprig / Build (x86_64-unknown-linux-musl) (push) Has been cancelled
Sprig / Publish rolling release (push) Has been cancelled
Sprig / Publish tagged release (push) Has been cancelled
feat: import Chinese-localized Buzz source snapshot
Signed-off-by: cls_宁波本机 <908705107@qq.com>
2026-08-13 18:34:25 +08:00

238 lines
7.0 KiB
Dart

import 'dart:convert';
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:buzz/shared/community/community.dart';
import 'package:buzz/shared/community/community_storage.dart';
/// In-memory fake that extends Fake to satisfy all FlutterSecureStorage
/// interface methods, but implements the core read/write/delete with real
/// in-memory logic.
class FakeSecureStorage extends Fake implements FlutterSecureStorage {
final Map<String, String> _data = {};
@override
Future<String?> read({
required String key,
AppleOptions? iOptions,
AndroidOptions? aOptions,
LinuxOptions? lOptions,
WebOptions? webOptions,
AppleOptions? mOptions,
WindowsOptions? wOptions,
}) async => _data[key];
@override
Future<void> write({
required String key,
required String? value,
AppleOptions? iOptions,
AndroidOptions? aOptions,
LinuxOptions? lOptions,
WebOptions? webOptions,
AppleOptions? mOptions,
WindowsOptions? wOptions,
}) async {
if (value != null) {
_data[key] = value;
} else {
_data.remove(key);
}
}
@override
Future<void> delete({
required String key,
AppleOptions? iOptions,
AndroidOptions? aOptions,
LinuxOptions? lOptions,
WebOptions? webOptions,
AppleOptions? mOptions,
WindowsOptions? wOptions,
}) async => _data.remove(key);
@override
Future<Map<String, String>> readAll({
AppleOptions? iOptions,
AndroidOptions? aOptions,
LinuxOptions? lOptions,
WebOptions? webOptions,
AppleOptions? mOptions,
WindowsOptions? wOptions,
}) async => Map.from(_data);
@override
Future<void> deleteAll({
AppleOptions? iOptions,
AndroidOptions? aOptions,
LinuxOptions? lOptions,
WebOptions? webOptions,
AppleOptions? mOptions,
WindowsOptions? wOptions,
}) async => _data.clear();
@override
Future<bool> containsKey({
required String key,
AppleOptions? iOptions,
AndroidOptions? aOptions,
LinuxOptions? lOptions,
WebOptions? webOptions,
AppleOptions? mOptions,
WindowsOptions? wOptions,
}) async => _data.containsKey(key);
// Convenience for setting up test data.
String? operator [](String key) => _data[key];
void operator []=(String key, String value) => _data[key] = value;
}
void main() {
late FakeSecureStorage fakeSecure;
late CommunityStorage storage;
setUp(() {
fakeSecure = FakeSecureStorage();
storage = CommunityStorage(secure: fakeSecure);
});
group('CommunityStorage', () {
test('loadAll returns empty list when no data', () async {
final result = await storage.loadAll();
expect(result, isEmpty);
});
test('save and loadAll round-trips a community', () async {
final ws = Community.create(
name: 'Test',
relayUrl: 'https://relay.example.com',
pubkey: 'abc123',
);
await storage.save(ws);
final loaded = await storage.loadAll();
expect(loaded, hasLength(1));
expect(loaded.first.id, ws.id);
expect(loaded.first.name, 'Test');
expect(loaded.first.relayUrl, 'https://relay.example.com');
expect(loaded.first.pubkey, 'abc123');
});
test('save updates existing community with same id', () async {
final ws = Community.create(
name: 'Original',
relayUrl: 'https://relay.example.com',
);
await storage.save(ws);
await storage.save(ws.copyWith(name: 'Updated'));
final loaded = await storage.loadAll();
expect(loaded, hasLength(1));
expect(loaded.first.name, 'Updated');
});
test('remove deletes a community', () async {
final ws1 = Community.create(
name: 'One',
relayUrl: 'https://one.example.com',
);
final ws2 = Community.create(
name: 'Two',
relayUrl: 'https://two.example.com',
);
await storage.save(ws1);
await storage.save(ws2);
await storage.remove(ws1.id);
final loaded = await storage.loadAll();
expect(loaded, hasLength(1));
expect(loaded.first.id, ws2.id);
});
test('active community ID persists', () async {
await storage.saveActiveId('ws-123');
final id = await storage.loadActiveId();
expect(id, 'ws-123');
});
test('clearActiveId removes active ID', () async {
await storage.saveActiveId('ws-123');
await storage.clearActiveId();
final id = await storage.loadActiveId();
expect(id, isNull);
});
group('migration', () {
test('migrates saved workspaces to communities', () async {
final legacy = Community.create(
name: 'Legacy',
relayUrl: 'https://legacy.example.com',
);
fakeSecure['buzz_workspaces'] = jsonEncode([legacy.toJson()]);
fakeSecure['buzz_active_workspace_id'] = legacy.id;
final loaded = await storage.loadAll();
expect(loaded.single.id, legacy.id);
expect(await storage.loadActiveId(), legacy.id);
expect(fakeSecure['buzz_communities'], isNotNull);
expect(fakeSecure['buzz_workspaces'], isNull);
expect(fakeSecure['buzz_active_workspace_id'], isNull);
});
test('migrates legacy keys to community on first load', () async {
fakeSecure['buzz_relay_url'] = 'https://legacy.example.com';
fakeSecure['buzz_token'] = 'legacy_token';
fakeSecure['buzz_pubkey'] = 'legacy_pub';
fakeSecure['buzz_nsec'] = 'legacy_nsec';
final loaded = await storage.loadAll();
expect(loaded, hasLength(1));
expect(loaded.first.relayUrl, 'https://legacy.example.com');
expect(loaded.first.pubkey, 'legacy_pub');
expect(loaded.first.nsec, 'legacy_nsec');
expect(loaded.first.name, isNotEmpty);
// Legacy keys should be deleted.
expect(fakeSecure['buzz_relay_url'], isNull);
expect(fakeSecure['buzz_token'], isNull);
expect(fakeSecure['buzz_pubkey'], isNull);
expect(fakeSecure['buzz_nsec'], isNull);
// Active ID should be set.
final activeId = await storage.loadActiveId();
expect(activeId, loaded.first.id);
});
test('does not migrate when no legacy keys exist', () async {
final loaded = await storage.loadAll();
expect(loaded, isEmpty);
});
test('does not re-migrate after first load', () async {
fakeSecure['buzz_relay_url'] = 'https://legacy.example.com';
fakeSecure['buzz_token'] = 'legacy_token';
final first = await storage.loadAll();
expect(first, hasLength(1));
final second = await storage.loadAll();
expect(second, hasLength(1));
expect(second.first.id, first.first.id);
});
test('migration generates name from localhost URL', () async {
fakeSecure['buzz_relay_url'] = 'http://localhost:3000';
fakeSecure['buzz_token'] = 'tok';
final loaded = await storage.loadAll();
expect(loaded.first.name, 'Local Dev');
});
});
});
}