Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(202)

Unified Diff: src/pkg/net/timeout_test.go

Issue 154177: code review 154177: net: enforce timeouts for ReadFrom/WriteTo (Closed)
Patch Set: code review 154177: net: enforce timeouts for ReadFrom/WriteTo Created 15 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pkg/net/server_test.go ('k') | src/pkg/net/udpsock.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/net/timeout_test.go
===================================================================
--- a/src/pkg/net/timeout_test.go
+++ b/src/pkg/net/timeout_test.go
@@ -5,11 +5,12 @@
package net
import (
+ "os";
"testing";
"time";
)
-func testTimeout(t *testing.T, network, addr string) {
+func testTimeout(t *testing.T, network, addr string, readFrom bool) {
fd, err := Dial(network, "", addr);
defer fd.Close();
if err != nil {
@@ -18,21 +19,34 @@
t0 := time.Nanoseconds();
fd.SetReadTimeout(1e8); // 100ms
var b [100]byte;
- n, err1 := fd.Read(&b);
+ var n int;
+ var err1 os.Error;
+ if readFrom {
+ n, _, err1 = fd.(PacketConn).ReadFrom(&b)
+ } else {
+ n, err1 = fd.Read(&b)
+ }
t1 := time.Nanoseconds();
+ what := "Read";
+ if readFrom {
+ what = "ReadFrom"
+ }
if n != 0 || !isEAGAIN(err1) {
- t.Errorf("fd.Read on %s %s did not return 0, EAGAIN: %v, %v", network, addr, n, err1)
+ t.Errorf("fd.%s on %s %s did not return 0, EAGAIN: %v, %v", what, network, addr, n, err1)
}
if t1-t0 < 0.5e8 || t1-t0 > 1.5e8 {
- t.Errorf("fd.Read on %s %s took %f seconds, expected 0.1", network, addr, float64(t1-t0)/1e9)
+ t.Errorf("fd.%s on %s %s took %f seconds, expected 0.1", what, network, addr, float64(t1-t0)/1e9)
}
}
-func TestTimeoutUDP(t *testing.T) { testTimeout(t, "udp", "127.0.0.1:53") }
+func TestTimeoutUDP(t *testing.T) {
+ testTimeout(t, "udp", "127.0.0.1:53", false);
+ testTimeout(t, "udp", "127.0.0.1:53", true);
+}
func TestTimeoutTCP(t *testing.T) {
// 74.125.19.99 is www.google.com.
// could use dns, but dns depends on
// timeouts and this is the timeout test.
- testTimeout(t, "tcp", "74.125.19.99:80")
+ testTimeout(t, "tcp", "74.125.19.99:80", false)
}
« no previous file with comments | « src/pkg/net/server_test.go ('k') | src/pkg/net/udpsock.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b