mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-20 00:33:07 +01:00
48 lines
2.3 KiB
TypeScript
48 lines
2.3 KiB
TypeScript
import { accountSeed, ownerSecret } from '../../fixtures/metadata/suite-sync-data';
|
|
import { AccountLabelId } from '../../support/enums/accountLabelId';
|
|
import { expect, test } from '../../support/fixtures';
|
|
import { MetadataProvider } from '../../support/mocks/metadataMock';
|
|
|
|
test.describe('Labeling migration', { tag: ['@webOnly', '@T3W1', '@T3T1'] }, () => {
|
|
test.use({ wipeEvoluRelay: true });
|
|
|
|
test.beforeEach(async ({ metadataMock, evoluClient, onboardingPage }) => {
|
|
await metadataMock.start(MetadataProvider.DROPBOX);
|
|
await test.step('Seed Evolu relay server', async () => {
|
|
await evoluClient.init({ ownerSecret });
|
|
evoluClient.writeTo('account', accountSeed);
|
|
});
|
|
await onboardingPage.completeOnboarding({ keepDebugModeEnabled: true });
|
|
});
|
|
|
|
test('Migration from Dropbox', async ({ page, walletPage, metadataPage }) => {
|
|
await test.step('Set up Dropbox labeling', async () => {
|
|
await walletPage.accountLabel({ symbol: 'btc', type: 'normal', atIndex: 0 }).click();
|
|
await expect(
|
|
walletPage.accountLabel({ symbol: 'btc', type: 'normal', atIndex: 0 }),
|
|
).toHaveText('Bitcoin #1');
|
|
|
|
// wait until account page is fully loaded
|
|
await expect(walletPage.fiatAmount).toBeVisible();
|
|
await metadataPage.account.clickEditLabelButton(AccountLabelId.BitcoinDefault1);
|
|
await metadataPage.passThroughInitMetadata(MetadataProvider.DROPBOX);
|
|
});
|
|
|
|
await test.step('Add legacy account label', async () => {
|
|
await metadataPage.account.metadataInput.fill('new dropbox label');
|
|
await page.keyboard.press('Enter');
|
|
await expect(
|
|
walletPage.accountLabel({ symbol: 'btc', type: 'normal', atIndex: 0 }),
|
|
).toHaveText('new dropbox label');
|
|
await metadataPage.account.successIconIsVisible(AccountLabelId.BitcoinDefault1);
|
|
});
|
|
|
|
await test.step('Switch to Suite Sync labeling and confirm legacy label is retained', async () => {
|
|
await metadataPage.enableSuiteSync();
|
|
await expect(
|
|
walletPage.accountLabel({ symbol: 'btc', type: 'normal', atIndex: 0 }),
|
|
).toHaveText(accountSeed.label);
|
|
});
|
|
});
|
|
});
|