You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
2 years ago
|
import chai, { assert, expect } from "chai";
|
||
|
import chaiBN from "chai-bn";
|
||
|
import BN from "bn.js";
|
||
|
chai.use(chaiBN(BN));
|
||
|
|
||
|
import { Builder, Cell, Slice } from "ton";
|
||
|
import { SmartContract } from "ton-contract-executor";
|
||
|
import * as main from "../contracts/main";
|
||
|
import { internalMessage, randomAddress } from "./helpers";
|
||
|
|
||
|
import { hex } from "../build/nft-collection.compiled.json";
|
||
|
|
||
|
describe("Creating items tests", () => {
|
||
|
let contract: SmartContract;
|
||
|
let debug: boolean = false;
|
||
|
|
||
|
beforeEach(async () => {
|
||
|
contract = await SmartContract.fromCell(
|
||
|
Cell.fromBoc(hex)[0],
|
||
|
main.collectionData({
|
||
|
ownerAddress: randomAddress("owner"),
|
||
|
code: Cell.fromBoc(hex)[0],
|
||
|
ownerKey: 0,
|
||
|
}),
|
||
|
{ debug: debug }
|
||
|
);
|
||
|
});
|
||
|
|
||
|
it("allows to buy an item", async () => {
|
||
|
main.setContractBalance(contract, 10 * main.TON());
|
||
|
let ownerAddr = randomAddress("owner");
|
||
|
const sendToSelfMessage = internalMessage({
|
||
|
from: ownerAddr,
|
||
|
body: main.createItem({ domain: "test" }),
|
||
|
value: new BN(10 * main.TON()),
|
||
|
});
|
||
|
const res = await contract.sendInternalMessage(sendToSelfMessage);
|
||
|
console.log(res);
|
||
|
expect(res.type).to.equal("success");
|
||
|
expect(res.exit_code).to.equal(0);
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|