blob: 2dacd975e7ac86af7e19eb0d0a4b4e1a96e721e6 [file] [log] [blame]
Russ Cox83348f92008-12-18 15:42:39 -08001// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package net
6
7import (
Mikio Hara484cc672014-09-18 19:17:55 +09008 "runtime"
Robert Griesemera3d10452009-12-15 15:35:38 -08009 "testing"
Russ Cox83348f92008-12-18 15:42:39 -080010)
11
Mikio Haraf77e10f2015-05-01 12:38:42 +090012var portTests = []struct {
13 network string
14 name string
15 port int
16 ok bool
17}{
Robert Griesemer34788912010-10-22 10:06:33 -070018 {"tcp", "echo", 7, true},
19 {"tcp", "discard", 9, true},
20 {"tcp", "systat", 11, true},
21 {"tcp", "daytime", 13, true},
22 {"tcp", "chargen", 19, true},
23 {"tcp", "ftp-data", 20, true},
24 {"tcp", "ftp", 21, true},
25 {"tcp", "telnet", 23, true},
26 {"tcp", "smtp", 25, true},
27 {"tcp", "time", 37, true},
28 {"tcp", "domain", 53, true},
Robert Griesemer34788912010-10-22 10:06:33 -070029 {"tcp", "finger", 79, true},
Russ Cox83348f92008-12-18 15:42:39 -080030
Robert Griesemer34788912010-10-22 10:06:33 -070031 {"udp", "echo", 7, true},
32 {"udp", "tftp", 69, true},
33 {"udp", "bootpc", 68, true},
34 {"udp", "bootps", 67, true},
35 {"udp", "domain", 53, true},
36 {"udp", "ntp", 123, true},
37 {"udp", "snmp", 161, true},
38 {"udp", "syslog", 514, true},
Russ Cox83348f92008-12-18 15:42:39 -080039
Robert Griesemer34788912010-10-22 10:06:33 -070040 {"--badnet--", "zzz", 0, false},
41 {"tcp", "--badport--", 0, false},
Russ Coxbe2edb52009-03-03 08:39:12 -080042}
Russ Cox83348f92008-12-18 15:42:39 -080043
Russ Cox839a6842009-01-20 14:40:40 -080044func TestLookupPort(t *testing.T) {
Mikio Hara484cc672014-09-18 19:17:55 +090045 switch runtime.GOOS {
46 case "nacl":
Mikio Haraf77e10f2015-05-01 12:38:42 +090047 t.Skipf("not supported on %s", runtime.GOOS)
Mikio Hara484cc672014-09-18 19:17:55 +090048 }
49
Mikio Haraf77e10f2015-05-01 12:38:42 +090050 for _, tt := range portTests {
51 if port, err := LookupPort(tt.network, tt.name); port != tt.port || (err == nil) != tt.ok {
52 t.Errorf("LookupPort(%q, %q) = %v, %v; want %v", tt.network, tt.name, port, err, tt.port)
Russ Cox83348f92008-12-18 15:42:39 -080053 }
54 }
55}