Skip to content

Commit

Permalink
test: tx sign confirmation modal
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Jan 10, 2024
1 parent 981df93 commit d55f59b
Show file tree
Hide file tree
Showing 17 changed files with 673 additions and 7 deletions.
543 changes: 537 additions & 6 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"workbox-precaching": "^7.0.0"
},
"devDependencies": {
"@aeternity/aepp-sdk-next": "npm:@aeternity/aepp-sdk@^13.2.2",
"@babel/eslint-parser": "^7.23.3",
"@frsource/cypress-plugin-visual-regression-diff": "^3.3.10",
"@intlify/eslint-plugin-vue-i18n": "^2.0.0",
Expand Down
5 changes: 4 additions & 1 deletion src/store/plugins/ui/urlRequestHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ export default (store) => {
}
};

if (!['http:', 'https:'].includes(callbackUrl.protocol)) {
if (
!['http:', 'https:'].includes(callbackUrl.protocol)
&& !callbackUrl.href.startsWith('about:blank')
) {
reply({ error: new Error(`Unknown protocol: ${callbackUrl.protocol}`) });
return;
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
131 changes: 131 additions & 0 deletions tests/e2e/specs/transfer/sign-transaction.cy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
import {
buildTx, unpackTx, Tag, encode, decode, commitmentHash, Encoding, ORACLE_TTL_TYPES, oracleQueryId,
} from '@aeternity/aepp-sdk-next';

describe('Sign transaction', () => {
const nonce = 1;
const nameTtl = 1;
const clientTtl = 1;
const amount = 12.34e18;
const accountId = 'ak_2iBPH7HUz3cSDVEUWiHg76MZJ6tZooVNBmmxcgVK6VV8KAE688';
const recipientId = 'ak_2iBPH7HUz3cSDVEUWiHg76MZJ6tZooVNBmmxcgVK6VV8KAE688';
const name = 'test123test.chain';
const nameId = 'nm_2sFnPHi5ziAqhdApSpRBsYdomCahtmk3YGNZKYUTtUNpVSMccC';
const nameFee = '1000000000000000000000';
const pointers = [{ key: 'account_pubkey', id: accountId }];
const payload = encode(Buffer.from('test'), Encoding.Bytearray);
const queryFormat = '{\'city\': str}';
const responseFormat = '{\'tmp\': num}';
const queryFee = 30000;
const oracleTtl = { oracleTtlType: ORACLE_TTL_TYPES.delta, oracleTtlValue: 500 };
const responseTtl = { responseTtlType: ORACLE_TTL_TYPES.delta, responseTtlValue: 100 };
const queryTtl = { queryTtlType: ORACLE_TTL_TYPES.delta, queryTtlValue: 100 };
const query = '{\'city\': \'Berlin\'}';
const queryResponse = '{\'tmp\': 101}';
const callData = 'cb_KxFs8lcLG2+HEPb2FOjjZ2DqRd4=';
const gasLimit = 5e6;
const nameSalt = 4204563566073083;
const commitmentId = commitmentHash(name, nameSalt);
const contractId = 'ct_TCQVoset7Y4qEyV5tgEAJAqa2Foz8J1EXqoGpq3fB6dWH5roe';
const oracleId = encode(decode(accountId), Encoding.OracleAddress);

const transactions = [{
tag: Tag.SpendTx, senderId: accountId, recipientId: accountId, nonce, amount, payload,
}, {
tag: Tag.NamePreclaimTx, accountId, nonce, commitmentId,
}, {
tag: Tag.NameClaimTx, accountId, nonce, name, nameSalt, nameFee,
}, {
tag: Tag.NameUpdateTx, accountId, nonce, nameId, nameTtl, pointers, clientTtl,
}, {
tag: Tag.NameRevokeTx, accountId, nonce, nameId,
}, {
tag: Tag.NameTransferTx, accountId, nonce, nameId, recipientId,
}, {
tag: Tag.ContractCreateTx,
nonce,
ownerId: accountId,
code: 'cb_+ExGA6Dh3797nquCHCSm088avgOiqgjjarRQviEYAXq+YlegWcCgjf6AeCCSADcBBwcBAQCOLwERgHggkhlnZXRBcmeCLwCFNy4wLjEALb9eTg==',
amount,
gasLimit,
callData,
}, {
tag: Tag.ContractCallTx,
nonce,
callerId: accountId,
contractId,
amount,
gasLimit,
callData,
}, {
tag: Tag.OracleRegisterTx,
nonce,
accountId,
queryFormat,
responseFormat,
queryFee,
...oracleTtl,
}, {
tag: Tag.OracleExtendTx, nonce, oracleId, ...oracleTtl,
}, {
tag: Tag.OracleQueryTx,
nonce,
oracleId,
...responseTtl,
query,
...queryTtl,
queryFee,
senderId: accountId,
}, {
tag: Tag.OracleResponseTx,
nonce,
oracleId,
...responseTtl,
queryId: oracleQueryId(accountId, nonce, oracleId),
response: queryResponse,
}];

transactions.forEach((txParams) => {
it(`shows ${Tag[txParams.tag]} details`, () => {
const url = new URL('http://localhost/signTransaction');
url.searchParams.append('param0', `"${buildTx(txParams)}"`);
url.searchParams.append('callback', 'about:blank');
cy
.viewport('iphone-se2')
.visit(url.href.replace('http://localhost', ''), { login: true });
cy.get('.page.primary').should('be.visible');
cy.matchImage();
});
});

it('signs transaction', () => {
const url = new URL('http://localhost/signTransaction');
url.searchParams.append('param0', `"${buildTx(transactions[0])}"`);
url.searchParams.append('callback', 'about:blank');
cy
.viewport('iphone-se2')
.visit(url.href.replace('http://localhost', ''), { login: true });
cy.get('button').contains('Confirm').click();
const skipButton = cy.get('.modal-plain .ae-button.primary');
cy.matchImage();
skipButton.click();

cy.url().should('contain', 'about:blank').then((u) => {
const resultUrl = new URL(u);
const signedTx = resultUrl.searchParams.get('result');
const txParams = unpackTx(JSON.parse(decodeURIComponent(signedTx)), Tag.SignedTx);
expect(txParams.signatures).to.have.length(1);
});
});

it('cancel transaction signing', () => {
const url = new URL('http://localhost/signTransaction');
url.searchParams.append('param0', `"${buildTx(transactions[0])}"`);
url.searchParams.append('callback', 'about:blank');
cy
.viewport('iphone-se2')
.visit(url.href.replace('http://localhost', ''), { login: true });
cy.get('button').contains('Cancel').click();
cy.url().should('equal', 'about:blank?error=Rejected+by+user');
});
});

0 comments on commit d55f59b

Please sign in to comment.