Это мой код солидности:
pragma solidity >=0.4.17;
contract Inbox {
string public message;
constructor(string memory _initMessage) public {
message = _initMessage;
}
function setMessage(string memory _newMessage) public {
message = _newMessage;
}
}
Это моя компиляция. js Код для компиляции кода солидности:
const path = require("path");
const fs = require("fs");
const solc = require("solc");
const inboxPath = path.resolve(__dirname, "contracts", "Inbox.sol");
const source = fs.readFileSync(inboxPath, "utf8");
module.exports = solc.compile(source, 1).contracts[":Inbox"];
Это мой inbox.test. js файл, где я написал свой тест.
const assert = require("assert");
const ganache = require("ganache-cli");
const Web3 = require("web3");
const provider = ganache.provider();
const web3 = new Web3(provider);
const { interface, bytecode } = require("../compile");
//global variables
let accounts;
let inbox;
beforeEach(async () => {
// get the list of all accounts
accounts = await web3.eth.getAccounts();
// use one of the accounts to deploy the contract
inbox = await new web3.eth.Contract(JSON.parse(interface))
.deploy({ data: bytecode, arguments: ["Hi there!"] })
.send({ from: accounts[0], gas: "1000000" });
inbox.setProvider(provider);
});
describe("Inbox", () => {
it("deploys a contract", () => {
assert.ok("inbox.option.address");
});
it("set initial value", async () => {
const messsage = await inbox.methods.message().call();
assert.equal(messsage, "Hi there!");
});
it("can set new value", async () => {
await inbox.methods.setMessage("bye").call({ from: accounts[0] });
const mess = await inbox.methods.message().call();
assert.equal(mess, "bye");
});
});
Проблема: Когда я выполняю команду «npm run test», мои первые 2 теста прошли успешно, но 3-й тест не удался, показывая ошибку «Привет!» не равно "пока".
~/Documents/Inbox$ npm run test
> inbox@1.0.0 test /home/sahil/Documents/Inbox
> mocha
Inbox
(node:19409) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 data listeners added to [l]. Use emitter.setMaxListeners() to increase limit
✓ deploys a contract
✓ set initial value
1) can set new value
2 passing (511ms)
1 failing
1) Inbox
can set new value:
AssertionError [ERR_ASSERTION]: 'Hi there!' == 'bye'
+ expected - actual
-Hi there!
+bye
at Context.<anonymous> (test/Inbox.test.js:38:12)
at processTicksAndRejections (internal/process/task_queues.js:97:5)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! inbox@1.0.0 test: `mocha`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the inbox@1.0.0 test script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/sahil/.npm/_logs/2020-03-30T05_58_56_753Z-debug.log
Я проверил все, но я не знаю, почему эта функция 'setMessage' не обновляет значение моего сообщения в файле солидности. пожалуйста, помогите.