anchor/tests/sysvars/tests/sysvars.js

39 lines
1.2 KiB
JavaScript
Raw Normal View History

const anchor = require("@coral-xyz/anchor");
const { assert } = require("chai");
2021-01-11 09:22:25 -08:00
describe("sysvars", () => {
2021-01-11 09:22:25 -08:00
// Configure the client to use the local cluster.
anchor.setProvider(anchor.AnchorProvider.local());
const program = anchor.workspace.Sysvars;
2021-01-11 09:22:25 -08:00
it("Is initialized!", async () => {
const tx = await program.methods
.sysvars()
.accounts({
2021-01-11 09:22:25 -08:00
clock: anchor.web3.SYSVAR_CLOCK_PUBKEY,
rent: anchor.web3.SYSVAR_RENT_PUBKEY,
stakeHistory: anchor.web3.SYSVAR_STAKE_HISTORY_PUBKEY,
})
.rpc();
2021-01-11 09:22:25 -08:00
console.log("Your transaction signature", tx);
});
it("Fails when the wrong pubkeys are provided", async () => {
try {
await program.methods
.sysvars()
.accounts({
clock: anchor.web3.SYSVAR_CLOCK_PUBKEY,
rent: anchor.web3.SYSVAR_RENT_PUBKEY,
stakeHistory: anchor.web3.SYSVAR_REWARDS_PUBKEY,
})
.rpc();
assert.ok(false);
} catch (err) {
const errMsg = "The given public key does not match the required sysvar";
assert.strictEqual(err.error.errorMessage, errMsg);
assert.strictEqual(err.error.errorCode.number, 3015);
}
});
2021-01-11 09:22:25 -08:00
});