2022-10-14 23:38:46 +00:00
|
|
|
import 'dart:core';
|
|
|
|
import 'dart:io';
|
|
|
|
import 'dart:math';
|
|
|
|
|
|
|
|
import 'package:cw_core/node.dart';
|
|
|
|
import 'package:cw_core/unspent_coins_info.dart';
|
|
|
|
import 'package:cw_core/wallet_base.dart';
|
|
|
|
import 'package:cw_core/wallet_credentials.dart';
|
|
|
|
import 'package:cw_core/wallet_info.dart';
|
|
|
|
import 'package:cw_core/wallet_service.dart';
|
|
|
|
import 'package:cw_core/wallet_type.dart';
|
|
|
|
import 'package:cw_wownero/wownero_wallet.dart';
|
|
|
|
import 'package:flutter_libmonero/core/key_service.dart';
|
|
|
|
import 'package:flutter_libmonero/core/wallet_creation_service.dart';
|
|
|
|
import 'package:flutter_libmonero/wownero/wownero.dart';
|
2022-11-10 22:21:58 +00:00
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
2022-10-14 23:38:46 +00:00
|
|
|
import 'package:hive/hive.dart';
|
2022-11-10 22:21:58 +00:00
|
|
|
import 'package:hive_test/hive_test.dart';
|
2022-10-14 23:38:46 +00:00
|
|
|
import 'package:path_provider/path_provider.dart';
|
2022-11-10 22:21:58 +00:00
|
|
|
import 'package:stackwallet/utilities/flutter_secure_storage_interface.dart';
|
2022-10-14 23:38:46 +00:00
|
|
|
|
|
|
|
import 'wownero_wallet_test_data.dart';
|
|
|
|
|
|
|
|
FakeSecureStorage? storage;
|
|
|
|
WalletService? walletService;
|
|
|
|
KeyService? keysStorage;
|
|
|
|
WowneroWalletBase? walletBase;
|
|
|
|
late WalletCreationService _walletCreationService;
|
|
|
|
dynamic _walletInfoSource;
|
|
|
|
|
|
|
|
String path = '';
|
|
|
|
|
2022-11-08 15:55:15 +00:00
|
|
|
String name = '';
|
2022-10-14 23:38:46 +00:00
|
|
|
int nettype = 0;
|
|
|
|
WalletType type = WalletType.wownero;
|
|
|
|
|
|
|
|
void main() async {
|
|
|
|
storage = FakeSecureStorage();
|
|
|
|
keysStorage = KeyService(storage!);
|
|
|
|
WalletInfo walletInfo = WalletInfo.external(
|
|
|
|
id: '',
|
|
|
|
name: '',
|
|
|
|
type: type,
|
|
|
|
isRecovery: false,
|
|
|
|
restoreHeight: 0,
|
|
|
|
date: DateTime.now(),
|
|
|
|
path: '',
|
|
|
|
address: '',
|
|
|
|
dirPath: '');
|
|
|
|
late WalletCredentials credentials;
|
|
|
|
|
|
|
|
wownero.onStartup();
|
2022-11-10 22:21:58 +00:00
|
|
|
|
|
|
|
bool hiveAdaptersRegistered = false;
|
2022-10-14 23:38:46 +00:00
|
|
|
|
2022-11-08 15:55:15 +00:00
|
|
|
group("Wownero 14 word seed generation", () {
|
2022-10-14 23:38:46 +00:00
|
|
|
setUp(() async {
|
2022-11-10 22:21:58 +00:00
|
|
|
await setUpTestHive();
|
|
|
|
if (!hiveAdaptersRegistered) {
|
|
|
|
hiveAdaptersRegistered = true;
|
|
|
|
|
|
|
|
Hive.registerAdapter(NodeAdapter());
|
|
|
|
Hive.registerAdapter(WalletInfoAdapter());
|
|
|
|
Hive.registerAdapter(WalletTypeAdapter());
|
|
|
|
Hive.registerAdapter(UnspentCoinsInfoAdapter());
|
|
|
|
|
2023-01-19 19:24:16 +00:00
|
|
|
final wallets = await Hive.openBox<dynamic>('wallets');
|
2022-11-10 22:21:58 +00:00
|
|
|
await wallets.put('currentWalletName', name);
|
|
|
|
|
|
|
|
_walletInfoSource = await Hive.openBox<WalletInfo>(WalletInfo.boxName);
|
2022-11-10 23:03:01 +00:00
|
|
|
walletService = wownero
|
|
|
|
.createWowneroWalletService(_walletInfoSource as Box<WalletInfo>);
|
2022-11-10 22:21:58 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 19:45:25 +00:00
|
|
|
bool hasThrown = false;
|
2022-10-14 23:38:46 +00:00
|
|
|
try {
|
2022-11-08 15:55:15 +00:00
|
|
|
name = 'namee${Random().nextInt(10000000)}';
|
|
|
|
final dirPath = await pathForWalletDir(name: name, type: type);
|
|
|
|
path = await pathForWallet(name: name, type: type);
|
|
|
|
credentials = wownero.createWowneroNewWalletCredentials(
|
|
|
|
name: name,
|
|
|
|
language: "English",
|
|
|
|
seedWordsLength: 14); // TODO catch failure
|
|
|
|
|
|
|
|
walletInfo = WalletInfo.external(
|
|
|
|
id: WalletBase.idFor(name, type),
|
|
|
|
name: name,
|
|
|
|
type: type,
|
|
|
|
isRecovery: false,
|
|
|
|
restoreHeight: credentials.height ?? 0,
|
|
|
|
date: DateTime.now(),
|
|
|
|
path: path,
|
|
|
|
address: "",
|
|
|
|
dirPath: dirPath);
|
|
|
|
credentials.walletInfo = walletInfo;
|
|
|
|
|
|
|
|
_walletCreationService = WalletCreationService(
|
|
|
|
secureStorage: storage,
|
|
|
|
walletService: walletService,
|
|
|
|
keyService: keysStorage,
|
|
|
|
);
|
|
|
|
_walletCreationService.changeWalletType();
|
|
|
|
} catch (e, s) {
|
|
|
|
print(e);
|
|
|
|
print(s);
|
|
|
|
hasThrown = true;
|
|
|
|
}
|
|
|
|
expect(hasThrown, false);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("Wownero 14 word seed address generation", () async {
|
|
|
|
final wallet = await _walletCreationService.create(credentials);
|
|
|
|
// TODO validate mnemonic
|
|
|
|
walletInfo.address = wallet.walletAddresses.address;
|
|
|
|
|
|
|
|
bool hasThrown = false;
|
|
|
|
try {
|
|
|
|
await _walletInfoSource.add(walletInfo);
|
|
|
|
walletBase?.close();
|
|
|
|
walletBase = wallet as WowneroWalletBase;
|
|
|
|
|
2022-11-10 23:03:01 +00:00
|
|
|
expect(
|
2022-11-12 15:16:07 +00:00
|
|
|
await walletBase!
|
|
|
|
.validateAddress(wallet.walletAddresses.address ?? ''),
|
|
|
|
true);
|
2022-11-08 15:55:15 +00:00
|
|
|
} catch (_) {
|
|
|
|
hasThrown = true;
|
|
|
|
}
|
|
|
|
expect(hasThrown, false);
|
|
|
|
|
2022-11-10 23:03:01 +00:00
|
|
|
// Address validation
|
2023-01-19 21:13:03 +00:00
|
|
|
expect(walletBase!.validateAddress(''), false);
|
2022-11-10 23:03:01 +00:00
|
|
|
expect(
|
2023-01-19 21:13:03 +00:00
|
|
|
walletBase!.validateAddress(
|
2022-11-12 15:16:07 +00:00
|
|
|
'Wo3jmHvTMLwE6h29fpgcb8PbJSpaKuqM7XTXVfiiu8bLCZsJvrQCbQSJR48Vo3BWNQKsMsXZ4VixndXTH25QtorC27NCjmsEi'),
|
|
|
|
true);
|
2022-11-10 23:03:01 +00:00
|
|
|
expect(
|
2023-01-19 21:13:03 +00:00
|
|
|
walletBase!.validateAddress(
|
2022-11-12 15:16:07 +00:00
|
|
|
'WasdfHvTMLwE6h29fpgcb8PbJSpaKuqM7XTXVfiiu8bLCZsJvrQCbQSJR48Vo3BWNQKsMsXZ4VixndXTH25QtorC27NCjmjkl'),
|
|
|
|
false);
|
2022-11-10 23:03:01 +00:00
|
|
|
|
2022-11-08 15:55:15 +00:00
|
|
|
walletBase?.close();
|
|
|
|
walletBase = wallet as WowneroWalletBase;
|
|
|
|
});
|
|
|
|
|
|
|
|
// TODO delete left over wallet file with name: name
|
|
|
|
});
|
|
|
|
|
|
|
|
group("Wownero 14 word seed restoration", () {
|
|
|
|
setUp(() async {
|
|
|
|
bool hasThrown = false;
|
|
|
|
try {
|
|
|
|
name = 'namee${Random().nextInt(10000000)}';
|
2022-10-14 23:38:46 +00:00
|
|
|
final dirPath = await pathForWalletDir(name: name, type: type);
|
|
|
|
path = await pathForWallet(name: name, type: type);
|
|
|
|
credentials = wownero.createWowneroRestoreWalletFromSeedCredentials(
|
2022-11-07 22:45:26 +00:00
|
|
|
name: name,
|
|
|
|
height: 465760,
|
|
|
|
mnemonic: testMnemonic14); // TODO catch failure
|
2022-10-14 23:38:46 +00:00
|
|
|
|
|
|
|
walletInfo = WalletInfo.external(
|
|
|
|
id: WalletBase.idFor(name, type),
|
|
|
|
name: name,
|
|
|
|
type: type,
|
|
|
|
isRecovery: false,
|
|
|
|
restoreHeight: credentials.height ?? 0,
|
|
|
|
date: DateTime.now(),
|
|
|
|
path: path,
|
|
|
|
address: "",
|
|
|
|
dirPath: dirPath);
|
|
|
|
credentials.walletInfo = walletInfo;
|
|
|
|
|
|
|
|
_walletCreationService = WalletCreationService(
|
|
|
|
secureStorage: storage,
|
|
|
|
walletService: walletService,
|
|
|
|
keyService: keysStorage,
|
|
|
|
);
|
|
|
|
_walletCreationService.changeWalletType();
|
|
|
|
} catch (e, s) {
|
|
|
|
print(e);
|
|
|
|
print(s);
|
2022-11-07 19:45:25 +00:00
|
|
|
hasThrown = true;
|
2022-10-14 23:38:46 +00:00
|
|
|
}
|
2022-11-07 19:45:25 +00:00
|
|
|
expect(hasThrown, false);
|
2022-10-14 23:38:46 +00:00
|
|
|
});
|
|
|
|
|
2022-11-08 15:55:15 +00:00
|
|
|
test("Wownero 14 word seed address generation", () async {
|
2022-10-14 23:38:46 +00:00
|
|
|
final wallet = await _walletCreationService.restoreFromSeed(credentials);
|
|
|
|
walletInfo.address = wallet.walletAddresses.address;
|
|
|
|
|
2022-11-07 17:21:10 +00:00
|
|
|
bool hasThrown = false;
|
|
|
|
try {
|
|
|
|
await _walletInfoSource.add(walletInfo);
|
|
|
|
walletBase?.close();
|
2022-11-07 22:45:26 +00:00
|
|
|
walletBase = wallet as WowneroWalletBase;
|
2022-11-07 17:21:10 +00:00
|
|
|
|
|
|
|
expect(walletInfo.address, mainnetTestData14[0][0]);
|
2023-01-19 21:13:03 +00:00
|
|
|
expect(
|
|
|
|
walletBase!.getTransactionAddress(0, 0), mainnetTestData14[0][0]);
|
|
|
|
expect(
|
|
|
|
walletBase!.getTransactionAddress(0, 1), mainnetTestData14[0][1]);
|
|
|
|
expect(
|
|
|
|
walletBase!.getTransactionAddress(0, 2), mainnetTestData14[0][2]);
|
|
|
|
expect(
|
|
|
|
walletBase!.getTransactionAddress(1, 0), mainnetTestData14[1][0]);
|
|
|
|
expect(
|
|
|
|
walletBase!.getTransactionAddress(1, 1), mainnetTestData14[1][1]);
|
|
|
|
expect(
|
|
|
|
walletBase!.getTransactionAddress(1, 2), mainnetTestData14[1][2]);
|
2022-11-07 17:21:10 +00:00
|
|
|
} catch (_) {
|
|
|
|
hasThrown = true;
|
|
|
|
}
|
|
|
|
expect(hasThrown, false);
|
|
|
|
|
2022-10-14 23:38:46 +00:00
|
|
|
walletBase?.close();
|
|
|
|
walletBase = wallet as WowneroWalletBase;
|
|
|
|
});
|
2022-11-07 22:45:26 +00:00
|
|
|
|
2022-11-07 19:45:25 +00:00
|
|
|
// TODO delete left over wallet file with name: name
|
|
|
|
});
|
|
|
|
|
2022-11-08 15:55:15 +00:00
|
|
|
group("Wownero 25 word seed generation", () {
|
2022-11-07 19:45:25 +00:00
|
|
|
setUp(() async {
|
|
|
|
bool hasThrown = false;
|
|
|
|
try {
|
2022-11-07 22:45:26 +00:00
|
|
|
name = 'namee${Random().nextInt(10000000)}';
|
2022-11-07 19:45:25 +00:00
|
|
|
final dirPath = await pathForWalletDir(name: name, type: type);
|
|
|
|
path = await pathForWallet(name: name, type: type);
|
2022-11-08 15:55:15 +00:00
|
|
|
credentials = wownero.createWowneroNewWalletCredentials(
|
2022-11-07 22:45:26 +00:00
|
|
|
name: name,
|
2022-11-08 15:55:15 +00:00
|
|
|
language: "English",
|
|
|
|
seedWordsLength: 25); // TODO catch failure
|
2022-11-07 19:45:25 +00:00
|
|
|
|
|
|
|
walletInfo = WalletInfo.external(
|
|
|
|
id: WalletBase.idFor(name, type),
|
|
|
|
name: name,
|
|
|
|
type: type,
|
|
|
|
isRecovery: false,
|
|
|
|
restoreHeight: credentials.height ?? 0,
|
|
|
|
date: DateTime.now(),
|
|
|
|
path: path,
|
|
|
|
address: "",
|
|
|
|
dirPath: dirPath);
|
|
|
|
credentials.walletInfo = walletInfo;
|
|
|
|
|
|
|
|
_walletCreationService = WalletCreationService(
|
|
|
|
secureStorage: storage,
|
|
|
|
walletService: walletService,
|
|
|
|
keyService: keysStorage,
|
|
|
|
);
|
|
|
|
_walletCreationService.changeWalletType();
|
|
|
|
} catch (e, s) {
|
|
|
|
print(e);
|
|
|
|
print(s);
|
|
|
|
hasThrown = true;
|
|
|
|
}
|
|
|
|
expect(hasThrown, false);
|
|
|
|
});
|
|
|
|
|
2022-11-08 15:55:15 +00:00
|
|
|
test("Wownero 25 word seed address generation", () async {
|
|
|
|
final wallet = await _walletCreationService.create(credentials);
|
|
|
|
// TODO validate mnemonic
|
|
|
|
walletInfo.address = wallet.walletAddresses.address;
|
|
|
|
|
2022-11-07 19:45:25 +00:00
|
|
|
bool hasThrown = false;
|
|
|
|
try {
|
2022-11-08 15:55:15 +00:00
|
|
|
await _walletInfoSource.add(walletInfo);
|
|
|
|
walletBase?.close();
|
|
|
|
walletBase = wallet as WowneroWalletBase;
|
|
|
|
|
|
|
|
// TODO validate
|
|
|
|
//expect(walletInfo.address, mainnetTestData14[0][0]);
|
|
|
|
} catch (_) {
|
|
|
|
hasThrown = true;
|
|
|
|
}
|
|
|
|
expect(hasThrown, false);
|
|
|
|
|
|
|
|
walletBase?.close();
|
|
|
|
walletBase = wallet as WowneroWalletBase;
|
|
|
|
});
|
|
|
|
|
|
|
|
// TODO delete left over wallet file with name: name
|
|
|
|
});
|
|
|
|
|
|
|
|
group("Wownero 25 word seed restoration", () {
|
|
|
|
setUp(() async {
|
|
|
|
bool hasThrown = false;
|
|
|
|
try {
|
|
|
|
name = 'namee${Random().nextInt(10000000)}';
|
2022-11-07 19:45:25 +00:00
|
|
|
final dirPath = await pathForWalletDir(name: name, type: type);
|
|
|
|
path = await pathForWallet(name: name, type: type);
|
2022-11-08 15:55:15 +00:00
|
|
|
credentials = wownero.createWowneroRestoreWalletFromSeedCredentials(
|
|
|
|
name: name,
|
|
|
|
height: 465760,
|
|
|
|
mnemonic: testMnemonic25); // TODO catch failure
|
2022-11-07 19:45:25 +00:00
|
|
|
|
|
|
|
walletInfo = WalletInfo.external(
|
|
|
|
id: WalletBase.idFor(name, type),
|
|
|
|
name: name,
|
|
|
|
type: type,
|
|
|
|
isRecovery: false,
|
|
|
|
restoreHeight: credentials.height ?? 0,
|
|
|
|
date: DateTime.now(),
|
|
|
|
path: path,
|
|
|
|
address: "",
|
|
|
|
dirPath: dirPath);
|
|
|
|
credentials.walletInfo = walletInfo;
|
|
|
|
|
|
|
|
_walletCreationService = WalletCreationService(
|
|
|
|
secureStorage: storage,
|
|
|
|
walletService: walletService,
|
|
|
|
keyService: keysStorage,
|
|
|
|
);
|
|
|
|
_walletCreationService.changeWalletType();
|
|
|
|
} catch (e, s) {
|
|
|
|
print(e);
|
|
|
|
print(s);
|
|
|
|
hasThrown = true;
|
|
|
|
}
|
|
|
|
expect(hasThrown, false);
|
2022-11-08 15:55:15 +00:00
|
|
|
});
|
2022-11-07 19:45:25 +00:00
|
|
|
|
2022-11-08 15:55:15 +00:00
|
|
|
test("Wownero 25 word seed address generation", () async {
|
2022-11-07 19:45:25 +00:00
|
|
|
final wallet = await _walletCreationService.restoreFromSeed(credentials);
|
|
|
|
walletInfo.address = wallet.walletAddresses.address;
|
|
|
|
|
2022-11-08 15:55:15 +00:00
|
|
|
bool hasThrown = false;
|
2022-11-07 19:45:25 +00:00
|
|
|
try {
|
|
|
|
await _walletInfoSource.add(walletInfo);
|
|
|
|
walletBase?.close();
|
|
|
|
walletBase = wallet as WowneroWalletBase;
|
|
|
|
|
|
|
|
expect(walletInfo.address, mainnetTestData25[0][0]);
|
|
|
|
} catch (_) {
|
|
|
|
hasThrown = true;
|
|
|
|
}
|
|
|
|
expect(hasThrown, false);
|
|
|
|
|
|
|
|
walletBase?.close();
|
|
|
|
walletBase = wallet as WowneroWalletBase;
|
|
|
|
});
|
|
|
|
|
|
|
|
// TODO delete left over wallet file with name: name
|
2022-10-14 23:38:46 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<String> pathForWalletDir(
|
|
|
|
{required String name, required WalletType type}) async {
|
|
|
|
Directory root = (await getApplicationDocumentsDirectory());
|
|
|
|
if (Platform.isIOS) {
|
|
|
|
root = (await getLibraryDirectory());
|
|
|
|
}
|
|
|
|
final prefix = walletTypeToString(type).toLowerCase();
|
|
|
|
final walletsDir = Directory('${root.path}/wallets');
|
|
|
|
final walletDire = Directory('${walletsDir.path}/$prefix/$name');
|
|
|
|
|
|
|
|
if (!walletDire.existsSync()) {
|
|
|
|
walletDire.createSync(recursive: true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return walletDire.path;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<String> pathForWallet(
|
2022-11-12 15:16:07 +00:00
|
|
|
{required String name, required WalletType type}) async =>
|
2022-10-14 23:38:46 +00:00
|
|
|
await pathForWalletDir(name: name, type: type)
|
2023-01-19 21:13:03 +00:00
|
|
|
.then((path) => '$path/$name');
|