embark/test_apps/test_app/test/simple_storage_spec.js

41 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-06-06 17:54:20 +00:00
/*global contract, config, it, embark, assert, web3*/
2018-06-01 14:48:29 +00:00
const SimpleStorage = embark.require('Embark/contracts/SimpleStorage');
2018-06-06 17:54:20 +00:00
let accounts;
2018-01-15 14:51:45 +00:00
2018-06-01 14:48:29 +00:00
config({
contracts: {
"SimpleStorage": {
2018-06-06 14:39:02 +00:00
args: [100],
2018-06-06 17:54:20 +00:00
onDeploy: ["SimpleStorage.methods.setRegistar(web3.eth.defaultAccount).send()"]
2018-06-01 14:48:29 +00:00
}
}
2018-06-06 17:54:20 +00:00
}, (err, theAccounts) => {
accounts = theAccounts;
2018-06-01 14:48:29 +00:00
});
2018-01-15 14:51:45 +00:00
2018-06-01 14:48:29 +00:00
contract("SimpleStorage", function () {
2018-01-05 20:10:47 +00:00
this.timeout(0);
2018-01-15 14:51:45 +00:00
2018-06-01 14:48:29 +00:00
it("should set constructor value", async function () {
2018-04-17 18:48:31 +00:00
let result = await SimpleStorage.methods.storedData().call();
2018-06-01 14:48:29 +00:00
assert.strictEqual(parseInt(result, 10), 100);
2017-02-10 00:38:02 +00:00
});
2018-06-01 14:48:29 +00:00
it("set storage value", async function () {
2018-04-17 18:48:31 +00:00
await SimpleStorage.methods.set(150).send();
let result = await SimpleStorage.methods.get().call();
2018-06-01 14:48:29 +00:00
assert.strictEqual(parseInt(result, 10), 499650);
2017-02-10 00:38:02 +00:00
});
2018-06-06 14:39:02 +00:00
it("should set defaultAccount", async function () {
let result = await SimpleStorage.methods.registar().call();
assert.strictEqual(result, web3.eth.defaultAccount);
2018-06-06 17:54:20 +00:00
assert.strictEqual(accounts[0], web3.eth.defaultAccount);
2018-06-06 14:39:02 +00:00
});
2018-06-06 17:54:20 +00:00
it("should alias contract address", function () {
2018-06-06 16:47:16 +00:00
assert.strictEqual(SimpleStorage.options.address, SimpleStorage.address);
});
2017-02-10 00:38:02 +00:00
});