Separate Node storage from Node Rules (#219)

* separate node storage from rules

* updated version number of rules

Signed-off-by: Sally MacFarlane <sally.macfarlane@consensys.net>
pull/235/head v2.0.2
Sally MacFarlane 3 years ago committed by GitHub
parent c84e9b8d0f
commit 18caafe0d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      README.md
  2. 7
      contracts/ExposedNodeRulesList.sol
  3. 12
      contracts/NodeRules.sol
  4. 50
      contracts/NodeRulesList.sol
  5. 104
      contracts/NodeStorage.sol
  6. 30
      migrations/3_deploy_node_ingress_rules_contract.js
  7. 2
      package.json
  8. 49
      test/test-node-ingress-proxy.js
  9. 27
      test/test-node-ingress.js
  10. 13
      test/test-node-rules-events.js
  11. 21
      test/test-node-rules-list.js
  12. 16
      test/test-node-rules-permissioning.js
  13. 12
      test/test-node-rules-read-only-mode.js

@ -40,7 +40,7 @@ ONLY use these instructions if you are doing development work on the Dapp itself
This is the easiest way to get started for development with the permissioning Dapp: This is the easiest way to get started for development with the permissioning Dapp:
#### Compile and migrate the contracts (Development mode) #### #### Compile and migrate the contracts (Development mode) ####
1. Delete your environment variables named `NODE_INGRESS_CONTRACT_ADDRESS`, `ACCOUNT_INGRESS_CONTRACT_ADDRESS`, `ACCOUNT_STORAGE_CONTRACT_ADDRESS` AND 1. Delete your environment variables named `NODE_INGRESS_CONTRACT_ADDRESS`, `ACCOUNT_INGRESS_CONTRACT_ADDRESS`, `ACCOUNT_STORAGE_CONTRACT_ADDRESS`, `NODE_STORAGE_CONTRACT_ADDRESS` AND
`CHAIN_ID` - you might need to restart your terminal session to have your changes applied. If you are using a `.env` file, you can comment out the variables. `CHAIN_ID` - you might need to restart your terminal session to have your changes applied. If you are using a `.env` file, you can comment out the variables.
1. Start a terminal session and start a Truffle Ganache node running `truffle develop`. This will start a Ganache node and create a Truffle console session. 1. Start a terminal session and start a Truffle Ganache node running `truffle develop`. This will start a Ganache node and create a Truffle console session.
1. In the truffle console, run all migrations from scratch with `migrate --reset`. Keep this terminal session open to maintain your Ganache node running. 1. In the truffle console, run all migrations from scratch with `migrate --reset`. Keep this terminal session open to maintain your Ganache node running.

@ -1,11 +1,16 @@
pragma solidity 0.5.9; pragma solidity 0.5.9;
import "./NodeRulesList.sol"; import "./NodeRulesList.sol";
import "./NodeStorage.sol";
contract ExposedNodeRulesList is NodeRulesList { contract ExposedNodeRulesList is NodeRulesList {
function _calculateKey(string calldata _enodeId, string calldata _host, uint16 _port) external pure returns(uint256) { function _setStorage(NodeStorage _storage) public {
return setStorage(_storage);
}
function _calculateKey(string calldata _enodeId, string calldata _host, uint16 _port) external view returns(uint256) {
return calculateKey(_enodeId, _host, _port); return calculateKey(_enodeId, _host, _port);
} }

@ -26,7 +26,7 @@ contract NodeRules is NodeRulesProxy, NodeRulesList {
// this will be used to protect data when upgrading contracts // this will be used to protect data when upgrading contracts
bool private readOnlyMode = false; bool private readOnlyMode = false;
// version of this contract: semver like 1.2.14 represented like 001002014 // version of this contract: semver like 1.2.14 represented like 001002014
uint private version = 1000000; uint private version = 3000000;
NodeIngress private nodeIngressContract; NodeIngress private nodeIngressContract;
@ -43,7 +43,8 @@ contract NodeRules is NodeRulesProxy, NodeRulesList {
_; _;
} }
constructor (NodeIngress _nodeIngressAddress) public { constructor (NodeIngress _nodeIngressAddress, NodeStorage _storage) public {
setStorage(_storage);
nodeIngressContract = _nodeIngressAddress; nodeIngressContract = _nodeIngressAddress;
} }
@ -134,13 +135,6 @@ contract NodeRules is NodeRulesProxy, NodeRulesList {
return size(); return size();
} }
function getByIndex(uint index) external view returns (string memory enodeId, string memory host, uint16 port) {
if (index >= 0 && index < size()) {
enode memory item = allowlist[index];
return (item.enodeId, item.host, item.port);
}
}
function triggerRulesChangeEvent(bool addsRestrictions) public { function triggerRulesChangeEvent(bool addsRestrictions) public {
nodeIngressContract.emitRulesChangeEvent(addsRestrictions); nodeIngressContract.emitRulesChangeEvent(addsRestrictions);
} }

@ -1,5 +1,6 @@
pragma solidity 0.5.9; pragma solidity 0.5.9;
import "./NodeStorage.sol";
contract NodeRulesList { contract NodeRulesList {
@ -11,48 +12,37 @@ contract NodeRulesList {
uint16 port; uint16 port;
} }
enode[] public allowlist; NodeStorage private nodeStorage;
mapping (uint256 => uint256) private indexOf; //1-based indexing. 0 means non-existent
function calculateKey(string memory _enodeId, string memory _host, uint16 _port) internal pure returns(uint256) { function setStorage(NodeStorage _storage) internal {
return uint256(keccak256(abi.encodePacked(_enodeId, _host, _port))); nodeStorage = _storage;
}
function upgradeVersion(address _newVersion) internal {
nodeStorage.upgradeVersion(_newVersion);
} }
function size() internal view returns (uint256) { function size() internal view returns (uint256) {
return allowlist.length; return nodeStorage.size();
} }
function exists(string memory _enodeId, string memory _host, uint16 _port) internal view returns (bool) { function exists(string memory _enodeId, string memory _host, uint16 _port) internal view returns (bool) {
return indexOf[calculateKey(_enodeId, _host, _port)] != 0; return nodeStorage.exists(_enodeId, _host, _port);
} }
function add(string memory _enodeId, string memory _host, uint16 _port) internal returns (bool) { function add(string memory _enodeId, string memory _host, uint16 _port) internal returns (bool) {
uint256 key = calculateKey(_enodeId, _host, _port); return nodeStorage.add(_enodeId, _host, _port);
if (indexOf[key] == 0) {
indexOf[key] = allowlist.push(enode(_enodeId, _host, _port));
return true;
}
return false;
} }
function remove(string memory _enodeId, string memory _host, uint16 _port) internal returns (bool) { function remove(string memory _enodeId, string memory _host, uint16 _port) internal returns (bool) {
uint256 key = calculateKey(_enodeId, _host, _port); return nodeStorage.remove(_enodeId, _host, _port);
uint256 index = indexOf[key]; }
if (index > 0 && index <= allowlist.length) { //1 based indexing function calculateKey(string memory _enodeId, string memory _host, uint16 _port) public view returns(uint256) {
//move last item into index being vacated (unless we are dealing with last index) return nodeStorage.calculateKey(_enodeId, _host, _port);
if (index != allowlist.length) { }
enode memory lastEnode = allowlist[allowlist.length - 1];
allowlist[index - 1] = lastEnode; function getByIndex(uint index) external view returns (string memory enodeId, string memory host, uint16 port) {
indexOf[calculateKey(lastEnode.enodeId, lastEnode.host, lastEnode.port)] = index; return nodeStorage.getByIndex(index);
}
//shrink array
allowlist.length -= 1; // mythx-disable-line SWC-101
indexOf[key] = 0;
return true;
}
return false;
} }
} }

