mirror of
https://github.com/golang/go
synced 2024-11-19 07:54:43 -07:00
f77e10fb2e
This change simplifies unnecessarily redundant error messages in tests. There's no need to worry any more because package APIs now return consistent, self-descriptive error values. Alos renames ambiguous test functions and makes use of test tables. Change-Id: I7b61027607c4ae2a3cf605d08d58cf449fa27eb2 Reviewed-on: https://go-review.googlesource.com/9662 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package net
|
|
|
|
import (
|
|
"runtime"
|
|
"testing"
|
|
)
|
|
|
|
var portTests = []struct {
|
|
network string
|
|
name string
|
|
port int
|
|
ok bool
|
|
}{
|
|
{"tcp", "echo", 7, true},
|
|
{"tcp", "discard", 9, true},
|
|
{"tcp", "systat", 11, true},
|
|
{"tcp", "daytime", 13, true},
|
|
{"tcp", "chargen", 19, true},
|
|
{"tcp", "ftp-data", 20, true},
|
|
{"tcp", "ftp", 21, true},
|
|
{"tcp", "telnet", 23, true},
|
|
{"tcp", "smtp", 25, true},
|
|
{"tcp", "time", 37, true},
|
|
{"tcp", "domain", 53, true},
|
|
{"tcp", "finger", 79, true},
|
|
|
|
{"udp", "echo", 7, true},
|
|
{"udp", "tftp", 69, true},
|
|
{"udp", "bootpc", 68, true},
|
|
{"udp", "bootps", 67, true},
|
|
{"udp", "domain", 53, true},
|
|
{"udp", "ntp", 123, true},
|
|
{"udp", "snmp", 161, true},
|
|
{"udp", "syslog", 514, true},
|
|
|
|
{"--badnet--", "zzz", 0, false},
|
|
{"tcp", "--badport--", 0, false},
|
|
}
|
|
|
|
func TestLookupPort(t *testing.T) {
|
|
switch runtime.GOOS {
|
|
case "nacl":
|
|
t.Skipf("not supported on %s", runtime.GOOS)
|
|
}
|
|
|
|
for _, tt := range portTests {
|
|
if port, err := LookupPort(tt.network, tt.name); port != tt.port || (err == nil) != tt.ok {
|
|
t.Errorf("LookupPort(%q, %q) = %v, %v; want %v", tt.network, tt.name, port, err, tt.port)
|
|
}
|
|
}
|
|
}
|