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

Delta Between Two Patch Sets: src/pkg/database/sql/sql_test.go

Issue 14642044: code review 14642044: database/sql: Fix connection leaks and numOpen count (Closed)
Left Patch Set: diff -r a10c7a350ab5 https://code.google.com/p/go Created 11 years, 5 months ago
Right Patch Set: diff -r 9d0d95344a6c https://code.google.com/p/go Created 11 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/database/sql/sql.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package sql 5 package sql
6 6
7 import ( 7 import (
8 "database/sql/driver" 8 "database/sql/driver"
9 "errors" 9 "errors"
10 "fmt" 10 "fmt"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 // their statements first, then we can safely 87 // their statements first, then we can safely
88 // verify this is always zero here, and any 88 // verify this is always zero here, and any
89 // other value is a leak. 89 // other value is a leak.
90 t.Errorf("while closing db, freeConn %d/%d had %d open s tmts; want 0", i, db.freeConn.Len(), n) 90 t.Errorf("while closing db, freeConn %d/%d had %d open s tmts; want 0", i, db.freeConn.Len(), n)
91 } 91 }
92 } 92 }
93 err := db.Close() 93 err := db.Close()
94 if err != nil { 94 if err != nil {
95 t.Fatalf("error closing DB: %v", err) 95 t.Fatalf("error closing DB: %v", err)
96 } 96 }
97 » runtime.GC() 97 » db.mu.Lock()
98 » if db.numOpen != 0 { 98 » count := db.numOpen
99 » db.mu.Unlock()
100 » if count != 0 {
99 t.Fatalf("%d connections still open after closing DB", db.numOpe n) 101 t.Fatalf("%d connections still open after closing DB", db.numOpe n)
100 } 102 }
101 } 103 }
102 104
103 // numPrepares assumes that db has exactly 1 idle conn and returns 105 // numPrepares assumes that db has exactly 1 idle conn and returns
104 // its count of calls to Prepare 106 // its count of calls to Prepare
105 func numPrepares(t *testing.T, db *DB) int { 107 func numPrepares(t *testing.T, db *DB) int {
106 if n := db.freeConn.Len(); n != 1 { 108 if n := db.freeConn.Len(); n != 1 {
107 t.Fatalf("free conns = %d; want 1", n) 109 t.Fatalf("free conns = %d; want 1", n)
108 } 110 }
(...skipping 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after
1731 } 1733 }
1732 } 1734 }
1733 1735
1734 func BenchmarkConcurrentRandom(b *testing.B) { 1736 func BenchmarkConcurrentRandom(b *testing.B) {
1735 b.ReportAllocs() 1737 b.ReportAllocs()
1736 ct := new(concurrentRandomTest) 1738 ct := new(concurrentRandomTest)
1737 for i := 0; i < b.N; i++ { 1739 for i := 0; i < b.N; i++ {
1738 doConcurrentTest(b, ct) 1740 doConcurrentTest(b, ct)
1739 } 1741 }
1740 } 1742 }
LEFTRIGHT

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