@ -0,0 +1,104 @@
pragma solidity 0.5.9;
import "./Admin.sol";
import "./NodeIngress.sol";
contract NodeStorage {
event VersionChange(
address oldAddress,
address newAddress
);
// initialize this to the deployer of this contract
address private latestVersion = msg.sender;
address private owner = msg.sender;
NodeIngress private ingressContract;
// struct size = 82 bytes
struct enode {
string enodeId;
string ip;
uint16 port;
}
enode[] public allowlist;
mapping (uint256 => uint256) private indexOf; //1-based indexing. 0 means non-existent
constructor (NodeIngress _ingressContract) public {
ingressContract = _ingressContract;
}
modifier onlyLatestVersion() {
require(msg.sender == latestVersion, "only the latestVersion can modify the list");
_;
}
modifier onlyAdmin() {
if (address(0) == address(ingressContract)) {
require(msg.sender == owner, "only owner permitted since ingressContract is explicitly set to zero");
} else {
address adminContractAddress = ingressContract.getContractAddress(ingressContract.ADMIN_CONTRACT());
require(adminContractAddress != address(0), "Ingress contract must have Admin contract registered");
require(Admin(adminContractAddress).isAuthorized(msg.sender), "Sender not authorized");
}
_;
}
function upgradeVersion(address _newVersion) public onlyAdmin {
emit VersionChange(latestVersion, _newVersion);
latestVersion = _newVersion;
}
function size() public view returns (uint256) {
return allowlist.length;
}
function exists(string memory _enodeId, string memory _ip, uint16 _port) public view returns (bool) {
return indexOf[calculateKey(_enodeId, _ip, _port)] != 0;
}
function add(string memory _enodeId, string memory _ip, uint16 _port) public returns (bool) {
uint256 key = calculateKey(_enodeId, _ip, _port);
if (indexOf[key] == 0) {
indexOf[key] = allowlist.push(enode(_enodeId, _ip, _port));
return true;
}
return false;
}
function remove(string memory _enodeId, string memory _ip, uint16 _port) public returns (bool) {
uint256 key = calculateKey(_enodeId, _ip, _port);
uint256 index = indexOf[key];
if (index > 0 && index <= allowlist.length) { //1 based indexing
//move last item into index being vacated (unless we are dealing with last index)
if (index != allowlist.length) {
enode memory lastEnode = allowlist[allowlist.length - 1];
allowlist[index - 1] = lastEnode;
indexOf[calculateKey(lastEnode.enodeId, lastEnode.ip, lastEnode.port)] = index;
}
//shrink array
allowlist.length -= 1; // mythx-disable-line SWC-101
indexOf[key] = 0;
return true;
}
return false;
}
function getByIndex(uint index) external view returns (string memory enodeId, string memory ip, uint16 port) {
if (index >= 0 && index < size()) {
enode memory item = allowlist[index];
return (item.enodeId, item.ip, item.port);
}
}
function calculateKey(string memory _enodeId, string memory _ip, uint16 _port) public pure returns(uint256) {
return uint256(keccak256(abi.encodePacked(_enodeId, _ip, _port)));
}
}

@ -1,8 +1,9 @@
const Web3Utils = require("web3-utils"); const Web3Utils = require("web3-utils");
const AllowlistUtils = require('../scripts/allowlist_utils'); const AllowlistUtils = require('../scripts/allowlist_utils');
const NodeRules = artifacts.require("./NodeRules.sol"); const Rules = artifacts.require("./NodeRules.sol");
const NodeIngress = artifacts.require("./NodeIngress.sol"); const NodeIngress = artifacts.require("./NodeIngress.sol");
const NodeStorage = artifacts.require("./NodeStorage.sol");
const Admin = artifacts.require("./Admin.sol"); const Admin = artifacts.require("./Admin.sol");
const adminContractName = Web3Utils.utf8ToHex("administration"); const adminContractName = Web3Utils.utf8ToHex("administration");
@ -10,6 +11,8 @@ const rulesContractName = Web3Utils.utf8ToHex("rules");
/* The address of the node ingress contract if pre deployed */ /* The address of the node ingress contract if pre deployed */
let nodeIngress = process.env.NODE_INGRESS_CONTRACT_ADDRESS; let nodeIngress = process.env.NODE_INGRESS_CONTRACT_ADDRESS;
/* The address of the node storage contract if pre deployed */
let nodeStorage = process.env.NODE_STORAGE_CONTRACT_ADDRESS;
let retainCurrentRulesContract = AllowlistUtils.getRetainNodeRulesContract(); let retainCurrentRulesContract = AllowlistUtils.getRetainNodeRulesContract();
async function logCurrentAllowlist(instance) { async function logCurrentAllowlist(instance) {
@ -51,14 +54,29 @@ module.exports = async(deployer, network) => {
await nodeIngressInstance.setContractAddress(adminContractName, admin.address); await nodeIngressInstance.setContractAddress(adminContractName, admin.address);
console.log(" > Updated NodeIngress with Admin address = " + admin.address); console.log(" > Updated NodeIngress with Admin address = " + admin.address);
await deployer.deploy(NodeRules, nodeIngress); // STORAGE
console.log(" > NodeRules deployed with NodeIngress.address = " + nodeIngress); var storageInstance;
let nodeRulesContract = await NodeRules.deployed(); if (! nodeStorage) {
// Only deploy if we haven't been provided a pre-deployed address
storageInstance = await deployer.deploy(NodeStorage, nodeIngress);
console.log(" > Deployed NodeStorage contract to address = " + NodeStorage.address);
nodeStorage = NodeStorage.address;
} else {
// is there a storage already deployed
storageInstance = await NodeStorage.at(nodeStorage);
console.log(">>> Using existing NodeStorage " + storageInstance.address);
// TODO check that this contract is a storage contract eg call a method
}
// rules -> storage
await deployer.deploy(Rules, nodeIngress, nodeStorage);
console.log(" > Rules deployed with NodeIngress.address = " + nodeIngress + "\n > and storageAddress = " + nodeStorage);
console.log(" > Rules.address " + Rules.address);
let nodeRulesContract = await Rules.deployed();
await nodeIngressInstance.setContractAddress(rulesContractName, NodeRules.address); await nodeIngressInstance.setContractAddress(rulesContractName, Rules.address);
console.log(" > Updated NodeIngress contract with NodeRules address = " + NodeRules.address); console.log(" > Updated NodeIngress contract with NodeRules address = " + Rules.address);
if(AllowlistUtils.isInitialAllowlistedNodesAvailable()) { if(AllowlistUtils.isInitialAllowlistedNodesAvailable()) {
console.log(" > Adding Initial Allowlisted eNodes ..."); console.log(" > Adding Initial Allowlisted eNodes ...");

@ -113,7 +113,7 @@
] ]
}, },
"description": "Smart contracts and dapp implementing EEA spec onchain permissioning", "description": "Smart contracts and dapp implementing EEA spec onchain permissioning",
"version": "2.0.2", "version": "2.1.0",
"main": "README.md", "main": "README.md",
"directories": { "directories": {
"test": "test" "test": "test"

@ -1,6 +1,7 @@
const NodeIngress = artifacts.require('NodeIngress.sol'); const NodeIngress = artifacts.require('NodeIngress.sol');
const NodeRules = artifacts.require('NodeRules.sol'); const NodeRules = artifacts.require('NodeRules.sol');
const Admin = artifacts.require('Admin.sol'); const Admin = artifacts.require('Admin.sol');
const RulesStorage = artifacts.require('NodeStorage.sol');
const RULES='0x72756c6573000000000000000000000000000000000000000000000000000000'; const RULES='0x72756c6573000000000000000000000000000000000000000000000000000000';
const ADMIN='0x61646d696e697374726174696f6e000000000000000000000000000000000000'; const ADMIN='0x61646d696e697374726174696f6e000000000000000000000000000000000000';
@ -15,13 +16,22 @@ contract ('NodeIngress (proxying permissioning check to rules contract)', () =>
let nodeIngressContract; let nodeIngressContract;
let nodeRulesContract; let nodeRulesContract;
let adminContract; let adminContract;
let storageContract;
beforeEach(async () => { beforeEach(async () => {
nodeIngressContract = await NodeIngress.new(); nodeIngressContract = await NodeIngress.new();
adminContract = await Admin.new(); adminContract = await Admin.new();
// set the storage
storageContract = await RulesStorage.new(nodeIngressContract.address);
console.log(" >>> Storage contract deployed with address = " + storageContract.address);
await nodeIngressContract.setContractAddress(ADMIN, adminContract.address); await nodeIngressContract.setContractAddress(ADMIN, adminContract.address);
nodeRulesContract = await NodeRules.new(nodeIngressContract.address); nodeRulesContract = await NodeRules.new(nodeIngressContract.address, storageContract.address);
// set rules as the storage owner
await storageContract.upgradeVersion(nodeRulesContract.address);
console.log(" >>> Set storage owner to Rules.address");
result = await nodeIngressContract.getContractAddress(ADMIN); result = await nodeIngressContract.getContractAddress(ADMIN);
assert.equal(result, adminContract.address, 'Admin contract should be reg'); assert.equal(result, adminContract.address, 'Admin contract should be reg');
@ -56,29 +66,46 @@ contract ('NodeIngress (proxying permissioning check to rules contract)', () =>
assert.equal(result, result2, "Call and proxy call did NOT return the same value"); assert.equal(result, result2, "Call and proxy call did NOT return the same value");
}); });
it('Should permit changing active NodeRules contract addresses', async () => { it('Should permit changing active NodeRules contract addresses WHILE keeping existing storage', async () => {
let result; let result;
let result2;
// const icProxy = await NodeIngress.new();
const rcProxy1 = await NodeRules.new(nodeIngressContract.address);
const rcProxy2 = await NodeRules.new(nodeIngressContract.address);
// Verify that the NodeRules contract has not been registered // Verify that the NodeRules contract has not been registered
result = await nodeIngressContract.getContractAddress(RULES); result = await nodeIngressContract.getContractAddress(RULES);
assert.equal(result, "0x0000000000000000000000000000000000000000", 'NodeRules contract should NOT already be registered'); assert.equal(result, "0x0000000000000000000000000000000000000000", 'NodeRules contract should NOT already be registered');
// Register the initial NodeRules contract // Register the initial NodeRules contract
await nodeIngressContract.setContractAddress(RULES, nodeRulesContract.address);
// Verify the initial rules contract has been registered
result = await nodeIngressContract.getContractAddress(RULES);
assert.equal(result, nodeRulesContract.address, 'Initial contract has NOT been registered correctly');
// Add the Enode to the NodeRules register
result = await nodeRulesContract.addEnode(enode1, node1Host, node1Port);
// Verify that the node is permitted
result = await nodeIngressContract.connectionAllowed(enode1, node1Host, node1Port);
assert.equal(result, true, "Connection SHOULD be allowed after Enodes have been registered");
// create a NEW Rules contract
const rcProxy1 = await NodeRules.new(nodeIngressContract.address, storageContract.address);
// existing rules calls upgrade to change storage owner to the new one
storageContract.upgradeVersion(rcProxy1.address);
// Register the NEW NodeRules contract
await nodeIngressContract.setContractAddress(RULES, rcProxy1.address); await nodeIngressContract.setContractAddress(RULES, rcProxy1.address);
// Verify the initial rules contract has been registered // Verify the NEW rules contract has been registered
result = await nodeIngressContract.getContractAddress(RULES); result = await nodeIngressContract.getContractAddress(RULES);
assert.equal(result, rcProxy1.address, 'Initial contract has NOT been registered correctly'); assert.equal(result, rcProxy1.address, 'NEW Rules contract has NOT been registered correctly');
// Verify that the newly registered contract is the initial version // Verify that the newly registered contract is the correct version
let contract = await NodeRules.at(result); let contract = await NodeRules.at(result);
result = await contract.getContractVersion(); result = await contract.getContractVersion();
assert.equal(web3.utils.toDecimal(result), 1000000, 'Initial contract is NOT the correct version'); assert.equal(web3.utils.toDecimal(result), 3000000, 'Rules contract is NOT the correct version');
// Verify that the node is permitted
result = await nodeIngressContract.connectionAllowed(enode1, node1Host, node1Port);
assert.equal(result, true, "Connection SHOULD be allowed after Enodes have been registered");
}); });
}); });

@ -1,6 +1,7 @@
const NodeIngressContract = artifacts.require("NodeIngress.sol"); const NodeIngressContract = artifacts.require("NodeIngress.sol");
const NodeRulesContract = artifacts.require("NodeRules.sol"); const NodeRules = artifacts.require("NodeRules.sol");
const AdminContract = artifacts.require("Admin.sol"); const AdminContract = artifacts.require("Admin.sol");
const RulesStorage = artifacts.require('NodeStorage.sol');
const RULES="0x72756c6573000000000000000000000000000000000000000000000000000000"; const RULES="0x72756c6573000000000000000000000000000000000000000000000000000000";
const ADMIN="0x61646d696e697374726174696f6e000000000000000000000000000000000000"; const ADMIN="0x61646d696e697374726174696f6e000000000000000000000000000000000000";
@ -16,12 +17,18 @@ contract ("Node Ingress (no contracts registered)", (accounts) => {
let nodeIngressContract; let nodeIngressContract;
let nodeRulesContract; let nodeRulesContract;
let adminContract; let adminContract;
let storageContract;
beforeEach("create a new contract for each test", async () => { beforeEach("create a new contract for each test", async () => {
nodeIngressContract = await NodeIngressContract.new(); nodeIngressContract = await NodeIngressContract.new();
adminContract = await AdminContract.new(); adminContract = await AdminContract.new();
nodeRulesContract = await NodeRulesContract.new(nodeIngressContract.address);
}) // set the storage
storageContract = await RulesStorage.new(nodeIngressContract.address);
console.log(" >>> Storage contract deployed with address = " + storageContract.address);
nodeRulesContract = await NodeRules.new(nodeIngressContract.address, storageContract.address);
})
it("should forbid any connection if rules contract has not been registered", async () => { it("should forbid any connection if rules contract has not been registered", async () => {
result = await nodeIngressContract.getContractAddress(RULES); result = await nodeIngressContract.getContractAddress(RULES);
@ -161,13 +168,23 @@ contract("Ingress contract", (accounts) => {
let nodeIngressContract; let nodeIngressContract;
let nodeRulesContract; let nodeRulesContract;
let adminContract; let adminContract;
let storageContract;
beforeEach("Setup contract registry", async () => { beforeEach("Setup contract registry", async () => {
nodeIngressContract = await NodeIngressContract.new(); nodeIngressContract = await NodeIngressContract.new();
adminContract = await AdminContract.new(); adminContract = await AdminContract.new();
await nodeIngressContract.setContractAddress(ADMIN, adminContract.address); await nodeIngressContract.setContractAddress(ADMIN, adminContract.address);
nodeRulesContract = await NodeRulesContract.new(nodeIngressContract.address);
// set the storage
storageContract = await RulesStorage.new(nodeIngressContract.address);
console.log(" >>> Storage contract deployed with address = " + storageContract.address);
nodeRulesContract = await NodeRules.new(nodeIngressContract.address, storageContract.address);
await nodeIngressContract.setContractAddress(RULES, nodeRulesContract.address); await nodeIngressContract.setContractAddress(RULES, nodeRulesContract.address);
// set rules as the storage owner
await storageContract.upgradeVersion(nodeRulesContract.address);
console.log(" >>> Set storage owner to Rules.address");
}) })
it("Should not allow an unauthorized account to perform administration operations", async () => { it("Should not allow an unauthorized account to perform administration operations", async () => {
@ -262,7 +279,7 @@ contract("Ingress contract", (accounts) => {
it("Should only trigger NodeRules update events when issued from NodeRules contract", async () => { it("Should only trigger NodeRules update events when issued from NodeRules contract", async () => {
let result; let result;
const acProxy = await NodeRulesContract.new(nodeIngressContract.address); const acProxy = await NodeRules.new(nodeIngressContract.address, storageContract.address);
// Register the contracts // Register the contracts
await nodeIngressContract.setContractAddress(RULES, nodeRulesContract.address); await nodeIngressContract.setContractAddress(RULES, nodeRulesContract.address);

@ -1,5 +1,6 @@
const NodeIngressContract = artifacts.require('NodeIngress.sol'); const NodeIngressContract = artifacts.require('NodeIngress.sol');
const NodeRulesContract = artifacts.require('NodeRules.sol'); const NodeRules = artifacts.require('NodeRules.sol');
const RulesStorage = artifacts.require('NodeStorage.sol');
const AdminContract = artifacts.require('Admin.sol'); const AdminContract = artifacts.require('Admin.sol');
// Contract keys // Contract keys
@ -24,8 +25,16 @@ contract("NodeRules (Events)", () => {
adminContract = await AdminContract.new(); adminContract = await AdminContract.new();
await nodeIngressContract.setContractAddress(ADMIN_NAME, adminContract.address); await nodeIngressContract.setContractAddress(ADMIN_NAME, adminContract.address);
nodeRulesContract = await NodeRulesContract.new(nodeIngressContract.address); // set the storage
storageContract = await RulesStorage.new(nodeIngressContract.address);
console.log(" >>> Storage contract deployed with address = " + storageContract.address);
nodeRulesContract = await NodeRules.new(nodeIngressContract.address, storageContract.address);
await nodeIngressContract.setContractAddress(RULES_NAME, nodeRulesContract.address); await nodeIngressContract.setContractAddress(RULES_NAME, nodeRulesContract.address);
// set rules as the storage owner
await storageContract.upgradeVersion(nodeRulesContract.address);
console.log(" >>> Set storage owner to Rules.address");
}) })
it('should emit events when node added', async () => { it('should emit events when node added', async () => {

@ -1,5 +1,8 @@
const BN = web3.utils.BN; const BN = web3.utils.BN;
const NodeRulesList = artifacts.require('ExposedNodeRulesList.sol'); const { AddressZero } = require("ethers/constants");
const RulesList = artifacts.require('ExposedNodeRulesList.sol');
const RulesStorage = artifacts.require('NodeStorage.sol');
const enode1 = "9bd359fdc3a2ed5df436c3d8914b1532740128929892092b7fcb320c1b62f375" const enode1 = "9bd359fdc3a2ed5df436c3d8914b1532740128929892092b7fcb320c1b62f375"
+ "2e1092b7fcb320c1b62f3759bd359fdc3a2ed5df436c3d8914b1532740128929"; + "2e1092b7fcb320c1b62f3759bd359fdc3a2ed5df436c3d8914b1532740128929";
@ -19,7 +22,15 @@ contract("NodeRulesList (list manipulation)", async () => {
let rulesListContract; let rulesListContract;
beforeEach(async () => { beforeEach(async () => {
rulesListContract = await NodeRulesList.new(); rulesListContract = await RulesList.new();
// initialize the storage
storageContract = await RulesStorage.new(AddressZero);
console.log(" >>> Storage contract deployed with address = " + storageContract.address);
// set rules -> storage
rulesListContract._setStorage(storageContract.address);
// set rules as the storage owner: storage -> rules
await storageContract.upgradeVersion(rulesListContract.address);
console.log(" >>> Set storage owner to Rules.address " + rulesListContract.address);
}); });
it("should calculate same key for same enode", async () => { it("should calculate same key for same enode", async () => {
@ -119,10 +130,4 @@ contract("NodeRulesList (list manipulation)", async () => {
exists = await rulesListContract._exists(enode1, node1Host, node1Port); exists = await rulesListContract._exists(enode1, node1Host, node1Port);
assert.notOk(exists); assert.notOk(exists);
}); });
it("get by index on empty list should return undefined", async () => {
let node = await rulesListContract.allowlist[0];
assert.isUndefined(node);
});
}); });

@ -1,5 +1,6 @@
const NodeIngressContract = artifacts.require('NodeIngress.sol'); const NodeIngressContract = artifacts.require('NodeIngress.sol');
const NodeRulesContract = artifacts.require('NodeRules.sol'); const NodeRules = artifacts.require('NodeRules.sol');
const RulesStorage = artifacts.require('NodeStorage.sol');
const AdminContract = artifacts.require('Admin.sol'); const AdminContract = artifacts.require('Admin.sol');
// Contract keys // Contract keys
@ -27,6 +28,7 @@ contract("NodeRules (Permissioning)", (accounts) => {
let nodeIngressContract; let nodeIngressContract;
let nodeRulesContract; let nodeRulesContract;
let adminContract; let adminContract;
let storageContract;
before(async () => { before(async () => {
nodeIngressContract = await NodeIngressContract.new(); nodeIngressContract = await NodeIngressContract.new();
@ -34,8 +36,16 @@ contract("NodeRules (Permissioning)", (accounts) => {
adminContract = await AdminContract.new(); adminContract = await AdminContract.new();
await nodeIngressContract.setContractAddress(ADMIN_NAME, adminContract.address); await nodeIngressContract.setContractAddress(ADMIN_NAME, adminContract.address);
nodeRulesContract = await NodeRulesContract.new(nodeIngressContract.address); // set the storage
storageContract = await RulesStorage.new(nodeIngressContract.address);
console.log(" >>> Storage contract deployed with address = " + storageContract.address);
nodeRulesContract = await NodeRules.new(nodeIngressContract.address, storageContract.address);
await nodeIngressContract.setContractAddress(RULES_NAME, nodeRulesContract.address); await nodeIngressContract.setContractAddress(RULES_NAME, nodeRulesContract.address);
// set rules as the storage owner
await storageContract.upgradeVersion(nodeRulesContract.address);
console.log(" >>> Set storage owner to Rules.address");
}); });
it('should NOT permit node when list is empty', async () => { it('should NOT permit node when list is empty', async () => {
@ -113,7 +123,7 @@ contract("NodeRules (Permissioning)", (accounts) => {
} }
}); });
it('should not allow non-admin account to remove node to list', async () => { it('should not allow non-admin account to remove node from list', async () => {
try { try {
await nodeRulesContract.addEnode(enode1, node1Host, node1Port, { from: accounts[1] }); await nodeRulesContract.addEnode(enode1, node1Host, node1Port, { from: accounts[1] });
expect.fail(null, null, "Modifier was not enforced") expect.fail(null, null, "Modifier was not enforced")

@ -1,5 +1,6 @@
const NodeIngress = artifacts.require('NodeIngress.sol'); const NodeIngress = artifacts.require('NodeIngress.sol');
const NodeRules = artifacts.require('NodeRules.sol'); const NodeRules = artifacts.require('NodeRules.sol');
const RulesStorage = artifacts.require('NodeStorage.sol');
const Admin = artifacts.require('Admin.sol'); const Admin = artifacts.require('Admin.sol');
var enode1 = "9bd359fdc3a2ed5df436c3d8914b1532740128929892092b7fcb320c1b62f375" var enode1 = "9bd359fdc3a2ed5df436c3d8914b1532740128929892092b7fcb320c1b62f375"
@ -17,7 +18,16 @@ contract('NodeRules (Read-only mode)', () => {
beforeEach(async () => { beforeEach(async () => {
nodeIngressContract = await NodeIngress.deployed(); nodeIngressContract = await NodeIngress.deployed();
nodeRulesContract = await NodeRules.new(NodeIngress.address);
// set the storage
storageContract = await RulesStorage.new(nodeIngressContract.address);
console.log(" >>> Storage contract deployed with address = " + storageContract.address);
nodeRulesContract = await NodeRules.new(nodeIngressContract.address, storageContract.address);
// set rules as the storage owner
await storageContract.upgradeVersion(nodeRulesContract.address);
console.log(" >>> Set storage owner to Rules.address");
}) })
it("should toggle read-only flag on enter/exit read-mode method invocation", async () => { it("should toggle read-only flag on enter/exit read-mode method invocation", async () => {

Loading…
Cancel
Save