@hashgraph/hedera-cli
Version:
CLI tool to manage and setup developer environments for Hedera Hashgraph.
42 lines (35 loc) • 1.24 kB
text/typescript
import { alice, baseState } from "../../helpers/state";
import { Command } from "commander";
import commands from "../../../src/commands";
import accountUtils from "../../../src/utils/account";
import stateController from "../../../src/state/stateController";
jest.mock("../../../src/state/state"); // Mock the original module -> looks for __mocks__/state.ts in same directory
describe("account import command", () => {
beforeEach(() => {
stateController.saveState(baseState);
});
describe("account import - success path", () => {
test("✅ should import account into state", async () => {
// Arrange
const importAccountSpy = jest.spyOn(accountUtils, "importAccount");
const program = new Command();
commands.accountCommands(program);
// Act
await program.parse([
"node",
"hedera-cli.ts",
"account",
"import",
"-a",
alice.alias,
"-i",
alice.accountId,
"-k",
alice.privateKey
]);
// Assert
expect(importAccountSpy).toHaveBeenCalledWith(alice.accountId, alice.privateKey, alice.alias);
expect(stateController.get("accounts")).toEqual({ [alice.alias]: alice });
});
});
});