Esempio n. 1
0
        public async Task ValidateConnectingFund_decimalMismatch()
        {
            //deploy a fund instance, but do no tests, that's something for the fund test suite
            Fund _FundContract;

            _FundContract = await Fund.New(_contract.ContractAddress, RpcClient);

            //make new price index but with other decimals
            // Deploy our test contract
            Meadow.Core.EthTypes.UInt256 fiatDecimals2 = 5;
            PriceIndex _contract2 = await PriceIndex.New(initPrice, "meadowInit", 4, (byte)fiatDecimals2, "BTC", "USD", RpcClient);

            //connect fund
            var txParams = new TransactionParams {
                From = Accounts[0]
            };                                                           // admin
            await _contract2.connectFund(_FundContract.ContractAddress).SendTransaction(txParams);
        }
Esempio n. 2
0
        public async Task ValidateConnectingFundNoMax()
        {
            //deploy a fund instance, but do no tests, that's something for the fund test suite
            Fund _FundContract;

            _FundContract = await Fund.New(_contract.ContractAddress, RpcClient);

            //connect fund
            var txParams = new TransactionParams {
                From = Accounts[0]
            };                                                           // admin
            await _contract.connectFund(_FundContract.ContractAddress).SendTransaction(txParams);

            //validate number of connected funds
            var numberOfConnectedFunds = await _contract.numberOfConnectedFunds().Call();

            Assert.AreEqual(1, numberOfConnectedFunds);

            //validate fund info
            var fundInfo = await _contract.funds(_FundContract.ContractAddress).Call();

            Assert.AreEqual(_FundContract.ContractAddress, fundInfo.fund);
            Assert.AreEqual(false, fundInfo.endPriceConditionsReached);
            Assert.AreEqual(0, fundInfo.endPrice); //default of 0 since it hasn't ended
            Assert.AreEqual(initPrice, fundInfo.strikePrice);

            var fundAddress = await _contract.getConnectedFundAddress(0).Call();

            Assert.AreEqual(_FundContract.ContractAddress, fundAddress);

            var hasFundEnded = await _contract.hasFundEnded(_FundContract.ContractAddress).Call();

            Assert.AreEqual(false, hasFundEnded);
        }