Skip to content
Snippets Groups Projects
Commit b9fadd25 authored by vjrj's avatar vjrj
Browse files

Fixed tests

parent 91da9c36
No related branches found
No related tags found
No related merge requests found
......@@ -307,22 +307,22 @@ void main() {
test('Extraction from a list separated by semicolons', () {
const String listText =
'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG; ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:BJH; 78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT';
'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG; ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:9bG; 78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT';
final List<Contact> result = parseMultipleKeys(listText);
expect(result, <Contact>[
Contact(pubKey: 'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG'),
Contact(pubKey: 'ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:BJH'),
Contact(pubKey: 'ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:9bG'),
Contact(pubKey: '78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT')
]);
});
test('Extraction from a list separated by spaces', () {
const String listText =
'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:BJH 78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT';
'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:9bG 78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT';
final List<Contact> result = parseMultipleKeys(listText);
expect(result, <Contact>[
Contact(pubKey: 'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG'),
Contact(pubKey: 'ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:BJH'),
Contact(pubKey: 'ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:9bG'),
Contact(pubKey: '78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT')
]);
});
......
......@@ -125,7 +125,7 @@ void main() {
final Contact contact =
Contact(pubKey: otherTestPubKey, name: 'John Doe');
final String result = humanizeContact(publicAddress, contact, true);
expect(result, 'John Doe (🔑 7XtC…3Hy6)');
expect(result, 'John Doe (🗝 7XtC…3Hy6)');
});
test(
......@@ -134,7 +134,7 @@ void main() {
const String publicAddress = otherTestPubKey;
final Contact contact = Contact(pubKey: testPubKey);
final String result = humanizeContact(publicAddress, contact, true);
expect(result, '🔑 7wnD…efsu');
expect(result, '🗝 7wnD…efsu');
});
});
......@@ -171,13 +171,13 @@ void main() {
() {
final Contact contact = Contact(pubKey: testPubKey);
final String result = contact.title;
expect(result, '🔑 7wnD…efsu');
expect(result, '🗝 7wnD…efsu');
});
test('Should return subtitle when nick or name is provided', () {
final Contact contact = Contact(pubKey: testPubKey, nick: 'JD');
final String? result = contact.subtitle;
expect(result, '🔑 7wnD…efsu');
expect(result, '🗝 7wnD…efsu');
});
test('Should return null subtitle when neither nick nor name is provided',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment