109 lines
2.5 KiB
Go
109 lines
2.5 KiB
Go
/*
|
|
Copyright 2021 The Dapr Authors
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package sentinel
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/alibaba/sentinel-golang/core/circuitbreaker"
|
|
"github.com/alibaba/sentinel-golang/core/flow"
|
|
"github.com/alibaba/sentinel-golang/core/isolation"
|
|
"github.com/alibaba/sentinel-golang/core/system"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestFlowRules(t *testing.T) {
|
|
rules := []*flow.Rule{
|
|
{
|
|
Resource: "some-test",
|
|
Threshold: 100,
|
|
TokenCalculateStrategy: flow.Direct,
|
|
ControlBehavior: flow.Reject,
|
|
},
|
|
}
|
|
|
|
b, _ := json.Marshal(rules)
|
|
t.Logf("%s", b)
|
|
err := loadRules(string(b), newFlowRuleDataSource)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestCircuitBreakerRules(t *testing.T) {
|
|
rules := []*circuitbreaker.Rule{
|
|
{
|
|
Resource: "abc",
|
|
Strategy: circuitbreaker.ErrorCount,
|
|
RetryTimeoutMs: 3000,
|
|
MinRequestAmount: 10,
|
|
StatIntervalMs: 5000,
|
|
Threshold: 50,
|
|
},
|
|
}
|
|
|
|
b, _ := json.Marshal(rules)
|
|
t.Logf("%s", b)
|
|
err := loadRules(string(b), newCircuitBreakerRuleDataSource)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestHotspotParamRules(t *testing.T) {
|
|
rules := `
|
|
[
|
|
{
|
|
"resource": "abc",
|
|
"metricType": 1,
|
|
"controlBehavior": 0,
|
|
"paramIndex": 1,
|
|
"threshold": 50,
|
|
"burstCount": 0,
|
|
"durationInSec": 1
|
|
}
|
|
]
|
|
`
|
|
err := loadRules(rules, newHotSpotParamRuleDataSource)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestIsolationRules(t *testing.T) {
|
|
rules := []*isolation.Rule{
|
|
{
|
|
Resource: "abc",
|
|
MetricType: isolation.Concurrency,
|
|
Threshold: 12,
|
|
},
|
|
}
|
|
|
|
b, _ := json.Marshal(rules)
|
|
t.Logf("%s", b)
|
|
err := loadRules(string(b), newIsolationRuleDataSource)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestSystemRules(t *testing.T) {
|
|
rules := []*system.Rule{
|
|
{
|
|
ID: "test-id",
|
|
MetricType: system.InboundQPS,
|
|
TriggerCount: 1000,
|
|
Strategy: system.BBR,
|
|
},
|
|
}
|
|
|
|
b, _ := json.Marshal(rules)
|
|
t.Logf("%s", b)
|
|
err := loadRules(string(b), newSystemRuleDataSource)
|
|
require.NoError(t, err)
|
|
}
|