Commit d853238b authored by Sergei Zubov's avatar Sergei Zubov

Fix tests

parent 07ea7d89
......@@ -17,14 +17,6 @@ namespace DeStream.Stratis.Bitcoin.Configuration
/// </summary>
public class DeStreamNodeSettings : NodeSettings
{
/// <summary>
/// Returns default data root directory name
/// </summary>
protected override string DataRootDirName
{
get { return "DeStreamNode"; }
}
/// <summary>
/// Initializes a new instance of the object.
/// </summary>
......@@ -33,8 +25,8 @@ namespace DeStream.Stratis.Bitcoin.Configuration
/// <param name="agent">The nodes user agent that will be shared with peers.</param>
public DeStreamNodeSettings(Network innerNetwork = null, ProtocolVersion protocolVersion = SupportedProtocolVersion,
string agent = "DeStream", string[] args = null, bool loadConfiguration = true)
: base (innerNetwork, protocolVersion, agent, args)
{
: base ("DeStreamNode", innerNetwork, protocolVersion, agent, args)
{
}
}
}
\ No newline at end of file
......@@ -181,11 +181,11 @@ namespace NBitcoin.Networks
this.DNSSeeds = new List<DNSSeedData>
{
new DNSSeedData("seed1.destream.io", "seed1.destream.io"),
new DNSSeedData("seed2.destream.io", "seed2.destream.io")
// new DNSSeedData("seed1.destream.io", "seed1.destream.io"),
// new DNSSeedData("seed2.destream.io", "seed2.destream.io")
};
string[] seedNodes = {"13.68.198.162", "13.70.18.104"};
string[] seedNodes = {/*"13.68.198.162", "13.70.18.104"*/};
this.SeedNodes = this.ConvertToNetworkAddresses(seedNodes, this.DefaultPort).ToList();
// Create the genesis block.
......
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.Api.Tests</AssemblyName>
......@@ -7,27 +6,23 @@
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<RuntimeFrameworkVersion>2.1.1</RuntimeFrameworkVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Stratis.Bitcoin.Features.Api\Stratis.Bitcoin.Features.Api.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Common\Stratis.Bitcoin.Tests.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
\ No newline at end of file
......@@ -24,6 +24,8 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
......
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.Features.Consensus.Tests</AssemblyName>
......@@ -15,21 +14,19 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Stratis.Bitcoin.Features.Consensus.Tests\**" />
<EmbeddedResource Remove="Stratis.Bitcoin.Features.Consensus.Tests\**" />
<None Remove="Stratis.Bitcoin.Features.Consensus.Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.Consensus\Stratis.Bitcoin.Features.Consensus.csproj" />
......@@ -37,15 +34,12 @@
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Common\Stratis.Bitcoin.Tests.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
\ No newline at end of file
......@@ -135,7 +135,7 @@ namespace Stratis.Bitcoin.Features.Consensus
new DeStreamLoadCoinviewRule(),
new DeStreamFundsPreservationRule(),
new TransactionDuplicationActivationRule(), // implements BIP30
new PowCoinviewRule(), // implements BIP68, MaxSigOps and BlockReward calculation
new DeStreamPowCoinviewRule(), // implements BIP68, MaxSigOps and BlockReward calculation
new DeStreamBlockFeeRule()
};
......@@ -181,7 +181,7 @@ namespace Stratis.Bitcoin.Features.Consensus
new DeStreamLoadCoinviewRule(),
new DeStreamFundsPreservationRule(),
new TransactionDuplicationActivationRule(), // implements BIP30
new PosCoinviewRule(), // implements BIP68, MaxSigOps and BlockReward calculation
new DeStreamPosCoinviewRule(), // implements BIP68, MaxSigOps and BlockReward calculation
new DeStreamBlockFeeRule()
};
}
......
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using NBitcoin;
using Stratis.Bitcoin.Consensus.Rules;
using Stratis.Bitcoin.Features.Consensus.Interfaces;
using Stratis.Bitcoin.Utilities;
namespace Stratis.Bitcoin.Features.Consensus.Rules.CommonRules
{
/// <summary>
/// Proof of stake override for the coinview rules - BIP68, MaxSigOps and BlockReward checks.
/// </summary>
[ExecutionRule]
public sealed class DeStreamPosCoinviewRule : DeStreamCoinViewRule
{
/// <summary>Provides functionality for checking validity of PoS blocks.</summary>
private IStakeValidator stakeValidator;
/// <summary>Database of stake related data for the current blockchain.</summary>
private IStakeChain stakeChain;
/// <summary>The consensus of the parent Network.</summary>
private NBitcoin.Consensus consensus;
/// <inheritdoc />
public override void Initialize()
{
this.Logger.LogTrace("()");
base.Initialize();
this.consensus = this.Parent.Network.Consensus;
var consensusRules = (PosConsensusRules)this.Parent;
this.stakeValidator = consensusRules.StakeValidator;
this.stakeChain = consensusRules.StakeChain;
this.Logger.LogTrace("(-)");
}
/// <inheritdoc />
/// <summary>Compute and store the stake proofs.</summary>
public override async Task RunAsync(RuleContext context)
{
this.Logger.LogTrace("()");
this.CheckAndComputeStake(context);
await base.RunAsync(context).ConfigureAwait(false);
var posRuleContext = context as PosRuleContext;
await this.stakeChain.SetAsync(context.ValidationContext.ChainedHeader, posRuleContext.BlockStake).ConfigureAwait(false);
this.Logger.LogTrace("(-)");
}
/// <inheritdoc/>
protected override bool IsProtocolTransaction(Transaction transaction)
{
return transaction.IsCoinBase || transaction.IsCoinStake;
}
/// <inheritdoc />
public override void CheckBlockReward(RuleContext context, Money fees, int height, Block block)
{
this.Logger.LogTrace("({0}:{1},{2}:'{3}')", nameof(fees), fees, nameof(height), height);
if (BlockStake.IsProofOfStake(block))
{
var posRuleContext = context as PosRuleContext;
Money stakeReward = block.Transactions[1].TotalOut - posRuleContext.TotalCoinStakeValueIn;
Money calcStakeReward = fees + this.GetProofOfStakeReward(height);
this.Logger.LogTrace("Block stake reward is {0}, calculated reward is {1}.", stakeReward, calcStakeReward);
if (stakeReward > calcStakeReward)
{
this.Logger.LogTrace("(-)[BAD_COINSTAKE_AMOUNT]");
ConsensusErrors.BadCoinstakeAmount.Throw();
}
}
else
{
Money blockReward = fees + this.GetProofOfWorkReward(height);
this.Logger.LogTrace("Block reward is {0}, calculated reward is {1}.", block.Transactions[0].TotalOut, blockReward);
if (block.Transactions[0].TotalOut > blockReward)
{
this.Logger.LogTrace("(-)[BAD_COINBASE_AMOUNT]");
ConsensusErrors.BadCoinbaseAmount.Throw();
}
}
this.Logger.LogTrace("(-)");
}
/// <inheritdoc />
public override void UpdateCoinView(RuleContext context, Transaction transaction)
{
this.Logger.LogTrace("()");
var posRuleContext = context as PosRuleContext;
UnspentOutputSet view = posRuleContext.UnspentOutputSet;
if (transaction.IsCoinStake)
posRuleContext.TotalCoinStakeValueIn = view.GetValueIn(transaction);
base.UpdateUTXOSet(context, transaction);
this.Logger.LogTrace("(-)");
}
/// <inheritdoc />
public override void CheckMaturity(UnspentOutputs coins, int spendHeight)
{
this.Logger.LogTrace("({0}:'{1}/{2}',{3}:{4})", nameof(coins), coins.TransactionId, coins.Height, nameof(spendHeight), spendHeight);
base.CheckCoinbaseMaturity(coins, spendHeight);
if (coins.IsCoinstake)
{
if ((spendHeight - coins.Height) < this.consensus.CoinbaseMaturity)
{
this.Logger.LogTrace("Coinstake transaction height {0} spent at height {1}, but maturity is set to {2}.", coins.Height, spendHeight, this.consensus.CoinbaseMaturity);
this.Logger.LogTrace("(-)[COINSTAKE_PREMATURE_SPENDING]");
ConsensusErrors.BadTransactionPrematureCoinstakeSpending.Throw();
}
}
this.Logger.LogTrace("(-)");
}
/// <summary>
/// Checks and computes stake.
/// </summary>
/// <param name="context">Context that contains variety of information regarding blocks validation and execution.</param>
/// <exception cref="ConsensusErrors.PrevStakeNull">Thrown if previous stake is not found.</exception>
/// <exception cref="ConsensusErrors.SetStakeEntropyBitFailed">Thrown if failed to set stake entropy bit.</exception>
private void CheckAndComputeStake(RuleContext context)
{
this.Logger.LogTrace("()");
ChainedHeader chainedHeader = context.ValidationContext.ChainedHeader;
Block block = context.ValidationContext.Block;
var posRuleContext = context as PosRuleContext;
BlockStake blockStake = posRuleContext.BlockStake;
// Verify hash target and signature of coinstake tx.
if (BlockStake.IsProofOfStake(block))
{
ChainedHeader prevChainedHeader = chainedHeader.Previous;
BlockStake prevBlockStake = this.stakeChain.Get(prevChainedHeader.HashBlock);
if (prevBlockStake == null)
ConsensusErrors.PrevStakeNull.Throw();
// Only do proof of stake validation for blocks that are after the assumevalid block or after the last checkpoint.
if (!context.SkipValidation)
{
this.stakeValidator.CheckProofOfStake(posRuleContext, prevChainedHeader, prevBlockStake, block.Transactions[1], chainedHeader.Header.Bits.ToCompact());
}
else this.Logger.LogTrace("POS validation skipped for block at height {0}.", chainedHeader.Height);
}
// PoW is checked in CheckBlock().
if (BlockStake.IsProofOfWork(block))
posRuleContext.HashProofOfStake = chainedHeader.Header.GetPoWHash();
// Compute stake entropy bit for stake modifier.
if (!blockStake.SetStakeEntropyBit(blockStake.GetStakeEntropyBit()))
{
this.Logger.LogTrace("(-)[STAKE_ENTROPY_BIT_FAIL]");
ConsensusErrors.SetStakeEntropyBitFailed.Throw();
}
// Record proof hash value.
blockStake.HashProof = posRuleContext.HashProofOfStake;
int lastCheckpointHeight = this.Parent.Checkpoints.GetLastCheckpointHeight();
if (chainedHeader.Height > lastCheckpointHeight)
{
// Compute stake modifier.
ChainedHeader prevChainedHeader = chainedHeader.Previous;
BlockStake blockStakePrev = prevChainedHeader == null ? null : this.stakeChain.Get(prevChainedHeader.HashBlock);
blockStake.StakeModifierV2 = this.stakeValidator.ComputeStakeModifierV2(prevChainedHeader, blockStakePrev, blockStake.IsProofOfWork() ? chainedHeader.HashBlock : blockStake.PrevoutStake.Hash);
}
else if (chainedHeader.Height == lastCheckpointHeight)
{
// Copy checkpointed stake modifier.
CheckpointInfo checkpoint = this.Parent.Checkpoints.GetCheckpoint(lastCheckpointHeight);
blockStake.StakeModifierV2 = checkpoint.StakeModifierV2;
this.Logger.LogTrace("Last checkpoint stake modifier V2 loaded: '{0}'.", blockStake.StakeModifierV2);
}
else this.Logger.LogTrace("POS stake modifier computation skipped for block at height {0} because it is not above last checkpoint block height {1}.", chainedHeader.Height, lastCheckpointHeight);
this.Logger.LogTrace("(-)[OK]");
}
/// <inheritdoc />
public override Money GetProofOfWorkReward(int height)
{
if (this.IsPremine(height))
return this.consensus.PremineReward;
return this.consensus.ProofOfWorkReward;
}
/// <summary>
/// Gets miner's coin stake reward.
/// </summary>
/// <param name="height">Target block height.</param>
/// <returns>Miner's coin stake reward.</returns>
public Money GetProofOfStakeReward(int height)
{
if (this.IsPremine(height))
return this.consensus.PremineReward;
return this.consensus.ProofOfStakeReward;
}
}
}
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using NBitcoin;
using Stratis.Bitcoin.Consensus.Rules;
using Stratis.Bitcoin.Utilities;
namespace Stratis.Bitcoin.Features.Consensus.Rules.CommonRules
{
/// <inheritdoc />
[ExecutionRule]
public sealed class DeStreamPowCoinviewRule : DeStreamCoinViewRule
{
/// <summary>Consensus parameters.</summary>
private NBitcoin.Consensus consensus;
/// <inheritdoc />
public override void Initialize()
{
this.Logger.LogTrace("()");
base.Initialize();
this.consensus = this.Parent.Network.Consensus;
this.Logger.LogTrace("(-)");
}
/// <inheritdoc/>
protected override bool IsProtocolTransaction(Transaction transaction)
{
return transaction.IsCoinBase;
}
/// <inheritdoc/>
public override void CheckBlockReward(RuleContext context, Money fees, int height, Block block)
{
this.Logger.LogTrace("()");
Money blockReward = fees + this.GetProofOfWorkReward(height);
if (block.Transactions[0].TotalOut > blockReward)
{
this.Logger.LogTrace("(-)[BAD_COINBASE_AMOUNT]");
ConsensusErrors.BadCoinbaseAmount.Throw();
}
this.Logger.LogTrace("(-)");
}
/// <inheritdoc/>
public override Money GetProofOfWorkReward(int height)
{
if (this.IsPremine(height))
return this.consensus.PremineReward;
if (this.consensus.ProofOfWorkReward == 0)
return 0;
int halvings = height / this.consensus.SubsidyHalvingInterval;
// Force block reward to zero when right shift is undefined.
if (halvings >= 64)
return 0;
Money subsidy = this.consensus.ProofOfWorkReward;
// Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.
subsidy >>= halvings;
return subsidy;
}
/// <inheritdoc/>
public override void CheckMaturity(UnspentOutputs coins, int spendHeight)
{
base.CheckCoinbaseMaturity(coins, spendHeight);
}
/// <inheritdoc/>
public override void UpdateCoinView(RuleContext context, Transaction transaction)
{
base.UpdateUTXOSet(context, transaction);
}
/// <inheritdoc />
public override Task RunAsync(RuleContext context)
{
return base.RunAsync(context);
}
}
}
\ No newline at end of file
......@@ -11,7 +11,7 @@ namespace Stratis.Bitcoin.Features.Consensus.Rules.CommonRules
/// Proof of stake override for the coinview rules - BIP68, MaxSigOps and BlockReward checks.
/// </summary>
[ExecutionRule]
public sealed class PosCoinviewRule : DeStreamCoinViewRule
public sealed class PosCoinviewRule : CoinViewRule
{
/// <summary>Provides functionality for checking validity of PoS blocks.</summary>
private IStakeValidator stakeValidator;
......
......@@ -8,7 +8,7 @@ namespace Stratis.Bitcoin.Features.Consensus.Rules.CommonRules
{
/// <inheritdoc />
[ExecutionRule]
public sealed class PowCoinviewRule : DeStreamCoinViewRule
public sealed class PowCoinviewRule : CoinViewRule
{
/// <summary>Consensus parameters.</summary>
private NBitcoin.Consensus consensus;
......
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.Features.Dns.Tests</AssemblyName>
......@@ -15,35 +14,30 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Stratis.Bitcoin.Features.Dns.Tests\**" />
<EmbeddedResource Remove="Stratis.Bitcoin.Features.Dns.Tests\**" />
<None Remove="Stratis.Bitcoin.Features.Dns.Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Stratis.Bitcoin.Features.Dns\Stratis.Bitcoin.Features.Dns.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Common\Stratis.Bitcoin.Tests.Common.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.Features.LightWallet.Tests</AssemblyName>
......@@ -15,22 +14,20 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Stratis.Bitcoin.Features.LightWallet.Tests\**" />
<EmbeddedResource Remove="Stratis.Bitcoin.Features.LightWallet.Tests\**" />
<None Remove="Stratis.Bitcoin.Features.LightWallet.Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DBreeze" Version="1.89.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.LightWallet\Stratis.Bitcoin.Features.LightWallet.csproj" />
......@@ -38,15 +35,12 @@
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Wallet.Common\Stratis.Bitcoin.Tests.Wallet.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.Features.MemoryPool.Tests</AssemblyName>
......@@ -15,22 +14,20 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Stratis.Bitcoin.Features.MemoryPool.Tests\**" />
<EmbeddedResource Remove="Stratis.Bitcoin.Features.MemoryPool.Tests\**" />
<None Remove="Stratis.Bitcoin.Features.MemoryPool.Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DBreeze" Version="1.89.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.BlockStore\Stratis.Bitcoin.Features.BlockStore.csproj" />
......@@ -40,15 +37,12 @@
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Common\Stratis.Bitcoin.Tests.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>false</IsPackable>
<TargetFramework>netcoreapp2.1</TargetFramework>
......@@ -16,27 +15,24 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DBreeze" Version="1.89.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.Miner\Stratis.Bitcoin.Features.Miner.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Common\Stratis.Bitcoin.Tests.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Wallet.Common\Stratis.Bitcoin.Tests.Wallet.Common.csproj" />
</ItemGroup>
</Project>
\ No newline at end of file
......@@ -50,8 +50,7 @@ namespace Stratis.Bitcoin.Features.Miner
context.CoinstakeContext.CoinstakeTx.AddOutput(new TxOut(Money.Zero, deStreamAddressKey));
}
// No way to call base function and change smth after this, replacing whole function is the only way.
// All modified code is extraced to functions.
/// <inheritdoc />
public override async Task<bool> CreateCoinstakeAsync(List<UtxoStakeDescription> utxoStakeDescriptions,
Block block, ChainedHeader chainTip, long searchInterval,
long fees, CoinstakeContext coinstakeContext)
......
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.Features.Notifications.Tests</AssemblyName>
......@@ -15,37 +14,32 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Stratis.Bitcoin.Features.Notifications.Tests\**" />
<EmbeddedResource Remove="Stratis.Bitcoin.Features.Notifications.Tests\**" />
<None Remove="Stratis.Bitcoin.Features.Notifications.Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DBreeze" Version="1.89.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.Notifications\Stratis.Bitcoin.Features.Notifications.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Common\Stratis.Bitcoin.Tests.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using NBitcoin;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Stratis.Bitcoin.Controllers.Models;
using Stratis.Bitcoin.Features.RPC.Models;
using Stratis.Bitcoin.Features.RPC;
using Xunit;
namespace Stratis.Bitcoin.Features.RPC.Tests.Models
namespace Stratis.Bitcoin.Tests.Models
{
public class TransactionModelsTest : BaseRPCModelTest, IDisposable
public class TransactionModelsTest : BaseModelTest, IDisposable
{
private const string TxBlock10Hex = "01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff0704ffff001d0136ffffffff0100f2052a01000000434104fcc2888ca91cf0103d8c5797c256bf976e81f280205d002d85b9b622ed1a6f820866c7b5fe12285cfa78c035355d752fc94a398b67597dc4fbb5b386816425ddac00000000";
private const string TxBlock10Hash = "d3ad39fa52a89997ac7381c95eeffeaf40b66af7a57e9eba144be0a175a12b11";
......@@ -24,9 +27,10 @@ namespace Stratis.Bitcoin.Features.RPC.Tests.Models
public TransactionModelsTest()
{
this.txBlock10CoinbaseModelBrief = new TransactionBriefModel(Transaction.Parse(TxBlock10Hex, RawFormat.BlockExplorer));
this.txBlock460373CoinbaseModelVerbose = new TransactionVerboseModel(Transaction.Parse(TxBlock460373CoinbaseHex, RawFormat.BlockExplorer), Network.Main);
this.txTwoInTwoOutModelVerbose = new TransactionVerboseModel(Transaction.Parse(TxTwoInTwoOutHex, RawFormat.BlockExplorer), Network.Main);
var network = Network.Main;
this.txBlock10CoinbaseModelBrief = new TransactionBriefModel(network.CreateTransaction(TxBlock10Hex));
this.txBlock460373CoinbaseModelVerbose = new TransactionVerboseModel(network.CreateTransaction(TxBlock460373CoinbaseHex), network);
this.txTwoInTwoOutModelVerbose = new TransactionVerboseModel(network.CreateTransaction(TxTwoInTwoOutHex), network);
}
public void Dispose()
......@@ -39,7 +43,7 @@ namespace Stratis.Bitcoin.Features.RPC.Tests.Models
[Fact]
public void TransactionModelBriefRenderTest()
{
var model = this.txBlock10CoinbaseModelBrief;
TransactionBriefModel model = this.txBlock10CoinbaseModelBrief;
string json = ModelToJson(model);
string expectedJson = "\"" + TxBlock10Hex + "\"";
......@@ -58,9 +62,9 @@ namespace Stratis.Bitcoin.Features.RPC.Tests.Models
string actualHex = obj.Value<string>("hex");
string actualTxid = obj.Value<string>("txid");
int? actualSize = obj.Value<int>("size");
int? actualVersion = obj.Value<int?>("version");
int? actualLocktime = obj.Value<int?>("locktime");
var actualPropertyNameOrder = obj.Children().Select(o => (o as JProperty)?.Name);
var actualVersion = obj.Value<int?>("version");
var actualLocktime = obj.Value<int?>("locktime");
IEnumerable<string> actualPropertyNameOrder = obj.Children().Select(o => (o as JProperty)?.Name);
Assert.Equal(7, actualElements);
Assert.Equal(TxBlock460373CoinbaseHex, actualHex);
......@@ -78,14 +82,14 @@ namespace Stratis.Bitcoin.Features.RPC.Tests.Models
string expectedCoinbase = "0355060704eba7e3582f4254432e434f4d2fb6000ddbcbe5000000000000";
JObject obj = ModelToJObject(this.txBlock460373CoinbaseModelVerbose);
Assert.True(obj.HasValues);
var vin = obj["vin"];
JToken vin = obj["vin"];
Assert.NotNull(vin);
int actualVinCount = vin.Count();
int? actualVinInnerElements = vin.FirstOrDefault()?.Count();
string actualCoinbase = vin.FirstOrDefault()?.Value<string>("coinbase");
uint? actualSequence = vin.FirstOrDefault()?.Value<uint>("sequence");
var actualPropertyNameOrder = vin.FirstOrDefault()?.Select(o => (o as JProperty)?.Name);
var actualSequence = vin.FirstOrDefault()?.Value<uint>("sequence");
IEnumerable<string> actualPropertyNameOrder = vin.FirstOrDefault()?.Select(o => (o as JProperty)?.Name);
Assert.Equal(1, actualVinCount);
Assert.Equal(2, actualVinInnerElements);
......@@ -100,14 +104,14 @@ namespace Stratis.Bitcoin.Features.RPC.Tests.Models
var expectedPropertyNameOrder = new string[] { "value", "n", "scriptPubKey" };
JObject obj = ModelToJObject(this.txBlock460373CoinbaseModelVerbose);
Assert.True(obj.HasValues);
var vout = obj["vout"];
JToken vout = obj["vout"];
Assert.NotNull(vout);
int actualVoutCount = vout.Count();
int? actualVoutInnerElements = vout.FirstOrDefault()?.Count();
decimal? actualTotalValue = vout.Sum(o => o.Value<decimal?>("value"));
int? actualLastVoutN = vout.LastOrDefault().Value<int?>("n");
var actualPropertyNameOrder = vout.FirstOrDefault()?.Select(o => (o as JProperty)?.Name);
var actualLastVoutN = vout.LastOrDefault().Value<int?>("n");
IEnumerable<string> actualPropertyNameOrder = vout.FirstOrDefault()?.Select(o => (o as JProperty)?.Name);
Assert.Equal(2, actualVoutCount);
Assert.Equal(3, actualVoutInnerElements);
......@@ -126,11 +130,11 @@ namespace Stratis.Bitcoin.Features.RPC.Tests.Models
var secondScript = obj["vout"]?.LastOrDefault()?.Value<JToken>("scriptPubKey");
string actualFirstVoutScriptType = firstScript?.Value<string>("type");
int? actualReqSigs = firstScript?.Value<int>("reqSigs");
var actualReqSigs = firstScript?.Value<int>("reqSigs");
int? actualAddressCount = firstScript?["addresses"]?.Count();
string actualSecondVoutScriptType = secondScript?.Value<string>("type");
var actualFirstPropertyNameOrder = firstScript?.Select(o => (o as JProperty)?.Name);
var actualSecondPropertyNameOrder = secondScript?.Select(o => (o as JProperty)?.Name);
IEnumerable<string> actualFirstPropertyNameOrder = firstScript?.Select(o => (o as JProperty)?.Name);
IEnumerable<string> actualSecondPropertyNameOrder = secondScript?.Select(o => (o as JProperty)?.Name);
Assert.Equal("scripthash", actualFirstVoutScriptType);
Assert.Equal(1, actualReqSigs);
......@@ -146,18 +150,18 @@ namespace Stratis.Bitcoin.Features.RPC.Tests.Models
var expectedPropertyNameOrder = new string[] { "txid", "vout", "scriptSig", "sequence" };
JObject obj = ModelToJObject(this.txTwoInTwoOutModelVerbose);
Assert.True(obj.HasValues);
var vin = obj["vin"];
var firstIn = vin.FirstOrDefault();
var lastIn = vin.LastOrDefault();
JToken vin = obj["vin"];
JToken firstIn = vin.FirstOrDefault();
JToken lastIn = vin.LastOrDefault();
int actualVinCount = vin.Count();
string actualFirstTxId = firstIn?.Value<string>("txid");
int? actualFirstNdx = firstIn?.Value<int?>("vout");
uint? actualFirstSequence = firstIn?.Value<uint>("sequence");
var actualFirstNdx = firstIn?.Value<int?>("vout");
var actualFirstSequence = firstIn?.Value<uint>("sequence");
string actualLastTxId = lastIn?.Value<string>("txid");
int? actualLastNdx = lastIn?.Value<int?>("vout");
uint? actualLastSequence = lastIn?.Value<uint>("sequence");
var actualPropertyNameOrder = firstIn?.Select(o => (o as JProperty)?.Name);
var actualLastNdx = lastIn?.Value<int?>("vout");
var actualLastSequence = lastIn?.Value<uint>("sequence");
IEnumerable<string> actualPropertyNameOrder = firstIn?.Select(o => (o as JProperty)?.Name);
Assert.Equal(2, actualVinCount);
Assert.Equal("19d03bf27410e3ee024211b8470c0fb3fb93913d0f8c7a0e96185ead2d58a7b1", actualFirstTxId);
......@@ -169,4 +173,23 @@ namespace Stratis.Bitcoin.Features.RPC.Tests.Models
Assert.Equal(expectedPropertyNameOrder, actualPropertyNameOrder);
}
}
public class BaseModelTest
{
protected static JObject ModelToJObject(object model)
{
string json = ModelToJson(model);
JObject obj = JObject.Parse(json);
return obj;
}
protected static string ModelToJson(object model)
{
var formatter = new RPCJsonOutputFormatter(new JsonSerializerSettings(), System.Buffers.ArrayPool<char>.Create());
var sw = new StringWriter();
formatter.WriteObject(sw, model);
string json = sw.ToString();
return json;
}
}
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.Features.RPC.Tests</AssemblyName>
......@@ -15,22 +14,20 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Stratis.Bitcoin.Features.RPC.Tests\**" />
<EmbeddedResource Remove="Stratis.Bitcoin.Features.RPC.Tests\**" />
<None Remove="Stratis.Bitcoin.Features.RPC.Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DBreeze" Version="1.89.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.Miner\Stratis.Bitcoin.Features.Miner.csproj" />
......@@ -39,15 +36,12 @@
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Wallet.Common\Stratis.Bitcoin.Tests.Wallet.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
</Project>
</Project>
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.Features.Wallet.Tests</AssemblyName>
......@@ -15,23 +14,21 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Stratis.Bitcoin.Features.Wallet.Tests\**" />
<EmbeddedResource Remove="Stratis.Bitcoin.Features.Wallet.Tests\**" />
<None Remove="Stratis.Bitcoin.Features.Wallet.Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DBreeze" Version="1.89.0" />
<PackageReference Include="FluentAssertions" Version="5.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.Wallet\Stratis.Bitcoin.Features.Wallet.csproj" />
......@@ -40,15 +37,12 @@
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Wallet.Common\Stratis.Bitcoin.Tests.Wallet.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
</Project>
</Project>
\ No newline at end of file
......@@ -76,7 +76,7 @@ namespace Stratis.Bitcoin.Features.Wallet.Tests
});
}
[Fact]
[Fact(Skip = "Fee check is disabled")]
public void BuildTransactionFeeTooLowThrowsWalletException()
{
Assert.Throws<WalletException>(() =>
......@@ -138,7 +138,6 @@ namespace Stratis.Bitcoin.Features.Wallet.Tests
};
walletTransactionHandler.BuildTransaction(CreateContext(walletReference, "password", destinationKeys.PubKey.ScriptPubKey, new Money(7500), FeeType.Low, 0));
int qwe = 1;
});
}
......
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.Features.WatchOnlyWallet.Tests</AssemblyName>
......@@ -15,37 +14,32 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Stratis.Bitcoin.Features.WatchOnlyWallet.Tests\**" />
<EmbeddedResource Remove="Stratis.Bitcoin.Features.WatchOnlyWallet.Tests\**" />
<None Remove="Stratis.Bitcoin.Features.WatchOnlyWallet.Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DBreeze" Version="1.89.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.WatchOnlyWallet\Stratis.Bitcoin.Features.WatchOnlyWallet.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Common\Stratis.Bitcoin.Tests.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
\ No newline at end of file
......@@ -459,8 +459,7 @@ namespace Stratis.Bitcoin.IntegrationTests.Common.EnvironmentMockUpHelpers
var blocks = new List<Block>();
DateTimeOffset now = this.MockTime == null ? DateTimeOffset.UtcNow : this.MockTime.Value;
//for (int i = 0; i < blockCount; i++)
for (int i = 0; i < 3; i++)
for (int i = 0; i < blockCount; i++)
{
uint nonce = 0;
var block = new Block();
......
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<RuntimeFrameworkVersion>2.1.1</RuntimeFrameworkVersion>
......@@ -17,11 +16,11 @@
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Product />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.1" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.Api\Stratis.Bitcoin.Features.Api.csproj" />
......@@ -34,14 +33,12 @@
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Common\Stratis.Bitcoin.Tests.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<DefineConstants>$(DefineConstants);NETCORE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
<DocumentationFile></DocumentationFile>
<DocumentationFile>
</DocumentationFile>
</PropertyGroup>
</Project>
</Project>
\ No newline at end of file
......@@ -15,25 +15,14 @@ namespace Stratis.Bitcoin.IntegrationTests.Common
{
public static void WaitLoop(Func<bool> act)
{
var cancel = new CancellationTokenSource(Debugger.IsAttached ? 15 * 60 * 1000 : 30 * 1000);
var cancel = new CancellationTokenSource(Debugger.IsAttached ? 15 * 60 * 1000 : 5 * 60 * 1000);
while (!act())
{
cancel.Token.ThrowIfCancellationRequested();
//Thread.Sleep(50);
Thread.Sleep(50);
}
}
public static bool AreNodesSyncedTemp(CoreNode node1, FullNode node2)
{
if (node1.FullNode.Chain.Tip.HashBlock != node2.Chain.Tip.HashBlock) return false;
if (node1.FullNode.ChainBehaviorState.ConsensusTip.HashBlock != node2.ChainBehaviorState.ConsensusTip.HashBlock) return false;
if (node1.FullNode.GetBlockStoreTip().HashBlock != node2.GetBlockStoreTip().HashBlock) return false;
if (node1.FullNode.MempoolManager().InfoAll().Count != node2.MempoolManager().InfoAll().Count) return false;
if (node1.FullNode.WalletManager().WalletTipHash != node2.WalletManager().WalletTipHash) return false;
//if (node1.CreateRPCClient().GetBestBlockHash() != node2.CreateRPCClient().GetBestBlockHash()) return false;
return true;
}
public static bool AreNodesSynced(CoreNode node1, CoreNode node2)
{
if (node1.FullNode.Chain.Tip.HashBlock != node2.FullNode.Chain.Tip.HashBlock) return false;
......
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using NBitcoin;
using Xunit;
namespace Stratis.Bitcoin.IntegrationTests
{
public class ConstructorsForSerializableClassesTest
{
[Fact]
public void AssureParameterlessConstructorsExistenceForSerializableClasses()
{
// This list contain types that inherit IBitcoinSerializable but don't have a public
// parameterless constructor for a good reason so they should not fail this test.
List<Type> exceptionalTypes = new List<Type>()
{
typeof(NBitcoin.ExtKey),
typeof(NBitcoin.ExtPubKey),
typeof(NBitcoin.PubKey),
typeof(NBitcoin.PosBlock),
typeof(NBitcoin.PosBlockHeader),
typeof(NBitcoin.PosTransaction),
typeof(NBitcoin.Protocol.CompactVarInt),
};
var types = AppDomain.CurrentDomain.GetAssemblies()
.Where(x =>x.FullName.Contains("Stratis") || x.FullName.Contains("NBitcoin"))
.SelectMany(s => s.GetTypes())
.Where(p => typeof(IBitcoinSerializable).IsAssignableFrom(p) && !p.IsInterface && p.IsClass);
foreach (var type in types)
{
if (exceptionalTypes.Contains(type))
continue;
bool parameterlessConstructorExists = type.GetConstructors().Any(x => x.GetParameters().Length == 0);
Assert.True(parameterlessConstructorExists, $"Class {type.FullName} inherits {typeof(IBitcoinSerializable).Name} " +
"but doesn't have a parameterless constructor which is needed for serialization and deserialization process!");
}
}
/// <summary>
/// Serializes input and returns deserialized object.
/// </summary>
/// <remarks>Needed for troubleshooting this test.</remarks>
private T CloneViaSerializeDeserialize<T>(T input) where T : IBitcoinSerializable
{
MemoryStream ms = new MemoryStream();
BitcoinStream bitcoinStream = new BitcoinStream(ms, true);
input.ReadWrite(bitcoinStream);
ms.Position = 0;
bitcoinStream = new BitcoinStream(bitcoinStream.Inner, false);
var obj = Activator.CreateInstance<T>();
obj.ReadWrite(bitcoinStream);
return obj;
}
}
}
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net462|AnyCPU'">
<OutputType>exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.IntegrationTests</AssemblyName>
<AssemblyName>Stratis.Bitcoin.IntegrationTests</AssemblyName>
<PackageId>Stratis.Bitcoin.IntegrationTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<RuntimeFrameworkVersion>2.1.1</RuntimeFrameworkVersion>
......@@ -20,15 +18,14 @@
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.1" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.Api\Stratis.Bitcoin.Features.Api.csproj" />
......@@ -45,16 +42,13 @@
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Common\Stratis.Bitcoin.Tests.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Update="Data\test.wallet.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
......@@ -66,10 +60,8 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Builders\" />
<Folder Include="Extensions\" />
</ItemGroup>
</Project>
</Project>
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<RuntimeFrameworkVersion>2.1.1</RuntimeFrameworkVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Stratis.Bitcoin.Features.Wallet\Stratis.Bitcoin.Features.Wallet.csproj" />
</ItemGroup>
</Project>
<ItemGroup>
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
</Project>
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>Stratis.Bitcoin.Tests</AssemblyName>
......@@ -15,37 +14,32 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;IDE0008;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Stratis.Bitcoin.Tests\**" />
<EmbeddedResource Remove="Stratis.Bitcoin.Tests\**" />
<None Remove="Stratis.Bitcoin.Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DBreeze" Version="1.89.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Common\Stratis.Bitcoin.Tests.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Wallet.Common\Stratis.Bitcoin.Tests.Wallet.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
\ No newline at end of file
......@@ -74,15 +74,6 @@ namespace Stratis.Bitcoin.Configuration
/// <summary>Minimum relay transaction fee for network.</summary>
public FeeRate MinRelayTxFeeRate { get; private set; }
/// <summary>
/// Returns default data root directory name
/// </summary>
protected virtual string DataRootDirName
{
get { return "StratisNode"; }
}
/// <summary>
/// Initializes a new instance of the object.
/// </summary>
......@@ -100,6 +91,11 @@ namespace Stratis.Bitcoin.Configuration
/// name would be determined. In this case we first need to determine the network.
/// </remarks>
public NodeSettings(Network network = null, ProtocolVersion protocolVersion = SupportedProtocolVersion,
string agent = "StratisBitcoin", string[] args = null) : this("StratisNode", network, protocolVersion, agent, args)
{
}
protected NodeSettings(string dataRootDirName, Network network = null, ProtocolVersion protocolVersion = SupportedProtocolVersion,
string agent = "StratisBitcoin", string[] args = null)
{
// Create the default logger factory and logger.
......@@ -168,7 +164,7 @@ namespace Stratis.Bitcoin.Configuration
if (this.DataDir == null)
{
// Create the data directories if they don't exist.
this.DataDir = this.CreateDefaultDataDirectories(Path.Combine(this.DataRootDirName, this.Network.RootFolderName), this.Network);
this.DataDir = this.CreateDefaultDataDirectories(Path.Combine(dataRootDirName, this.Network.RootFolderName), this.Network);
}
else
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment