Files
webrtc/internal/ice/gatherer_test.go
2019-06-07 20:05:55 -07:00

63 lines
1.1 KiB
Go

// +build !js
package ice
import (
"testing"
"time"
"github.com/pion/logging"
"github.com/pion/transport/test"
)
func TestGatherer_Success(t *testing.T) {
// Limit runtime in case of deadlocks
lim := test.TimeOut(time.Second * 20)
defer lim.Stop()
report := test.CheckRoutines(t)
defer report()
opts := GatherOptions{
ICEServers: []Server{{URLs: []string{"stun:stun.l.google.com:19302"}}},
}
gatherer, err := NewGatherer(0, 0, nil, nil, nil, nil, nil, nil, nil, logging.NewDefaultLoggerFactory(), false, nil, opts)
if err != nil {
t.Error(err)
}
if gatherer.State() != GathererStateNew {
t.Fatalf("Expected gathering state new")
}
err = gatherer.Gather()
if err != nil {
t.Error(err)
}
params, err := gatherer.GetLocalParameters()
if err != nil {
t.Error(err)
}
if len(params.UsernameFragment) == 0 ||
len(params.Password) == 0 {
t.Fatalf("Empty local username or password frag")
}
candidates, err := gatherer.GetLocalCandidates()
if err != nil {
t.Error(err)
}
if len(candidates) == 0 {
t.Fatalf("No candidates gathered")
}
err = gatherer.Close()
if err != nil {
t.Error(err)
}
}