solana-program-library/token/js/cli/token-test.js

569 lines
16 KiB
JavaScript
Raw Normal View History

2020-05-29 15:00:47 -07:00
// @flow
import fs from 'mz/fs';
import {
Account,
Connection,
BpfLoader,
PublicKey,
BPF_LOADER_PROGRAM_ID,
} from '@solana/web3.js';
2020-05-29 15:00:47 -07:00
import semver from 'semver';
import {Token, NATIVE_MINT} from '../client/token';
import {url} from '../url';
2020-05-29 15:00:47 -07:00
import {newAccountWithLamports} from '../client/util/new-account-with-lamports';
import {sleep} from '../client/util/sleep';
2020-07-06 07:49:20 -07:00
import {Store} from '../client/util/store';
2020-05-29 15:00:47 -07:00
// Loaded token program's program id
let programId: PublicKey;
2020-08-28 10:04:37 -07:00
// Accounts setup in createMint and used by all subsequent tests
let testMintAuthority: Account;
2020-07-06 16:36:27 -07:00
let testToken: Token;
2020-08-28 10:04:37 -07:00
// Accounts setup in createAccount and used by all subsequent tests
let testAccountOwner: Account;
let testAccount: PublicKey;
2020-05-29 15:00:47 -07:00
function assert(condition, message) {
if (!condition) {
console.log(Error().stack + ':token-test.js');
throw message || 'Assertion failed';
}
}
async function didThrow(obj, func, args): Promise<boolean> {
2020-05-29 15:00:47 -07:00
try {
await func.apply(testToken, args);
2020-05-29 15:00:47 -07:00
} catch (e) {
return true;
}
return false;
}
let connection;
async function getConnection(): Promise<Connection> {
if (connection) return connection;
let newConnection = new Connection(url, 'recent');
2020-05-29 15:00:47 -07:00
const version = await newConnection.getVersion();
// commitment params are only supported >= 0.21.0
const solanaCoreVersion = version['solana-core'].split(' ')[0];
if (semver.gte(solanaCoreVersion, '0.21.0')) {
newConnection = new Connection(url, 'recent');
}
// eslint-disable-next-line require-atomic-updates
connection = newConnection;
console.log('Connection to cluster established:', url, version);
return connection;
}
async function loadProgram(
connection: Connection,
path: string,
): Promise<PublicKey> {
2020-05-29 15:00:47 -07:00
const NUM_RETRIES = 500; /* allow some number of retries */
const data = await fs.readFile(path);
const {feeCalculator} = await connection.getRecentBlockhash();
2020-05-29 15:00:47 -07:00
const balanceNeeded =
feeCalculator.lamportsPerSignature *
(BpfLoader.getMinNumSignatures(data.length) + NUM_RETRIES) +
2020-05-29 15:00:47 -07:00
(await connection.getMinimumBalanceForRentExemption(data.length));
const from = await newAccountWithLamports(connection, balanceNeeded);
const program_account = new Account();
2020-07-06 07:49:20 -07:00
console.log('Loading program:', path);
await BpfLoader.load(
connection,
from,
program_account,
data,
BPF_LOADER_PROGRAM_ID,
);
2020-07-06 07:49:20 -07:00
return program_account.publicKey;
}
async function GetPrograms(connection: Connection): Promise<PublicKey> {
2020-08-29 23:31:58 -07:00
const programVersion = process.env.PROGRAM_VERSION;
if (programVersion) {
switch (programVersion) {
2020-09-03 19:21:52 -07:00
case '2.0.4':
2020-08-29 23:31:58 -07:00
return new PublicKey('TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA');
default:
throw new Error('Unknown program version');
}
}
2020-07-06 07:49:20 -07:00
const store = new Store();
let tokenProgramId = null;
try {
const config = await store.load('config.json');
console.log('Using pre-loaded Token program');
console.log(
' Note: To reload program remove client/util/store/config.json',
);
2020-07-06 07:49:20 -07:00
tokenProgramId = new PublicKey(config.tokenProgramId);
} catch (err) {
tokenProgramId = await loadProgram(
connection,
2020-08-07 14:53:15 -07:00
'../../target/bpfel-unknown-unknown/release/spl_token.so',
);
2020-07-06 07:49:20 -07:00
await store.save('config.json', {
tokenProgramId: tokenProgramId.toString(),
});
}
return tokenProgramId;
}
export async function loadTokenProgram(): Promise<void> {
const connection = await getConnection();
programId = await GetPrograms(connection);
console.log('Token Program ID', programId.toString());
2020-05-29 15:00:47 -07:00
}
2020-07-06 07:49:20 -07:00
export async function createMint(): Promise<void> {
2020-05-29 15:00:47 -07:00
const connection = await getConnection();
const payer = await newAccountWithLamports(connection, 1000000000 /* wag */);
2020-08-28 10:04:37 -07:00
testMintAuthority = new Account();
testToken = await Token.createMint(
2020-05-29 15:00:47 -07:00
connection,
payer,
2020-08-28 10:04:37 -07:00
testMintAuthority.publicKey,
testMintAuthority.publicKey,
2020-05-29 15:00:47 -07:00
2,
programId,
);
2020-07-06 07:49:20 -07:00
const mintInfo = await testToken.getMintInfo();
2020-08-28 10:04:37 -07:00
if (mintInfo.mintAuthority !== null) {
assert(mintInfo.mintAuthority.equals(testMintAuthority.publicKey));
} else {
assert(mintInfo.mintAuthority !== null);
}
assert(mintInfo.supply.toNumber() === 0);
assert(mintInfo.decimals === 2);
assert(mintInfo.isInitialized === true);
if (mintInfo.freezeAuthority !== null) {
assert(mintInfo.freezeAuthority.equals(testMintAuthority.publicKey));
} else {
assert(mintInfo.freezeAuthority !== null);
}
2020-08-28 10:04:37 -07:00
}
2020-08-28 10:04:37 -07:00
export async function createAccount(): Promise<void> {
testAccountOwner = new Account();
testAccount = await testToken.createAccount(testAccountOwner.publicKey);
const accountInfo = await testToken.getAccountInfo(testAccount);
2020-07-06 07:49:20 -07:00
assert(accountInfo.mint.equals(testToken.publicKey));
assert(accountInfo.owner.equals(testAccountOwner.publicKey));
2020-08-28 10:04:37 -07:00
assert(accountInfo.amount.toNumber() === 0);
assert(accountInfo.delegate === null);
assert(accountInfo.delegatedAmount.toNumber() === 0);
assert(accountInfo.isInitialized === true);
assert(accountInfo.isFrozen === false);
assert(accountInfo.isNative === false);
assert(accountInfo.rentExemptReserve === null);
assert(accountInfo.closeAuthority === null);
2020-05-29 15:00:47 -07:00
}
2020-08-28 10:04:37 -07:00
export async function mintTo(): Promise<void> {
await testToken.mintTo(testAccount, testMintAuthority, [], 1000);
const mintInfo = await testToken.getMintInfo();
assert(mintInfo.supply.toNumber() === 1000);
const accountInfo = await testToken.getAccountInfo(testAccount);
assert(accountInfo.amount.toNumber() === 1000);
2020-05-29 15:00:47 -07:00
}
export async function mintTo2(): Promise<void> {
assert(
await didThrow(testToken, testToken.mintTo2, [
testAccount,
testMintAuthority,
[],
1000,
1,
]),
);
await testToken.mintTo2(testAccount, testMintAuthority, [], 1000, 2);
const mintInfo = await testToken.getMintInfo();
assert(mintInfo.supply.toNumber() === 2000);
const accountInfo = await testToken.getAccountInfo(testAccount);
assert(accountInfo.amount.toNumber() === 2000);
}
2020-05-29 15:00:47 -07:00
export async function transfer(): Promise<void> {
2020-07-06 16:36:27 -07:00
const destOwner = new Account();
2020-07-01 01:40:36 -07:00
const dest = await testToken.createAccount(destOwner.publicKey);
2020-05-29 15:00:47 -07:00
2020-08-28 10:04:37 -07:00
await testToken.transfer(testAccount, dest, testAccountOwner, [], 100);
const mintInfo = await testToken.getMintInfo();
assert(mintInfo.supply.toNumber() === 2000);
2020-05-29 15:00:47 -07:00
2020-07-01 01:40:36 -07:00
let destAccountInfo = await testToken.getAccountInfo(dest);
2020-08-28 10:04:37 -07:00
assert(destAccountInfo.amount.toNumber() === 100);
let testAccountInfo = await testToken.getAccountInfo(testAccount);
assert(testAccountInfo.amount.toNumber() === 1900);
}
export async function transfer2(): Promise<void> {
const destOwner = new Account();
const dest = await testToken.createAccount(destOwner.publicKey);
assert(
await didThrow(testToken, testToken.transfer2, [
testAccount,
dest,
testAccountOwner,
[],
100,
1,
]),
);
await testToken.transfer2(testAccount, dest, testAccountOwner, [], 100, 2);
const mintInfo = await testToken.getMintInfo();
assert(mintInfo.supply.toNumber() === 2000);
let destAccountInfo = await testToken.getAccountInfo(dest);
assert(destAccountInfo.amount.toNumber() === 100);
let testAccountInfo = await testToken.getAccountInfo(testAccount);
assert(testAccountInfo.amount.toNumber() === 1800);
2020-05-29 15:00:47 -07:00
}
export async function approveRevoke(): Promise<void> {
2020-08-28 10:04:37 -07:00
const delegate = new Account().publicKey;
await testToken.approve(testAccount, delegate, testAccountOwner, [], 42);
2020-05-29 15:00:47 -07:00
2020-07-06 07:49:20 -07:00
let testAccountInfo = await testToken.getAccountInfo(testAccount);
2020-08-28 10:04:37 -07:00
assert(testAccountInfo.delegatedAmount.toNumber() === 42);
2020-07-06 07:49:20 -07:00
if (testAccountInfo.delegate === null) {
2020-08-28 10:04:37 -07:00
throw new Error('delegate should not be null');
2020-05-29 15:00:47 -07:00
} else {
2020-07-06 07:49:20 -07:00
assert(testAccountInfo.delegate.equals(delegate));
2020-05-29 15:00:47 -07:00
}
2020-07-07 11:23:23 -07:00
await testToken.revoke(testAccount, testAccountOwner, []);
2020-08-28 10:04:37 -07:00
2020-07-06 07:49:20 -07:00
testAccountInfo = await testToken.getAccountInfo(testAccount);
2020-08-28 10:04:37 -07:00
assert(testAccountInfo.delegatedAmount.toNumber() === 0);
if (testAccountInfo.delegate !== null) {
2020-07-06 07:49:20 -07:00
throw new Error('delegate should be null');
2020-05-29 15:00:47 -07:00
}
}
export async function failOnApproveOverspend(): Promise<void> {
2020-07-06 16:36:27 -07:00
const owner = new Account();
2020-07-01 01:40:36 -07:00
const account1 = await testToken.createAccount(owner.publicKey);
const account2 = await testToken.createAccount(owner.publicKey);
2020-07-06 07:49:20 -07:00
const delegate = new Account();
2020-05-29 15:00:47 -07:00
await testToken.transfer(testAccount, account1, testAccountOwner, [], 10);
2020-05-29 15:00:47 -07:00
2020-07-06 16:36:27 -07:00
await testToken.approve(account1, delegate.publicKey, owner, [], 2);
2020-05-29 15:00:47 -07:00
2020-07-06 07:49:20 -07:00
let account1Info = await testToken.getAccountInfo(account1);
assert(account1Info.amount.toNumber() == 10);
assert(account1Info.delegatedAmount.toNumber() == 2);
if (account1Info.delegate === null) {
throw new Error('delegate should not be null');
2020-07-06 07:49:20 -07:00
} else {
assert(account1Info.delegate.equals(delegate.publicKey));
}
2020-05-29 15:00:47 -07:00
2020-07-06 16:36:27 -07:00
await testToken.transfer(account1, account2, delegate, [], 1);
2020-05-29 15:00:47 -07:00
2020-07-06 07:49:20 -07:00
account1Info = await testToken.getAccountInfo(account1);
assert(account1Info.amount.toNumber() == 9);
assert(account1Info.delegatedAmount.toNumber() == 1);
2020-05-29 15:00:47 -07:00
2020-07-06 16:36:27 -07:00
await testToken.transfer(account1, account2, delegate, [], 1);
2020-05-29 15:00:47 -07:00
2020-07-06 07:49:20 -07:00
account1Info = await testToken.getAccountInfo(account1);
assert(account1Info.amount.toNumber() == 8);
assert(account1Info.delegate === null);
assert(account1Info.delegatedAmount.toNumber() == 0);
2020-05-29 15:00:47 -07:00
assert(
await didThrow(testToken, testToken.transfer, [
account1,
account2,
delegate,
[],
1,
]),
);
2020-05-29 15:00:47 -07:00
}
2020-08-28 10:04:37 -07:00
export async function setAuthority(): Promise<void> {
2020-07-06 16:36:27 -07:00
const newOwner = new Account();
2020-08-28 10:04:37 -07:00
await testToken.setAuthority(
testAccount,
newOwner.publicKey,
'AccountOwner',
testAccountOwner,
[],
);
2020-08-28 10:04:37 -07:00
assert(
await didThrow(testToken, testToken.setAuthority, [
testAccount,
2020-08-28 10:04:37 -07:00
newOwner.publicKey,
'AccountOwner',
testAccountOwner,
[],
]),
2020-06-04 22:47:17 -07:00
);
2020-08-28 10:04:37 -07:00
await testToken.setAuthority(
testAccount,
testAccountOwner.publicKey,
'AccountOwner',
newOwner,
[],
);
2020-05-29 15:00:47 -07:00
}
2020-06-05 08:38:48 -07:00
export async function burn(): Promise<void> {
let accountInfo = await testToken.getAccountInfo(testAccount);
const amount = accountInfo.amount.toNumber();
2020-06-05 08:38:48 -07:00
2020-07-06 16:36:27 -07:00
await testToken.burn(testAccount, testAccountOwner, [], 1);
2020-06-05 08:38:48 -07:00
accountInfo = await testToken.getAccountInfo(testAccount);
assert(accountInfo.amount.toNumber() == amount - 1);
2020-06-05 08:38:48 -07:00
}
2020-07-06 16:36:27 -07:00
export async function burn2(): Promise<void> {
let accountInfo = await testToken.getAccountInfo(testAccount);
const amount = accountInfo.amount.toNumber();
assert(
await didThrow(testToken, testToken.burn2, [
testAccount,
testAccountOwner,
[],
1,
1,
]),
);
await testToken.burn2(testAccount, testAccountOwner, [], 1, 2);
accountInfo = await testToken.getAccountInfo(testAccount);
assert(accountInfo.amount.toNumber() == amount - 1);
}
export async function freezeThawAccount(): Promise<void> {
let accountInfo = await testToken.getAccountInfo(testAccount);
const amount = accountInfo.amount.toNumber();
await testToken.freezeAccount(testAccount, testMintAuthority, []);
const destOwner = new Account();
const dest = await testToken.createAccount(destOwner.publicKey);
assert(
await didThrow(testToken, testToken.transfer, [
testAccount,
dest,
testAccountOwner,
[],
100,
]),
);
await testToken.thawAccount(testAccount, testMintAuthority, []);
await testToken.transfer(testAccount, dest, testAccountOwner, [], 100);
let testAccountInfo = await testToken.getAccountInfo(testAccount);
assert(testAccountInfo.amount.toNumber() === amount - 100);
}
2020-08-28 10:04:37 -07:00
export async function closeAccount(): Promise<void> {
const closeAuthority = new Account();
await testToken.setAuthority(
testAccount,
closeAuthority.publicKey,
'CloseAccount',
testAccountOwner,
[],
);
let accountInfo = await testToken.getAccountInfo(testAccount);
if (accountInfo.closeAuthority === null) {
assert(accountInfo.closeAuthority !== null);
} else {
assert(accountInfo.closeAuthority.equals(closeAuthority.publicKey));
}
const dest = await testToken.createAccount(new Account().publicKey);
const remaining = accountInfo.amount.toNumber();
// Check that accounts with non-zero token balance cannot be closed
assert(
await didThrow(testToken, testToken.closeAccount, [
testAccount,
dest,
closeAuthority,
[],
]),
2020-08-28 10:04:37 -07:00
);
const connection = await getConnection();
let tokenRentExemptAmount;
let info = await connection.getAccountInfo(testAccount);
if (info != null) {
tokenRentExemptAmount = info.lamports;
} else {
throw new Error('Account not found');
}
// Transfer away all tokens
await testToken.transfer(testAccount, dest, testAccountOwner, [], remaining);
// Close for real
await testToken.closeAccount(testAccount, dest, closeAuthority, []);
info = await connection.getAccountInfo(testAccount);
assert(info === null);
let destInfo = await connection.getAccountInfo(dest);
if (destInfo !== null) {
assert(destInfo.lamports === 2 * tokenRentExemptAmount);
} else {
throw new Error('Account not found');
}
let destAccountInfo = await testToken.getAccountInfo(dest);
assert(destAccountInfo.amount.toNumber() === remaining);
}
2020-07-06 16:36:27 -07:00
export async function multisig(): Promise<void> {
const m = 2;
const n = 5;
let signerAccounts = [];
for (var i = 0; i < n; i++) {
signerAccounts.push(new Account());
}
let signerPublicKeys = [];
signerAccounts.forEach(account => signerPublicKeys.push(account.publicKey));
const multisig = await testToken.createMultisig(m, signerPublicKeys);
const multisigInfo = await testToken.getMultisigInfo(multisig);
assert(multisigInfo.m === m);
assert(multisigInfo.n === n);
assert(multisigInfo.signer1.equals(signerPublicKeys[0]));
assert(multisigInfo.signer2.equals(signerPublicKeys[1]));
assert(multisigInfo.signer3.equals(signerPublicKeys[2]));
assert(multisigInfo.signer4.equals(signerPublicKeys[3]));
assert(multisigInfo.signer5.equals(signerPublicKeys[4]));
const multisigOwnedAccount = await testToken.createAccount(multisig);
const finalDest = await testToken.createAccount(multisig);
2020-08-28 10:04:37 -07:00
await testToken.mintTo(multisigOwnedAccount, testMintAuthority, [], 1000);
2020-07-06 16:36:27 -07:00
// Transfer via multisig
await testToken.transfer(
multisigOwnedAccount,
finalDest,
multisig,
signerAccounts,
1,
);
2020-07-06 16:36:27 -07:00
await sleep(500);
let accountInfo = await testToken.getAccountInfo(finalDest);
assert(accountInfo.amount.toNumber() == 1);
// Approve via multisig
{
const delegate = new PublicKey();
await testToken.approve(
multisigOwnedAccount,
delegate,
multisig,
signerAccounts,
2020-07-06 16:36:27 -07:00
1,
);
const accountInfo = await testToken.getAccountInfo(multisigOwnedAccount);
assert(accountInfo.delegate != null);
if (accountInfo.delegate != null) {
assert(accountInfo.delegate.equals(delegate));
assert(accountInfo.delegatedAmount.toNumber() == 1);
}
}
2020-08-28 10:04:37 -07:00
// SetAuthority of account via multisig
2020-07-06 16:36:27 -07:00
{
const newOwner = new PublicKey();
2020-08-28 10:04:37 -07:00
await testToken.setAuthority(
multisigOwnedAccount,
newOwner,
2020-08-28 10:04:37 -07:00
'AccountOwner',
multisig,
signerAccounts,
);
2020-07-06 16:36:27 -07:00
const accountInfo = await testToken.getAccountInfo(multisigOwnedAccount);
assert(accountInfo.owner.equals(newOwner));
}
}
2020-07-09 17:11:00 -07:00
export async function nativeToken(): Promise<void> {
const connection = await getConnection();
// this user both pays for the creation of the new token account
// and provides the lamports to wrap
const payer = await newAccountWithLamports(connection, 2000000000 /* wag */);
const lamportsToWrap = 1000000000;
const token = new Token(connection, NATIVE_MINT, programId, payer);
2020-07-09 17:11:00 -07:00
const owner = new Account();
const native = await Token.createWrappedNativeAccount(
connection,
programId,
owner.publicKey,
payer,
lamportsToWrap,
);
2020-07-09 17:11:00 -07:00
let accountInfo = await token.getAccountInfo(native);
assert(accountInfo.isNative);
// check that the new account has wrapped native tokens.
assert(accountInfo.amount.toNumber() === lamportsToWrap);
2020-07-09 17:11:00 -07:00
let balance;
let info = await connection.getAccountInfo(native);
if (info != null) {
balance = info.lamports;
} else {
throw new Error('Account not found');
}
const balanceNeeded = await connection.getMinimumBalanceForRentExemption(0);
2020-07-09 17:11:00 -07:00
const dest = await newAccountWithLamports(connection, balanceNeeded);
await token.closeAccount(native, dest.publicKey, owner, []);
info = await connection.getAccountInfo(native);
if (info != null) {
throw new Error('Account not burned');
}
info = await connection.getAccountInfo(dest.publicKey);
if (info != null) {
assert(info.lamports == balanceNeeded + balance);
} else {
throw new Error('Account not found');
}
}