mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
161 lines
2.7 KiB
Go
161 lines
2.7 KiB
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package version
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestNewDefaultApplication(t *testing.T) {
|
|
require := require.New(t)
|
|
|
|
v := &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
}
|
|
|
|
require.Equal("luxd/1.2.3", v.String())
|
|
require.NoError(v.Compatible(v))
|
|
require.False(v.Before(v))
|
|
}
|
|
|
|
func TestComparingVersions(t *testing.T) {
|
|
tests := []struct {
|
|
myVersion *Application
|
|
peerVersion *Application
|
|
compatible bool
|
|
before bool
|
|
}{
|
|
{
|
|
myVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
},
|
|
peerVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
},
|
|
compatible: true,
|
|
before: false,
|
|
},
|
|
{
|
|
myVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 4,
|
|
},
|
|
peerVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
},
|
|
compatible: true,
|
|
before: false,
|
|
},
|
|
{
|
|
myVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
},
|
|
peerVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 4,
|
|
},
|
|
compatible: true,
|
|
before: true,
|
|
},
|
|
{
|
|
myVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 3,
|
|
Patch: 3,
|
|
},
|
|
peerVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
},
|
|
compatible: true,
|
|
before: false,
|
|
},
|
|
{
|
|
myVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
},
|
|
peerVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 3,
|
|
Patch: 3,
|
|
},
|
|
compatible: true,
|
|
before: true,
|
|
},
|
|
{
|
|
myVersion: &Application{
|
|
Name: Client,
|
|
Major: 2,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
},
|
|
peerVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
},
|
|
compatible: false,
|
|
before: false,
|
|
},
|
|
{
|
|
myVersion: &Application{
|
|
Name: Client,
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
},
|
|
peerVersion: &Application{
|
|
Name: Client,
|
|
Major: 2,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
},
|
|
compatible: true,
|
|
before: true,
|
|
},
|
|
}
|
|
for _, test := range tests {
|
|
t.Run(fmt.Sprintf("%s %s", test.myVersion, test.peerVersion), func(t *testing.T) {
|
|
require := require.New(t)
|
|
err := test.myVersion.Compatible(test.peerVersion)
|
|
if test.compatible {
|
|
require.NoError(err)
|
|
} else {
|
|
require.ErrorIs(err, errDifferentMajor)
|
|
}
|
|
require.Equal(test.before, test.myVersion.Before(test.peerVersion))
|
|
})
|
|
}
|
|
}
|