123456789101112131415161718192021222324252627282930313233343536373839 |
- const anchor = require("@project-serum/anchor");
- const assert = require("assert");
- describe("sysvars", () => {
- // Configure the client to use the local cluster.
- anchor.setProvider(anchor.Provider.local());
- const program = anchor.workspace.Sysvars;
- it("Is initialized!", async () => {
- const tx = await program.methods
- .sysvars()
- .accounts({
- clock: anchor.web3.SYSVAR_CLOCK_PUBKEY,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- stakeHistory: anchor.web3.SYSVAR_STAKE_HISTORY_PUBKEY,
- })
- .rpc();
- console.log("Your transaction signature", tx);
- });
- it("Fails when the wrote 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.toString(), errMsg);
- assert.strictEqual(err.msg, errMsg);
- assert.strictEqual(err.code, 3015);
- }
- });
- });
|