Skip to content

Commit

Permalink
Add consensus tests (vechain#626)
Browse files Browse the repository at this point in the history
  • Loading branch information
MakisChristou authored Dec 20, 2023
1 parent 417b722 commit 352fbc6
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions consensus/consensus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,48 @@ func (tc *testConsensus) consent(blk *block.Block) error {
return err
}

func TestNewConsensus(t *testing.T) {
// Mock dependencies
mockRepo := &chain.Repository{}
mockStater := &state.Stater{}
mockForkConfig := thor.ForkConfig{}

// Create a new consensus instance
consensus := New(mockRepo, mockStater, mockForkConfig)

// Assert that the consensus instance is not nil
assert.NotNil(t, consensus, "Failed to create new consensus instance")
}

func TestNewRuntimeForReplay(t *testing.T) {
consensus, err := newTestConsensus()
b1 := consensus.parent

// Test for success scenario
runtime, err := consensus.con.NewRuntimeForReplay(b1.Header(), false)

assert.Nil(t, err)
assert.NotNil(t, runtime)
}

func TestNewRuntimeForReplayWithError(t *testing.T) {
consensus, _ := newTestConsensus()

// give invalid parent ID
builder := consensus.builder(&block.Header{})

b1, err := consensus.sign(builder.Timestamp(consensus.parent.Header().Timestamp()))
if err != nil {
t.Fatal(err)
}

// Test for success scenario
runtime, err := consensus.con.NewRuntimeForReplay(b1.Header(), false)

assert.NotNil(t, err)
assert.Nil(t, runtime)
}

func TestValidateBlockHeader(t *testing.T) {
tc, err := newTestConsensus()
if err != nil {
Expand Down Expand Up @@ -288,6 +330,7 @@ func TestValidateBlockHeader(t *testing.T) {
err = tc.consent(blk)
expected := errFutureBlock
assert.Equal(t, expected, err)
assert.True(t, IsFutureBlock(expected))
},
},
{
Expand All @@ -306,6 +349,8 @@ func TestValidateBlockHeader(t *testing.T) {
),
)
assert.Equal(t, expected, err)
assert.True(t, IsCritical(err))
assert.Equal(t, err.Error(), "block gas limit invalid: parent 10000000, current 20000000")

},
},
Expand Down

0 comments on commit 352fbc6

Please sign in to comment.