Handle WANPPPConnection devices (fixes #431)

This commit is contained in:
Jakob Borg
2014-07-22 19:23:43 +02:00
parent bc0a8fcc1d
commit 88a063434c
3 changed files with 138 additions and 17 deletions

17
upnp/upnp_test.go Normal file
View File

@@ -0,0 +1,17 @@
package upnp
import (
"os"
"testing"
)
func TestGetTechnicolorRootURL(t *testing.T) {
r, _ := os.Open("testdata/technicolor.xml")
_, action, err := getServiceURLReader("http://localhost:1234/", r)
if err != nil {
t.Fatal(err)
}
if action != "urn:schemas-upnp-org:service:WANPPPConnection:1" {
t.Error("Unexpected action", action)
}
}