2019-08-28 21:54:12 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package reputation_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
2019-12-27 11:48:47 +00:00
|
|
|
"storj.io/common/testcontext"
|
|
|
|
"storj.io/common/testrand"
|
2019-08-28 21:54:12 +01:00
|
|
|
"storj.io/storj/storagenode"
|
|
|
|
"storj.io/storj/storagenode/reputation"
|
|
|
|
"storj.io/storj/storagenode/storagenodedb/storagenodedbtest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestReputationDBGetInsert(t *testing.T) {
|
2020-01-20 14:56:12 +00:00
|
|
|
storagenodedbtest.Run(t, func(ctx *testcontext.Context, t *testing.T, db storagenode.DB) {
|
2020-03-10 22:05:01 +00:00
|
|
|
timestamp := time.Now()
|
2019-08-28 21:54:12 +01:00
|
|
|
reputationDB := db.Reputation()
|
|
|
|
|
|
|
|
stats := reputation.Stats{
|
|
|
|
SatelliteID: testrand.NodeID(),
|
|
|
|
Uptime: reputation.Metric{
|
|
|
|
TotalCount: 1,
|
|
|
|
SuccessCount: 2,
|
|
|
|
Alpha: 3,
|
|
|
|
Beta: 4,
|
|
|
|
Score: 5,
|
|
|
|
},
|
|
|
|
Audit: reputation.Metric{
|
|
|
|
TotalCount: 6,
|
|
|
|
SuccessCount: 7,
|
|
|
|
Alpha: 8,
|
|
|
|
Beta: 9,
|
|
|
|
Score: 10,
|
2020-05-03 17:30:54 +01:00
|
|
|
UnknownAlpha: 11,
|
|
|
|
UnknownBeta: 12,
|
2020-05-18 11:01:34 +01:00
|
|
|
UnknownScore: 13,
|
2019-08-28 21:54:12 +01:00
|
|
|
},
|
|
|
|
Disqualified: ×tamp,
|
2020-03-27 18:50:57 +00:00
|
|
|
Suspended: ×tamp,
|
2019-08-28 21:54:12 +01:00
|
|
|
UpdatedAt: timestamp,
|
2020-04-16 16:40:28 +01:00
|
|
|
JoinedAt: timestamp,
|
2019-08-28 21:54:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("insert", func(t *testing.T) {
|
|
|
|
err := reputationDB.Store(ctx, stats)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("get", func(t *testing.T) {
|
|
|
|
res, err := reputationDB.Get(ctx, stats.SatelliteID)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
assert.Equal(t, res.SatelliteID, stats.SatelliteID)
|
2020-03-10 22:05:01 +00:00
|
|
|
assert.True(t, res.Disqualified.Equal(*stats.Disqualified))
|
2020-03-27 18:50:57 +00:00
|
|
|
assert.True(t, res.Suspended.Equal(*stats.Suspended))
|
2020-03-10 22:05:01 +00:00
|
|
|
assert.True(t, res.UpdatedAt.Equal(stats.UpdatedAt))
|
2020-04-16 16:40:28 +01:00
|
|
|
assert.True(t, res.JoinedAt.Equal(stats.JoinedAt))
|
2019-08-28 21:54:12 +01:00
|
|
|
|
|
|
|
compareReputationMetric(t, &res.Uptime, &stats.Uptime)
|
|
|
|
compareReputationMetric(t, &res.Audit, &stats.Audit)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestReputationDBGetAll(t *testing.T) {
|
2020-01-20 14:56:12 +00:00
|
|
|
storagenodedbtest.Run(t, func(ctx *testcontext.Context, t *testing.T, db storagenode.DB) {
|
2019-08-28 21:54:12 +01:00
|
|
|
reputationDB := db.Reputation()
|
|
|
|
|
|
|
|
var stats []reputation.Stats
|
|
|
|
for i := 0; i < 10; i++ {
|
2020-03-10 22:05:01 +00:00
|
|
|
// we use UTC here to make struct equality testing easier
|
2019-08-28 21:54:12 +01:00
|
|
|
timestamp := time.Now().UTC().Add(time.Hour * time.Duration(i))
|
|
|
|
|
|
|
|
rep := reputation.Stats{
|
|
|
|
SatelliteID: testrand.NodeID(),
|
|
|
|
Uptime: reputation.Metric{
|
|
|
|
TotalCount: int64(i + 1),
|
|
|
|
SuccessCount: int64(i + 2),
|
|
|
|
Alpha: float64(i + 3),
|
|
|
|
Beta: float64(i + 4),
|
|
|
|
Score: float64(i + 5),
|
|
|
|
},
|
|
|
|
Audit: reputation.Metric{
|
|
|
|
TotalCount: int64(i + 6),
|
|
|
|
SuccessCount: int64(i + 7),
|
|
|
|
Alpha: float64(i + 8),
|
|
|
|
Beta: float64(i + 9),
|
|
|
|
Score: float64(i + 10),
|
2020-05-03 17:30:54 +01:00
|
|
|
UnknownAlpha: float64(i + 11),
|
|
|
|
UnknownBeta: float64(i + 12),
|
2020-05-18 11:01:34 +01:00
|
|
|
UnknownScore: float64(i + 13),
|
2019-08-28 21:54:12 +01:00
|
|
|
},
|
|
|
|
Disqualified: ×tamp,
|
2020-03-27 18:50:57 +00:00
|
|
|
Suspended: ×tamp,
|
2019-08-28 21:54:12 +01:00
|
|
|
UpdatedAt: timestamp,
|
2020-04-16 16:40:28 +01:00
|
|
|
JoinedAt: timestamp,
|
2019-08-28 21:54:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
err := reputationDB.Store(ctx, rep)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
stats = append(stats, rep)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := reputationDB.All(ctx)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotNil(t, res)
|
|
|
|
assert.Equal(t, len(stats), len(res))
|
|
|
|
|
|
|
|
for _, rep := range res {
|
|
|
|
assert.Contains(t, stats, rep)
|
|
|
|
|
|
|
|
if rep.SatelliteID == stats[0].SatelliteID {
|
|
|
|
assert.Equal(t, rep.Disqualified, stats[0].Disqualified)
|
2020-03-27 18:50:57 +00:00
|
|
|
assert.Equal(t, rep.Suspended, stats[0].Suspended)
|
2019-08-28 21:54:12 +01:00
|
|
|
assert.Equal(t, rep.UpdatedAt, stats[0].UpdatedAt)
|
2020-04-16 16:40:28 +01:00
|
|
|
assert.Equal(t, rep.JoinedAt, stats[0].JoinedAt)
|
2019-08-28 21:54:12 +01:00
|
|
|
|
|
|
|
compareReputationMetric(t, &rep.Uptime, &stats[0].Uptime)
|
|
|
|
compareReputationMetric(t, &rep.Audit, &stats[0].Audit)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-07-16 15:18:02 +01:00
|
|
|
// compareReputationMetric compares two reputation metrics and asserts that they are equal.
|
2019-08-28 21:54:12 +01:00
|
|
|
func compareReputationMetric(t *testing.T, a, b *reputation.Metric) {
|
|
|
|
assert.Equal(t, a.SuccessCount, b.SuccessCount)
|
|
|
|
assert.Equal(t, a.TotalCount, b.TotalCount)
|
|
|
|
assert.Equal(t, a.Alpha, b.Alpha)
|
|
|
|
assert.Equal(t, a.Beta, b.Beta)
|
|
|
|
assert.Equal(t, a.Score, b.Score)
|
|
|
|
}
|