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.
72 lines
2.7 KiB
72 lines
2.7 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 {Address, Builder, Cell, contractAddress, Slice} from "ton";
|
||
|
import {runContract, SmartContract} from "ton-contract-executor";
|
||
|
import * as main from "../contracts/main";
|
||
|
import {internalMessage, randomAddress} from "./helpers";
|
||
|
|
||
|
import {hex} from "../build/nft-collection.compiled.json";
|
||
|
import {makeSnakeCell} from "../contracts/utils";
|
||
|
import {keyPairFromSeed, KeyPair, sign, keyPairFromSecretKey} from "ton-crypto";
|
||
|
import {signBuy} from "../contracts/main";
|
||
|
|
||
|
let ownerKeys = keyPairFromSeed(Buffer.from("0000000000000000000000000000000000000000000000000000000000000000", "hex"));
|
||
|
let ownerPubNum = new BN(ownerKeys.publicKey);
|
||
|
let data = main.collectionData({
|
||
|
ownerAddress: randomAddress("owner"),
|
||
|
code: Cell.fromBoc(hex)[0],
|
||
|
ownerKey: ownerPubNum,
|
||
|
});
|
||
|
|
||
|
describe("Creating items tests", () => {
|
||
|
let contract: SmartContract;
|
||
|
let debug: boolean = true;
|
||
|
|
||
|
beforeEach(async () => {
|
||
|
contract = await SmartContract.fromCell(
|
||
|
Cell.fromBoc(hex)[0],
|
||
|
data,
|
||
|
{debug: debug}
|
||
|
);
|
||
|
contract.setC7Config({
|
||
|
myself: randomAddress("collection")
|
||
|
})
|
||
|
});
|
||
|
|
||
|
it("allows to buy an item with a valid signature", async () => {
|
||
|
main.setContractBalance(contract, 10 * main.TON(), randomAddress("collection"));
|
||
|
let ownerAddr = randomAddress("dude");
|
||
|
let signature = signBuy("test", randomAddress("collection"), ownerAddr, ownerKeys.secretKey);
|
||
|
const sendToSelfMessage = internalMessage({
|
||
|
from: ownerAddr,
|
||
|
body: main.createItem({domain: "test", signature: signature}),
|
||
|
value: new BN(100 * main.TON()),
|
||
|
});
|
||
|
const res = await contract.sendInternalMessage(sendToSelfMessage);
|
||
|
// console.log(res);
|
||
|
let fs = require('fs');
|
||
|
fs.writeFile('logs.txt', res.logs, (_: any) => {});
|
||
|
expect(res.type).to.equal("success");
|
||
|
expect(res.exit_code).to.equal(0);
|
||
|
});
|
||
|
it("does not allow to buy an item if the signature is invalid", async () => {
|
||
|
main.setContractBalance(contract, 10 * main.TON(), randomAddress("collection"));
|
||
|
let ownerAddr = randomAddress("dude");
|
||
|
let signature = signBuy("test", randomAddress("collection"), ownerAddr, ownerKeys.secretKey);
|
||
|
const sendToSelfMessage = internalMessage({
|
||
|
from: ownerAddr,
|
||
|
body: main.createItem({domain: "test", signature: signature}),
|
||
|
value: new BN(100 * main.TON()),
|
||
|
});
|
||
|
const res = await contract.sendInternalMessage(sendToSelfMessage);
|
||
|
expect(res.type).to.equal("success");
|
||
|
expect(res.exit_code).to.equal(0);
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|