Files
go-upnp/upnp_test.go
Serhat Şevki Dinçer a625a89506 Rate-limit Add/Delete port mappings
Fixes #10
2017-12-21 00:23:09 +03:00

82 lines
1.4 KiB
Go

package upnp
import (
"context"
"sync"
"testing"
"time"
)
// TestConcurrentUPNP tests that several threads calling Discover() concurrently
// succeed.
func TestConcurrentUPNP(t *testing.T) {
if testing.Short() {
t.SkipNow()
}
// verify that a router exists
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
defer cancel()
_, err := DiscoverCtx(ctx)
if err != nil {
t.Skip(err)
}
// now try to concurrently Discover() using 20 threads
var wg sync.WaitGroup
for i := 0; i < 20; i++ {
wg.Add(1)
go func() {
defer wg.Done()
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
defer cancel()
_, err := DiscoverCtx(ctx)
if err != nil {
t.Error(err)
}
}()
}
wg.Wait()
}
func TestIGD(t *testing.T) {
// connect to router
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
defer cancel()
d, err := DiscoverCtx(ctx)
if err != nil {
t.Skip(err)
}
// discover external IP
ip, err := d.ExternalIP()
if err != nil {
t.Fatal(err)
}
t.Log("Your external IP is:", ip)
// forward a port
err = d.Forward(9001, "upnp test")
if err != nil {
t.Fatal(err)
}
// un-forward a port
err = d.Clear(9001)
if err != nil {
t.Fatal(err)
}
// record router's location
loc := d.Location()
if err != nil {
t.Fatal(err)
}
t.Log("Loc:", loc)
// connect to router directly
d, err = Load(loc)
if err != nil {
t.Fatal(err)
}
}