1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 10:45:22 +00:00
v2fly/app/stats/stats_test.go

87 lines
2.0 KiB
Go
Raw Normal View History

2018-03-30 17:56:59 +00:00
package stats_test
import (
2018-03-30 21:17:28 +00:00
"context"
2018-03-30 17:56:59 +00:00
"testing"
"time"
2018-03-30 17:56:59 +00:00
2021-02-16 20:31:50 +00:00
. "github.com/v2fly/v2ray-core/v4/app/stats"
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/features/stats"
2018-03-30 17:56:59 +00:00
)
func TestInterface(t *testing.T) {
2019-01-08 22:27:02 +00:00
_ = (stats.Manager)(new(Manager))
2018-03-30 17:56:59 +00:00
}
2018-03-30 21:17:28 +00:00
func TestStatsChannelRunnable(t *testing.T) {
2018-03-30 21:17:28 +00:00
raw, err := common.CreateObject(context.Background(), &Config{})
2019-01-08 22:27:02 +00:00
common.Must(err)
2018-03-30 21:17:28 +00:00
m := raw.(stats.Manager)
ch1, err := m.RegisterChannel("test.channel.1")
c1 := ch1.(*Channel)
2019-01-08 22:27:02 +00:00
common.Must(err)
if c1.Running() {
t.Fatalf("unexpected running channel: test.channel.%d", 1)
2019-01-08 22:27:02 +00:00
}
common.Must(m.Start())
2018-03-30 21:17:28 +00:00
if !c1.Running() {
t.Fatalf("unexpected non-running channel: test.channel.%d", 1)
2019-01-08 22:27:02 +00:00
}
ch2, err := m.RegisterChannel("test.channel.2")
c2 := ch2.(*Channel)
common.Must(err)
if !c2.Running() {
t.Fatalf("unexpected non-running channel: test.channel.%d", 2)
}
s1, err := c1.Subscribe()
common.Must(err)
common.Must(c1.Close())
if c1.Running() {
t.Fatalf("unexpected running channel: test.channel.%d", 1)
}
select { // Check all subscribers in closed channel are closed
case _, ok := <-s1:
if ok {
t.Fatalf("unexpected non-closed subscriber in channel: test.channel.%d", 1)
}
case <-time.After(500 * time.Millisecond):
t.Fatalf("unexpected non-closed subscriber in channel: test.channel.%d", 1)
}
if len(c1.Subscribers()) != 0 { // Check subscribers in closed channel are emptied
t.Fatalf("unexpected non-empty subscribers in channel: test.channel.%d", 1)
}
common.Must(m.Close())
if c2.Running() {
t.Fatalf("unexpected running channel: test.channel.%d", 2)
}
ch3, err := m.RegisterChannel("test.channel.3")
c3 := ch3.(*Channel)
common.Must(err)
if c3.Running() {
t.Fatalf("unexpected running channel: test.channel.%d", 3)
}
common.Must(c3.Start())
common.Must(m.UnregisterChannel("test.channel.3"))
if c3.Running() { // Test that unregistering will close the channel.
t.Fatalf("unexpected running channel: test.channel.%d", 3)
}
}