2018-03-13 14:13:31 +00:00
|
|
|
/*
|
|
|
|
COMMENTED TEMPORARLY WHILE PROJECT IS MIGRATED TO EMBARK - @rramos
|
|
|
|
|
|
|
|
|
2018-03-01 15:42:44 +00:00
|
|
|
const TestUtils = require("../utils/testUtils.js")
|
|
|
|
const idUtils = require("../utils/identityUtils.js")
|
2018-02-28 18:35:15 +00:00
|
|
|
const web3EthAbi = require("web3-eth-abi");
|
|
|
|
|
2018-02-28 14:18:00 +00:00
|
|
|
const Identity = artifacts.require("./identity/Identity.sol");
|
|
|
|
const IdentityFactory = artifacts.require("./identity/IdentityFactory.sol");
|
2018-02-28 15:47:59 +00:00
|
|
|
const UpdatableInstance = artifacts.require('./deploy/UpdatableInstance.sol');
|
|
|
|
const UpdatedIdentityKernel = artifacts.require("./tests/UpdatedIdentityKernel.sol");
|
2018-02-28 14:18:00 +00:00
|
|
|
|
|
|
|
contract('IdentityFactory', function(accounts) {
|
|
|
|
|
|
|
|
let identityFactory;
|
2018-02-28 15:47:59 +00:00
|
|
|
let identity;
|
|
|
|
let updatedIdentity;
|
|
|
|
let updatedIdentityKernel;
|
2018-02-28 14:18:00 +00:00
|
|
|
|
2018-02-28 15:47:59 +00:00
|
|
|
before(async () => {
|
|
|
|
identityFactory = await IdentityFactory.new("0xaaa", {from: accounts[0]});
|
2018-02-28 14:18:00 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
describe("IdentityFactory()", () => {
|
2018-02-28 15:47:59 +00:00
|
|
|
it("Creates a new identity", async () => {
|
|
|
|
let tx = await identityFactory.createIdentity({from: accounts[0]});
|
|
|
|
const logEntry = tx.logs[0];
|
|
|
|
assert.strictEqual(logEntry.event, "IdentityCreated");
|
2018-02-28 14:18:00 +00:00
|
|
|
|
2018-02-28 15:47:59 +00:00
|
|
|
identity = await Identity.at(logEntry.args.instance, {from: accounts[0]})
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
await identity.getKeyPurpose(TestUtils.addressToBytes32(accounts[0])),
|
2018-03-01 15:42:44 +00:00
|
|
|
idUtils.purposes.MANAGEMENT,
|
2018-02-28 15:47:59 +00:00
|
|
|
identity.address + ".getKeyPurpose("+accounts[0]+") is not MANAGEMENT_KEY")
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it("Registers a updated identity contract", async() => {
|
2018-03-01 15:42:44 +00:00
|
|
|
const infoHash = "0xbbb";
|
2018-02-28 15:47:59 +00:00
|
|
|
updatedIdentityKernel = await UpdatedIdentityKernel.new({from: accounts[0]});
|
2018-03-01 15:42:44 +00:00
|
|
|
await identityFactory.setKernel(updatedIdentityKernel.address, infoHash);
|
|
|
|
|
|
|
|
const newKernel = await TestUtils.listenForEvent(identityFactory.NewKernel());
|
|
|
|
assert(newKernel.infohash, infoHash, "Infohash is not correct");
|
2018-02-28 15:47:59 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it("Creates a new identity using latest version", async() => {
|
|
|
|
let tx = await identityFactory.createIdentity({from: accounts[0]});
|
|
|
|
const logEntry = tx.logs[0];
|
|
|
|
assert.strictEqual(logEntry.event, "IdentityCreated");
|
2018-02-28 14:18:00 +00:00
|
|
|
|
2018-02-28 15:47:59 +00:00
|
|
|
updatedIdentity = await UpdatedIdentityKernel.at(logEntry.args.instance, {from: accounts[0]})
|
|
|
|
tx = await updatedIdentity.test({from: accounts[0]});
|
|
|
|
assert.strictEqual(tx.logs[0].event, "TestFunctionExecuted");
|
|
|
|
|
|
|
|
// Test if it still executes identity functions as expected
|
|
|
|
let baseIdentity = await Identity.at(updatedIdentity.address, {from: accounts[0]})
|
|
|
|
assert.equal(
|
|
|
|
await identity.getKeyPurpose(TestUtils.addressToBytes32(accounts[0])),
|
|
|
|
1,
|
|
|
|
identity.address + ".getKeyPurpose("+accounts[0]+") is not MANAGEMENT_KEY")
|
2018-02-28 14:18:00 +00:00
|
|
|
});
|
|
|
|
|
2018-02-28 15:47:59 +00:00
|
|
|
|
|
|
|
it("Updates an identity to the latest version", async() => {
|
2018-03-01 15:42:44 +00:00
|
|
|
let tx1 = await identity.execute(
|
|
|
|
identity.address,
|
|
|
|
0,
|
|
|
|
idUtils.encode.updateUpdatableInstance(updatedIdentityKernel.address),
|
|
|
|
{from: accounts[0]}
|
|
|
|
);
|
2018-02-28 18:35:15 +00:00
|
|
|
assert.strictEqual(tx1.logs[tx1.logs.length - 1].event, "Executed");
|
2018-02-28 15:47:59 +00:00
|
|
|
|
2018-02-28 18:35:15 +00:00
|
|
|
// Calling function available in updated identity kernel
|
|
|
|
let updatedIdentity1 = await UpdatedIdentityKernel.at(identity.address, {from: accounts[0]})
|
|
|
|
let tx2 = await updatedIdentity1.test({from: accounts[0]});
|
2018-02-28 15:47:59 +00:00
|
|
|
|
2018-02-28 18:35:15 +00:00
|
|
|
assert.strictEqual(tx2.logs[tx2.logs.length - 1].event, "TestFunctionExecuted");
|
|
|
|
assert.equal(
|
|
|
|
tx2.logs[tx2.logs.length - 1].args.minApprovalsByManagementKeys.toString(10),
|
|
|
|
1,
|
|
|
|
identity.address + " wasn't updated to last version");
|
|
|
|
})
|
2018-02-28 14:18:00 +00:00
|
|
|
});
|
|
|
|
|
2018-03-13 14:13:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
*/
|