4ccce11893
10 --> node tag inclusion in raw format 11 --> same, but using same subnet is enabled 12 --> same as 11 but with US restrictions Change-Id: I20792689e0caf5fe190f566a770d70c3b3824793
308 lines
11 KiB
Go
308 lines
11 KiB
Go
// Copyright (C) 2023 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package overlay
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"storj.io/common/storj"
|
|
"storj.io/common/storj/location"
|
|
"storj.io/storj/satellite/nodeselection"
|
|
)
|
|
|
|
func TestPlacementFromString(t *testing.T) {
|
|
signer, err := storj.NodeIDFromString("12whfK1EDvHJtajBiAUeajQLYcWqxcQmdYQU5zX5cCf6bAxfgu4")
|
|
require.NoError(t, err)
|
|
|
|
t.Run("invalid country-code", func(t *testing.T) {
|
|
p := NewPlacementRules()
|
|
err := p.AddPlacementFromString(`1:country("ZZZZ")`)
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("country tests", func(t *testing.T) {
|
|
countryTest := func(placementDef string, shouldBeIncluded []location.CountryCode, shouldBeExcluded []location.CountryCode) {
|
|
p := NewPlacementRules()
|
|
err := p.AddPlacementFromString("11:" + placementDef)
|
|
require.NoError(t, err)
|
|
filters := p.placements[storj.PlacementConstraint(11)]
|
|
require.NotNil(t, filters)
|
|
for _, code := range shouldBeExcluded {
|
|
require.False(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: code,
|
|
}), "%s shouldn't be included in placement %s", code, placementDef)
|
|
}
|
|
for _, code := range shouldBeIncluded {
|
|
require.True(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: code,
|
|
}), "%s is not included in placement %s", code, placementDef)
|
|
}
|
|
}
|
|
countryTest(`country("GB")`, []location.CountryCode{location.UnitedKingdom}, []location.CountryCode{location.Germany, location.UnitedStates})
|
|
countryTest(`country("EU")`, []location.CountryCode{location.Germany, location.Hungary}, []location.CountryCode{location.UnitedStates, location.Norway, location.Iceland})
|
|
countryTest(`country("EEA")`, []location.CountryCode{location.Germany, location.Hungary, location.Norway, location.Iceland}, []location.CountryCode{location.UnitedStates})
|
|
countryTest(`country("ALL","!EU")`, []location.CountryCode{location.Norway, location.India}, []location.CountryCode{location.Germany, location.Hungary})
|
|
countryTest(`country("ALL", "!RU", "!BY")`, []location.CountryCode{location.Norway, location.India, location.UnitedStates}, []location.CountryCode{location.Russia, location.Belarus})
|
|
|
|
})
|
|
|
|
t.Run("tag rule", func(t *testing.T) {
|
|
p := NewPlacementRules()
|
|
err := p.AddPlacementFromString(`11:tag("12whfK1EDvHJtajBiAUeajQLYcWqxcQmdYQU5zX5cCf6bAxfgu4","foo","bar")`)
|
|
require.NoError(t, err)
|
|
filters := p.placements[storj.PlacementConstraint(11)]
|
|
require.NotNil(t, filters)
|
|
require.True(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
Tags: nodeselection.NodeTags{
|
|
{
|
|
Signer: signer,
|
|
Name: "foo",
|
|
Value: []byte("bar"),
|
|
},
|
|
},
|
|
}))
|
|
require.False(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.Germany,
|
|
}))
|
|
})
|
|
|
|
t.Run("placement reuse", func(t *testing.T) {
|
|
p := NewPlacementRules()
|
|
err := p.AddPlacementFromString(`1:tag("12whfK1EDvHJtajBiAUeajQLYcWqxcQmdYQU5zX5cCf6bAxfgu4","foo","bar");2:exclude(placement(1))`)
|
|
require.NoError(t, err)
|
|
|
|
require.True(t, p.placements[storj.PlacementConstraint(1)].MatchInclude(&nodeselection.SelectedNode{
|
|
Tags: nodeselection.NodeTags{
|
|
{
|
|
Signer: signer,
|
|
Name: "foo",
|
|
Value: []byte("bar"),
|
|
},
|
|
},
|
|
}))
|
|
|
|
placement2 := p.placements[storj.PlacementConstraint(2)]
|
|
require.False(t, placement2.MatchInclude(&nodeselection.SelectedNode{
|
|
Tags: nodeselection.NodeTags{
|
|
{
|
|
Signer: signer,
|
|
Name: "foo",
|
|
Value: []byte("bar"),
|
|
},
|
|
},
|
|
}))
|
|
require.True(t, placement2.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.Germany,
|
|
}))
|
|
|
|
})
|
|
|
|
t.Run("all rules", func(t *testing.T) {
|
|
for _, syntax := range []string{
|
|
`11:all(country("GB"),tag("12whfK1EDvHJtajBiAUeajQLYcWqxcQmdYQU5zX5cCf6bAxfgu4","foo","bar"))`,
|
|
`11:country("GB") && tag("12whfK1EDvHJtajBiAUeajQLYcWqxcQmdYQU5zX5cCf6bAxfgu4","foo","bar")`,
|
|
} {
|
|
p := NewPlacementRules()
|
|
err := p.AddPlacementFromString(syntax)
|
|
require.NoError(t, err)
|
|
filters := p.placements[storj.PlacementConstraint(11)]
|
|
require.NotNil(t, filters)
|
|
require.True(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.UnitedKingdom,
|
|
Tags: nodeselection.NodeTags{
|
|
{
|
|
Signer: signer,
|
|
Name: "foo",
|
|
Value: []byte("bar"),
|
|
},
|
|
},
|
|
}))
|
|
require.False(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.UnitedKingdom,
|
|
}))
|
|
require.False(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.Germany,
|
|
Tags: nodeselection.NodeTags{
|
|
{
|
|
Signer: signer,
|
|
Name: "foo",
|
|
Value: []byte("bar"),
|
|
},
|
|
},
|
|
}))
|
|
}
|
|
t.Run("invalid", func(t *testing.T) {
|
|
p := NewPlacementRules()
|
|
err := p.AddPlacementFromString("10:1 && 2")
|
|
require.Error(t, err)
|
|
})
|
|
})
|
|
|
|
t.Run("multi rule", func(t *testing.T) {
|
|
p := NewPlacementRules()
|
|
err := p.AddPlacementFromString(`11:country("GB");12:country("DE")`)
|
|
require.NoError(t, err)
|
|
|
|
filters := p.placements[storj.PlacementConstraint(11)]
|
|
require.NotNil(t, filters)
|
|
require.True(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.UnitedKingdom,
|
|
}))
|
|
require.False(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.Germany,
|
|
}))
|
|
|
|
filters = p.placements[storj.PlacementConstraint(12)]
|
|
require.NotNil(t, filters)
|
|
require.False(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.UnitedKingdom,
|
|
}))
|
|
require.True(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.Germany,
|
|
}))
|
|
|
|
})
|
|
t.Run("annotated", func(t *testing.T) {
|
|
p := NewPlacementRules()
|
|
err := p.AddPlacementFromString(`11:annotated(country("GB"),annotation("autoExcludeSubnet","off"))`)
|
|
require.NoError(t, err)
|
|
filters := p.placements[storj.PlacementConstraint(11)]
|
|
require.True(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.UnitedKingdom,
|
|
}))
|
|
|
|
require.Equal(t, nodeselection.GetAnnotation(filters, "autoExcludeSubnet"), "off")
|
|
|
|
})
|
|
t.Run("exclude", func(t *testing.T) {
|
|
p := NewPlacementRules()
|
|
err := p.AddPlacementFromString(`11:exclude(country("GB"))`)
|
|
require.NoError(t, err)
|
|
filters := p.placements[storj.PlacementConstraint(11)]
|
|
require.False(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.UnitedKingdom,
|
|
}))
|
|
require.True(t, filters.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.Germany,
|
|
}))
|
|
})
|
|
|
|
t.Run("legacy geofencing rules", func(t *testing.T) {
|
|
p := NewPlacementRules()
|
|
p.AddLegacyStaticRules()
|
|
|
|
t.Run("nr", func(t *testing.T) {
|
|
nr := p.placements[storj.NR]
|
|
require.True(t, nr.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.UnitedKingdom,
|
|
}))
|
|
require.False(t, nr.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.Russia,
|
|
}))
|
|
require.False(t, nr.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: 0,
|
|
}))
|
|
})
|
|
t.Run("us", func(t *testing.T) {
|
|
us := p.placements[storj.US]
|
|
require.True(t, us.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.UnitedStates,
|
|
}))
|
|
require.False(t, us.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: location.Germany,
|
|
}))
|
|
require.False(t, us.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: 0,
|
|
}))
|
|
})
|
|
|
|
})
|
|
|
|
t.Run("full example", func(t *testing.T) {
|
|
// this is a realistic configuration, compatible with legacy rules + using one node tag for specific placement
|
|
|
|
rules1 := NewPlacementRules()
|
|
err := rules1.AddPlacementFromString(`
|
|
10:tag("12whfK1EDvHJtajBiAUeajQLYcWqxcQmdYQU5zX5cCf6bAxfgu4","selected","true");
|
|
11:annotated(placement(10),annotation("autoExcludeSubnet","off"));
|
|
12:placement(11) && country("US");
|
|
0:exclude(placement(10));
|
|
1:country("EU") && exclude(placement(10));
|
|
2:country("EEA") && exclude(placement(10));
|
|
3:country("US") && exclude(placement(10));
|
|
4:country("DE") && exclude(placement(10));
|
|
6:country("*","!BY", "!RU", "!NONE") && exclude(placement(10))`)
|
|
require.NoError(t, err)
|
|
|
|
// for countries, it should be the same as above
|
|
rules2 := NewPlacementRules()
|
|
rules2.AddLegacyStaticRules()
|
|
|
|
testCountries := []location.CountryCode{
|
|
location.Russia,
|
|
location.India,
|
|
location.Belarus,
|
|
location.UnitedStates,
|
|
location.Canada,
|
|
location.Brazil,
|
|
location.Ghana,
|
|
}
|
|
testCountries = append(testCountries, nodeselection.EeaCountriesWithoutEu...)
|
|
testCountries = append(testCountries, nodeselection.EuCountries...)
|
|
|
|
// check if old geofencing rules are working as before (and string based config is the same as the code base)
|
|
for _, placement := range []storj.PlacementConstraint{storj.EU, storj.EEA, storj.DE, storj.US, storj.NR} {
|
|
filter1 := rules1.CreateFilters(placement)
|
|
filter2 := rules2.CreateFilters(placement)
|
|
for _, country := range testCountries {
|
|
old := placement.AllowedCountry(country)
|
|
result1 := filter1.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: country,
|
|
})
|
|
result2 := filter2.MatchInclude(&nodeselection.SelectedNode{
|
|
CountryCode: country,
|
|
})
|
|
assert.Equal(t, old, result1, "old placement doesn't match string based configuration for placement %d and country %s", placement, country)
|
|
assert.Equal(t, old, result2, "old placement doesn't match code based configuration for placement %d and country %s", placement, country)
|
|
}
|
|
}
|
|
|
|
// make sure that new rules exclude location.None from NR
|
|
assert.False(t, rules1.CreateFilters(storj.NR).MatchInclude(&nodeselection.SelectedNode{}))
|
|
assert.False(t, rules2.CreateFilters(storj.NR).MatchInclude(&nodeselection.SelectedNode{}))
|
|
|
|
// make sure tagged nodes (even from EU) matches only the special placement
|
|
node := &nodeselection.SelectedNode{
|
|
CountryCode: location.Germany,
|
|
Tags: nodeselection.NodeTags{
|
|
{
|
|
Signer: signer,
|
|
Name: "selected",
|
|
Value: []byte("true"),
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, placement := range []storj.PlacementConstraint{storj.EveryCountry, storj.EU, storj.EEA, storj.DE, storj.US, storj.NR} {
|
|
assert.False(t, rules1.CreateFilters(placement).MatchInclude(node))
|
|
}
|
|
assert.False(t, rules1.CreateFilters(6).MatchInclude(node))
|
|
|
|
// check if annotation present on 11,12, but not on other
|
|
for i := 0; i < 20; i++ {
|
|
subnetDisabled := nodeselection.GetAnnotation(rules1.CreateFilters(storj.PlacementConstraint(i)), nodeselection.AutoExcludeSubnet) == nodeselection.AutoExcludeSubnetOFF
|
|
if i == 11 || i == 12 {
|
|
require.True(t, subnetDisabled, "Placement filter should be disabled for %d", i)
|
|
} else {
|
|
require.False(t, subnetDisabled, "Placement filter should be enabled for %d", i)
|
|
}
|
|
}
|
|
|
|
})
|
|
|
|
}
|