31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
|
|
exports.Test = (Controlled) => {
|
|
describe("Controlled", async function() {
|
|
this.timeout(0);
|
|
var accounts;
|
|
before(function(done) {
|
|
web3.eth.getAccounts().then(function (res) {
|
|
accounts = res;
|
|
done();
|
|
});
|
|
});
|
|
|
|
|
|
it("should start with msg.sender as controller", async function() {
|
|
var controller = await Controlled.methods.controller().call();
|
|
assert(controller, accounts[0]);
|
|
});
|
|
|
|
it("should allow controller to set new controller", async function() {
|
|
await Controlled.methods.changeController(accounts[1]).send({from: accounts[0]});
|
|
var controller = await Controlled.methods.controller().call();
|
|
assert(controller, accounts[1]);
|
|
});
|
|
|
|
it("should set back to original controller", async function() {
|
|
await Controlled.methods.changeController(accounts[0]).send({from: accounts[1]});
|
|
var controller = await Controlled.methods.controller().call();
|
|
assert(controller, accounts[0]);
|
|
});
|
|
});
|
|
} |