mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
665 B
31 lines
665 B
package stats_test |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
. "github.com/xtls/xray-core/app/stats" |
|
"github.com/xtls/xray-core/common" |
|
"github.com/xtls/xray-core/features/stats" |
|
) |
|
|
|
func TestStatsCounter(t *testing.T) { |
|
raw, err := common.CreateObject(context.Background(), &Config{}) |
|
common.Must(err) |
|
|
|
m := raw.(stats.Manager) |
|
c, err := m.RegisterCounter("test.counter") |
|
common.Must(err) |
|
|
|
if v := c.Add(1); v != 1 { |
|
t.Fatal("unexpected Add(1) return: ", v, ", wanted ", 1) |
|
} |
|
|
|
if v := c.Set(0); v != 1 { |
|
t.Fatal("unexpected Set(0) return: ", v, ", wanted ", 1) |
|
} |
|
|
|
if v := c.Value(); v != 0 { |
|
t.Fatal("unexpected Value() return: ", v, ", wanted ", 0) |
|
} |
|
}
|
|
|