2020-02-06 17:24:18 +01:00
|
|
|
import { LastPassCsvImporter as Importer } from '../../../src/importers/lastpassCsvImporter';
|
2020-02-06 21:28:17 +01:00
|
|
|
|
2020-02-06 17:24:18 +01:00
|
|
|
import { CipherView } from '../../../src/models/view/cipherView';
|
2020-02-06 21:28:17 +01:00
|
|
|
import { FieldView } from '../../../src/models/view/fieldView';
|
2020-02-06 17:24:18 +01:00
|
|
|
|
2020-02-06 21:28:17 +01:00
|
|
|
import { FieldType } from '../../../src/enums';
|
|
|
|
|
2020-02-06 17:24:18 +01:00
|
|
|
const CipherData = [
|
|
|
|
{
|
|
|
|
title: 'should parse expiration date',
|
|
|
|
csv: `url,username,password,extra,name,grouping,fav
|
|
|
|
http://sn,,,"NoteType:Credit Card
|
|
|
|
Name on Card:John Doe
|
|
|
|
Type:
|
|
|
|
Number:1234567812345678
|
|
|
|
Security Code:123
|
|
|
|
Start Date:October,2017
|
|
|
|
Expiration Date:June,2020
|
|
|
|
Notes:some text
|
|
|
|
",Credit-card,,0`,
|
|
|
|
expected: Object.assign(new CipherView(), {
|
2020-02-06 21:28:17 +01:00
|
|
|
id: null,
|
|
|
|
organizationId: null,
|
|
|
|
folderId: null,
|
|
|
|
name: 'Credit-card',
|
|
|
|
notes: 'some text\n',
|
|
|
|
type: 3,
|
|
|
|
card: {
|
|
|
|
cardholderName: 'John Doe',
|
|
|
|
number: '1234567812345678',
|
|
|
|
code: '123',
|
|
|
|
expYear: '2020',
|
|
|
|
expMonth: '6',
|
|
|
|
},
|
|
|
|
fields: [
|
|
|
|
Object.assign(new FieldView(), {
|
|
|
|
name: 'Start Date',
|
|
|
|
value: 'October,2017',
|
|
|
|
type: FieldType.Text,
|
|
|
|
}),
|
|
|
|
],
|
2020-02-06 17:24:18 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'should parse blank card note',
|
|
|
|
csv: `url,username,password,extra,name,grouping,fav
|
|
|
|
http://sn,,,"NoteType:Credit Card
|
|
|
|
Name on Card:
|
|
|
|
Type:
|
|
|
|
Number:
|
|
|
|
Security Code:
|
|
|
|
Start Date:,
|
|
|
|
Expiration Date:,
|
|
|
|
Notes:",empty,,0`,
|
|
|
|
expected: Object.assign(new CipherView(), {
|
2020-02-06 21:28:17 +01:00
|
|
|
id: null,
|
|
|
|
organizationId: null,
|
|
|
|
folderId: null,
|
|
|
|
name: 'empty',
|
|
|
|
notes: null,
|
|
|
|
type: 3,
|
|
|
|
card: {
|
|
|
|
expMonth: undefined,
|
|
|
|
},
|
|
|
|
fields: [
|
|
|
|
Object.assign(new FieldView(), {
|
|
|
|
name: 'Start Date',
|
|
|
|
value: ',',
|
|
|
|
type: FieldType.Text,
|
|
|
|
}),
|
|
|
|
],
|
2020-02-06 17:24:18 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'should parse card expiration date w/ no exp year',
|
|
|
|
csv: `url,username,password,extra,name,grouping,fav
|
|
|
|
http://sn,,,"NoteType:Credit Card
|
|
|
|
Name on Card:John Doe
|
|
|
|
Type:Visa
|
|
|
|
Number:1234567887654321
|
|
|
|
Security Code:321
|
|
|
|
Start Date:,
|
|
|
|
Expiration Date:January,
|
|
|
|
Notes:",noyear,,0`,
|
|
|
|
expected: Object.assign(new CipherView(), {
|
2020-02-06 21:28:17 +01:00
|
|
|
id: null,
|
|
|
|
organizationId: null,
|
|
|
|
folderId: null,
|
|
|
|
name: 'noyear',
|
|
|
|
notes: null,
|
|
|
|
type: 3,
|
|
|
|
card: {
|
|
|
|
cardholderName: 'John Doe',
|
|
|
|
number: '1234567887654321',
|
|
|
|
code: '321',
|
|
|
|
expMonth: '1',
|
|
|
|
},
|
|
|
|
fields: [
|
|
|
|
Object.assign(new FieldView(), {
|
|
|
|
name: 'Type',
|
|
|
|
value: 'Visa',
|
|
|
|
type: FieldType.Text,
|
|
|
|
}),
|
|
|
|
Object.assign(new FieldView(), {
|
|
|
|
name: 'Start Date',
|
|
|
|
value: ',',
|
|
|
|
type: FieldType.Text,
|
|
|
|
}),
|
|
|
|
],
|
2020-02-06 17:24:18 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'should parse card expiration date w/ no month',
|
|
|
|
csv: `url,username,password,extra,name,grouping,fav
|
|
|
|
http://sn,,,"NoteType:Credit Card
|
|
|
|
Name on Card:John Doe
|
|
|
|
Type:Mastercard
|
|
|
|
Number:8765432112345678
|
|
|
|
Security Code:987
|
|
|
|
Start Date:,
|
|
|
|
Expiration Date:,2020
|
|
|
|
Notes:",nomonth,,0`,
|
|
|
|
expected: Object.assign(new CipherView(), {
|
2020-02-06 21:28:17 +01:00
|
|
|
id: null,
|
|
|
|
organizationId: null,
|
|
|
|
folderId: null,
|
|
|
|
name: 'nomonth',
|
|
|
|
notes: null,
|
|
|
|
type: 3,
|
|
|
|
card: {
|
|
|
|
cardholderName: 'John Doe',
|
|
|
|
number: '8765432112345678',
|
|
|
|
code: '987',
|
|
|
|
expYear: '2020',
|
|
|
|
expMonth: undefined,
|
|
|
|
},
|
|
|
|
fields: [
|
|
|
|
Object.assign(new FieldView(), {
|
|
|
|
name: 'Type',
|
|
|
|
value: 'Mastercard',
|
|
|
|
type: FieldType.Text,
|
|
|
|
}),
|
|
|
|
Object.assign(new FieldView(), {
|
|
|
|
name: 'Start Date',
|
|
|
|
value: ',',
|
|
|
|
type: FieldType.Text,
|
|
|
|
}),
|
|
|
|
],
|
2020-02-06 17:24:18 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
describe('Lastpass CSV Importer', () => {
|
2021-02-04 16:49:23 +01:00
|
|
|
CipherData.forEach(data => {
|
2020-02-06 17:24:18 +01:00
|
|
|
it(data.title, async () => {
|
|
|
|
const importer = new Importer();
|
2020-12-05 03:05:11 +01:00
|
|
|
const result = await importer.parse(data.csv);
|
2020-02-06 17:24:18 +01:00
|
|
|
expect(result != null).toBe(true);
|
|
|
|
expect(result.ciphers.length).toBeGreaterThan(0);
|
|
|
|
|
|
|
|
const cipher = result.ciphers.shift();
|
2020-03-11 14:00:14 +01:00
|
|
|
let property: keyof typeof data.expected;
|
|
|
|
for (property in data.expected) {
|
2020-02-06 17:24:18 +01:00
|
|
|
if (data.expected.hasOwnProperty(property)) {
|
|
|
|
expect(cipher.hasOwnProperty(property)).toBe(true);
|
|
|
|
expect(cipher[property]).toEqual(data.expected[property]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|