2012-11-21 08:03:38 +01:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2015-10-31 01:59:47 +01:00
|
|
|
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris windows
|
2012-11-21 08:03:38 +01:00
|
|
|
|
|
|
|
package net
|
|
|
|
|
|
|
|
import (
|
2012-12-13 00:13:29 +01:00
|
|
|
"io"
|
|
|
|
"syscall"
|
2012-11-21 08:03:38 +01:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2015-10-31 01:59:47 +01:00
|
|
|
var eofErrorTests = []struct {
|
2012-12-13 00:13:29 +01:00
|
|
|
n int
|
|
|
|
err error
|
|
|
|
fd *netFD
|
|
|
|
expected error
|
|
|
|
}{
|
|
|
|
{100, nil, &netFD{sotype: syscall.SOCK_STREAM}, nil},
|
|
|
|
{100, io.EOF, &netFD{sotype: syscall.SOCK_STREAM}, io.EOF},
|
|
|
|
{100, errClosing, &netFD{sotype: syscall.SOCK_STREAM}, errClosing},
|
|
|
|
{0, nil, &netFD{sotype: syscall.SOCK_STREAM}, io.EOF},
|
|
|
|
{0, io.EOF, &netFD{sotype: syscall.SOCK_STREAM}, io.EOF},
|
|
|
|
{0, errClosing, &netFD{sotype: syscall.SOCK_STREAM}, errClosing},
|
|
|
|
|
|
|
|
{100, nil, &netFD{sotype: syscall.SOCK_DGRAM}, nil},
|
|
|
|
{100, io.EOF, &netFD{sotype: syscall.SOCK_DGRAM}, io.EOF},
|
|
|
|
{100, errClosing, &netFD{sotype: syscall.SOCK_DGRAM}, errClosing},
|
|
|
|
{0, nil, &netFD{sotype: syscall.SOCK_DGRAM}, nil},
|
|
|
|
{0, io.EOF, &netFD{sotype: syscall.SOCK_DGRAM}, io.EOF},
|
|
|
|
{0, errClosing, &netFD{sotype: syscall.SOCK_DGRAM}, errClosing},
|
|
|
|
|
|
|
|
{100, nil, &netFD{sotype: syscall.SOCK_SEQPACKET}, nil},
|
|
|
|
{100, io.EOF, &netFD{sotype: syscall.SOCK_SEQPACKET}, io.EOF},
|
|
|
|
{100, errClosing, &netFD{sotype: syscall.SOCK_SEQPACKET}, errClosing},
|
|
|
|
{0, nil, &netFD{sotype: syscall.SOCK_SEQPACKET}, io.EOF},
|
|
|
|
{0, io.EOF, &netFD{sotype: syscall.SOCK_SEQPACKET}, io.EOF},
|
|
|
|
{0, errClosing, &netFD{sotype: syscall.SOCK_SEQPACKET}, errClosing},
|
|
|
|
|
|
|
|
{100, nil, &netFD{sotype: syscall.SOCK_RAW}, nil},
|
|
|
|
{100, io.EOF, &netFD{sotype: syscall.SOCK_RAW}, io.EOF},
|
|
|
|
{100, errClosing, &netFD{sotype: syscall.SOCK_RAW}, errClosing},
|
|
|
|
{0, nil, &netFD{sotype: syscall.SOCK_RAW}, nil},
|
|
|
|
{0, io.EOF, &netFD{sotype: syscall.SOCK_RAW}, io.EOF},
|
|
|
|
{0, errClosing, &netFD{sotype: syscall.SOCK_RAW}, errClosing},
|
|
|
|
}
|
|
|
|
|
2015-10-31 01:59:47 +01:00
|
|
|
func TestEOFError(t *testing.T) {
|
|
|
|
for _, tt := range eofErrorTests {
|
|
|
|
actual := tt.fd.eofError(tt.n, tt.err)
|
2012-12-13 00:13:29 +01:00
|
|
|
if actual != tt.expected {
|
2015-10-31 01:59:47 +01:00
|
|
|
t.Errorf("eofError(%v, %v, %v): expected %v, actual %v", tt.n, tt.err, tt.fd.sotype, tt.expected, actual)
|
2012-12-13 00:13:29 +01:00
|
|
|
}
|
|
|
|
}
|
2012-11-21 08:03:38 +01:00
|
|
|
}
|