forked from juju/testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mgo.go
902 lines (823 loc) · 23.4 KB
/
mgo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
// Copyright 2012, 2013 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package testing
import (
"bufio"
"bytes"
"crypto/rsa"
"crypto/tls"
"crypto/x509"
"encoding/pem"
"fmt"
"io"
"io/ioutil"
"net"
"os"
"os/exec"
"path/filepath"
"regexp"
"runtime"
"strconv"
"strings"
"sync"
"testing"
"time"
"github.com/juju/errors"
"github.com/juju/loggo"
"github.com/juju/retry"
jc "github.com/juju/testing/checkers"
"github.com/juju/utils"
"github.com/juju/utils/clock"
"github.com/juju/version"
gc "gopkg.in/check.v1"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
)
var (
// MgoServer is a shared mongo server used by tests.
MgoServer = &MgoInstance{}
logger = loggo.GetLogger("juju.testing")
// regular expression to match output of mongod
waitingForConnectionsRe = regexp.MustCompile(".*initandlisten.*waiting for connections.*")
// After version 3.2 we shouldn't use --nojournal - it makes the
// WiredTiger storage engine much slower.
// https://jira.mongodb.org/browse/SERVER-21198
useJournalMongoVersion = version.Number{Major: 3, Minor: 2}
mongoVersion lazyMongoVersion
)
const (
// Maximum number of times to attempt starting mongod.
maxStartMongodAttempts = 5
// The default password to use when connecting to the mongo database.
DefaultMongoPassword = "conn-from-name-secret"
)
// Certs holds the certificates and keys required to make a secure
// SSL connection.
type Certs struct {
// CACert holds the CA certificate. This must certify the private key that
// was used to sign the server certificate.
CACert *x509.Certificate
// ServerCert holds the certificate that certifies the server's
// private key.
ServerCert *x509.Certificate
// ServerKey holds the server's private key.
ServerKey *rsa.PrivateKey
}
type MgoInstance struct {
// addr holds the address of the MongoDB server
addr string
// MgoPort holds the port of the MongoDB server.
port int
// server holds the running MongoDB command.
server *exec.Cmd
// exited receives a value when the mongodb server exits.
exited <-chan struct{}
// dir holds the directory that MongoDB is running in.
dir string
// certs holds certificates for the TLS connection.
certs *Certs
// Params is a list of additional parameters that will be passed to
// the mongod application
Params []string
// EnableAuth enables authentication/authorization.
EnableAuth bool
// WithoutV8 is true if we believe this Mongo doesn't actually have the
// V8 engine
WithoutV8 bool
}
// Addr returns the address of the MongoDB server.
func (m *MgoInstance) Addr() string {
return m.addr
}
// Port returns the port of the MongoDB server.
func (m *MgoInstance) Port() int {
return m.port
}
// We specify a timeout to mgo.Dial, to prevent
// mongod failures hanging the tests.
const mgoDialTimeout = 60 * time.Second
// MgoSuite is a suite that deletes all content from the shared MongoDB
// server at the end of every test and supplies a connection to the shared
// MongoDB server.
type MgoSuite struct {
Session *mgo.Session
}
// generatePEM receives server certificate and the server private key
// and creates a PEM file in the given path.
func generatePEM(path string, serverCert *x509.Certificate, serverKey *rsa.PrivateKey) error {
pemFile, err := os.Create(path)
if err != nil {
return fmt.Errorf("failed to open %q for writing: %v", path, err)
}
defer pemFile.Close()
err = pem.Encode(pemFile, &pem.Block{
Type: "CERTIFICATE",
Bytes: serverCert.Raw,
})
if err != nil {
return fmt.Errorf("failed to write cert to %q: %v", path, err)
}
err = pem.Encode(pemFile, &pem.Block{
Type: "RSA PRIVATE KEY",
Bytes: x509.MarshalPKCS1PrivateKey(serverKey),
})
if err != nil {
return fmt.Errorf("failed to write private key to %q: %v", path, err)
}
return nil
}
// Start starts a MongoDB server in a temporary directory.
func (inst *MgoInstance) Start(certs *Certs) error {
dbdir, err := ioutil.TempDir("", "test-mgo")
if err != nil {
return err
}
logger.Debugf("starting mongo in %s", dbdir)
// Give them all the same keyfile so they can talk appropriately.
keyFilePath := filepath.Join(dbdir, "keyfile")
err = ioutil.WriteFile(keyFilePath, []byte("not very secret"), 0600)
if err != nil {
return fmt.Errorf("cannot write key file: %v", err)
}
if certs != nil {
// Generate and save the server.pem file.
pemPath := filepath.Join(dbdir, "server.pem")
if err = generatePEM(pemPath, certs.ServerCert, certs.ServerKey); err != nil {
return fmt.Errorf("cannot write cert/key PEM: %v", err)
}
inst.certs = certs
}
// Attempt to start mongo up to maxStartMongodAttempts times,
// as the port we choose may be taken from us in the mean time.
for i := 0; i < maxStartMongodAttempts; i++ {
inst.port = FindTCPPort()
inst.addr = fmt.Sprintf("localhost:%d", inst.port)
inst.dir = dbdir
err = inst.run()
switch err.(type) {
case addrAlreadyInUseError:
logger.Debugf("failed to start mongo: %v, trying another port", err)
continue
case nil:
logger.Debugf("started mongod pid %d in %s on port %d", inst.server.Process.Pid, dbdir, inst.port)
default:
inst.addr = ""
inst.port = 0
os.RemoveAll(inst.dir)
inst.dir = ""
logger.Warningf("failed to start mongo: %v", err)
}
break
}
return err
}
// run runs the MongoDB server at the
// address and directory already configured.
func (inst *MgoInstance) run() error {
if inst.server != nil {
panic("mongo server is already running")
}
mgoport := strconv.Itoa(inst.port)
mgoargs := []string{
"--dbpath", inst.dir,
"--port", mgoport,
"--nssize", "1",
"--noprealloc",
"--smallfiles",
"--nohttpinterface",
"--oplogSize", "10",
"--ipv6",
"--setParameter", "enableTestCommands=1",
}
if runtime.GOOS != "windows" {
mgoargs = append(mgoargs, "--nounixsocket")
}
if inst.EnableAuth {
mgoargs = append(mgoargs,
"--auth",
"--keyFile", filepath.Join(inst.dir, "keyfile"),
)
}
if inst.certs != nil {
mgoargs = append(mgoargs,
"--sslOnNormalPorts",
"--sslPEMKeyFile", filepath.Join(inst.dir, "server.pem"),
"--sslPEMKeyPassword", "ignored")
}
version, err := mongoVersion.Get()
if err != nil {
return err
}
if version.Compare(useJournalMongoVersion) == -1 {
mgoargs = append(mgoargs, "--nojournal")
}
if inst.Params != nil {
mgoargs = append(mgoargs, inst.Params...)
}
mongopath, err := getMongod()
if err != nil {
return err
}
logger.Debugf("found mongod at: %q", mongopath)
if mongopath == "/usr/lib/juju/bin/mongod" {
inst.WithoutV8 = true
}
server := exec.Command(mongopath, mgoargs...)
out, err := server.StdoutPipe()
if err != nil {
return err
}
server.Stderr = server.Stdout
exited := make(chan struct{})
started := make(chan error)
listening := make(chan error, 1)
go func() {
err := <-started
if err != nil {
close(listening)
close(exited)
return
}
// Wait until the server is listening.
var buf bytes.Buffer
prefix := fmt.Sprintf("mongod:%v", mgoport)
if readUntilMatching(prefix, io.TeeReader(out, &buf), waitingForConnectionsRe) {
listening <- nil
} else {
err := fmt.Errorf("mongod failed to listen on port %v", mgoport)
if strings.Contains(buf.String(), "addr already in use") {
err = addrAlreadyInUseError{err}
}
listening <- err
}
// Capture the last 100 lines of output from mongod, to log
// in the event of unclean exit.
lines := readLastLines(prefix, io.MultiReader(&buf, out), 100)
err = server.Wait()
exitErr, _ := err.(*exec.ExitError)
if err == nil || exitErr != nil && exitErr.Exited() {
// mongodb has exited without being killed, so print the
// last few lines of its log output.
logger.Errorf("mongodb has exited without being killed")
for _, line := range lines {
logger.Errorf("mongod: %s", line)
}
}
close(exited)
}()
inst.exited = exited
err = server.Start()
started <- err
if err != nil {
return err
}
err = <-listening
close(listening)
if err != nil {
return err
}
inst.server = server
return nil
}
func getMongod() (string, error) {
// The last path is needed in tests on CentOS where PATH is being completely removed
paths := []string{"mongod", "/usr/lib/juju/bin/mongod", "/usr/local/bin/mongod"}
if path := os.Getenv("JUJU_MONGOD"); path != "" {
paths = append([]string{path}, paths...)
}
var err error
var mongopath string
for _, path := range paths {
mongopath, err = exec.LookPath(path)
if err == nil {
return mongopath, nil
}
logger.Debugf("failed to find %q: %v", path, err)
}
return "", err
}
// The mongod --version line starts with this prefix.
const versionLinePrefix = "db version v"
func detectMongoVersion() (version.Number, error) {
mongoPath, err := getMongod()
if err != nil {
return version.Zero, errors.Trace(err)
}
output, err := exec.Command(mongoPath, "--version").Output()
if err != nil {
return version.Zero, errors.Trace(err)
}
// Read the first line of the output with a scanner (to handle
// newlines in a cross-platform way).
scanner := bufio.NewScanner(bytes.NewReader(output))
versionLine := ""
if scanner.Scan() {
versionLine = scanner.Text()
}
if scanner.Err() != nil {
return version.Zero, errors.Trace(scanner.Err())
}
if !strings.HasPrefix(versionLine, versionLinePrefix) {
return version.Zero, errors.New("couldn't get mongod version - no version line")
}
ver, err := version.Parse(versionLine[len(versionLinePrefix):])
if err != nil {
return version.Zero, errors.Trace(err)
}
logger.Debugf("detected mongod version %v", ver)
return ver, nil
}
// lazyMongoVersion stores the mongod version once we've got it.
type lazyMongoVersion struct {
sync.Mutex
version version.Number
}
func (v *lazyMongoVersion) Get() (version.Number, error) {
v.Lock()
defer v.Unlock()
if v.version == version.Zero {
ver, err := detectMongoVersion()
if err != nil {
return version.Zero, errors.Trace(err)
}
v.version = ver
}
return v.version, nil
}
func (inst *MgoInstance) kill(sig os.Signal) {
inst.server.Process.Signal(sig)
<-inst.exited
inst.server = nil
inst.exited = nil
}
func (inst *MgoInstance) killAndCleanup(sig os.Signal) {
if inst.server != nil {
logger.Debugf("killing mongod pid %d in %s on port %d with %s", inst.server.Process.Pid, inst.dir, inst.port, sig)
inst.kill(sig)
os.RemoveAll(inst.dir)
inst.addr, inst.dir = "", ""
}
}
// Destroy kills mongod and cleans up its data directory.
func (inst *MgoInstance) Destroy() {
inst.killAndCleanup(os.Kill)
}
// Restart restarts the mongo server, useful for
// testing what happens when a state server goes down.
func (inst *MgoInstance) Restart() {
logger.Debugf("restarting mongod pid %d in %s on port %d", inst.server.Process.Pid, inst.dir, inst.port)
inst.kill(os.Kill)
if err := inst.Start(inst.certs); err != nil {
panic(err)
}
}
// MgoTestPackage should be called to register the tests for any package
// that requires a MongoDB server. If certs is non-nil, a secure SSL connection
// will be used from client to server.
func MgoTestPackage(t *testing.T, certs *Certs) {
if err := MgoServer.Start(certs); err != nil {
t.Fatal(err)
}
defer MgoServer.Destroy()
gc.TestingT(t)
}
type mgoLogger struct {
logger loggo.Logger
}
// Output implements the mgo log_Logger interface.
func (s *mgoLogger) Output(calldepth int, message string) error {
s.logger.LogCallf(calldepth, loggo.TRACE, message)
return nil
}
func (s *MgoSuite) SetUpSuite(c *gc.C) {
mgo.SetLogger(&mgoLogger{loggo.GetLogger("mgo")})
mgo.SetDebug(true)
if MgoServer.addr == "" {
c.Fatalf("No Mongo Server Address, MgoSuite tests must be run with MgoTestPackage")
}
mgo.SetStats(true)
// Make tests that use password authentication faster.
utils.FastInsecureHash = true
mgo.ResetStats()
session, err := MgoServer.Dial()
c.Assert(err, jc.ErrorIsNil)
defer session.Close()
err = dropAll(session)
c.Assert(err, jc.ErrorIsNil)
}
// readUntilMatching reads lines from the given reader until the reader
// is depleted or a line matches the given regular expression.
func readUntilMatching(prefix string, r io.Reader, re *regexp.Regexp) bool {
sc := bufio.NewScanner(r)
for sc.Scan() {
line := sc.Text()
logger.Tracef("%s: %s", prefix, line)
if re.MatchString(line) {
return true
}
}
return false
}
// readLastLines reads lines from the given reader and returns
// the last n non-empty lines, ignoring empty lines.
func readLastLines(prefix string, r io.Reader, n int) []string {
sc := bufio.NewScanner(r)
lines := make([]string, n)
i := 0
for sc.Scan() {
if line := strings.TrimRight(sc.Text(), "\n"); line != "" {
logger.Tracef("%s: %s", prefix, line)
lines[i%n] = line
i++
}
}
if err := sc.Err(); err != nil {
panic(err)
}
final := make([]string, 0, n+1)
if i > n {
final = append(final, fmt.Sprintf("[%d lines omitted]", i-n))
}
for j := 0; j < n; j++ {
if line := lines[(j+i)%n]; line != "" {
final = append(final, line)
}
}
return final
}
func (s *MgoSuite) TearDownSuite(c *gc.C) {
err := MgoServer.Reset()
c.Assert(err, jc.ErrorIsNil)
utils.FastInsecureHash = false
mgo.SetDebug(false)
mgo.SetLogger(nil)
}
// Dial returns a new connection to the MongoDB server.
func (inst *MgoInstance) Dial() (*mgo.Session, error) {
var session *mgo.Session
err := retry.Call(retry.CallArgs{
Func: func() error {
var err error
session, err = mgo.DialWithInfo(inst.DialInfo())
return err
},
// Only interested in retrying the intermittent
// 'unexpected message'.
IsFatalError: func(err error) bool {
return !strings.HasSuffix(err.Error(), "unexpected message")
},
Delay: time.Millisecond,
Clock: clock.WallClock,
Attempts: 5,
})
return session, err
}
// DialInfo returns information suitable for dialling the
// receiving MongoDB instance.
func (inst *MgoInstance) DialInfo() *mgo.DialInfo {
return MgoDialInfo(inst.certs, inst.addr)
}
// DialDirect returns a new direct connection to the shared MongoDB server. This
// must be used if you're connecting to a replicaset that hasn't been initiated
// yet.
func (inst *MgoInstance) DialDirect() (*mgo.Session, error) {
info := inst.DialInfo()
info.Direct = true
return mgo.DialWithInfo(info)
}
// MustDialDirect works like DialDirect, but panics on errors.
func (inst *MgoInstance) MustDialDirect() *mgo.Session {
session, err := inst.DialDirect()
if err != nil {
panic(err)
}
return session
}
// MgoDialInfo returns a DialInfo suitable
// for dialling an MgoInstance at any of the
// given addresses, optionally using TLS.
func MgoDialInfo(certs *Certs, addrs ...string) *mgo.DialInfo {
var dial func(addr net.Addr) (net.Conn, error)
if certs != nil {
pool := x509.NewCertPool()
pool.AddCert(certs.CACert)
tlsConfig := &tls.Config{
RootCAs: pool,
ServerName: "anything",
}
dial = func(addr net.Addr) (net.Conn, error) {
conn, err := tls.Dial("tcp", addr.String(), tlsConfig)
if err != nil {
logger.Debugf("tls.Dial(%s) failed with %v", addr, err)
return nil, err
}
return conn, nil
}
} else {
dial = func(addr net.Addr) (net.Conn, error) {
conn, err := net.Dial("tcp", addr.String())
if err != nil {
logger.Debugf("net.Dial(%s) failed with %v", addr, err)
return nil, err
}
return conn, nil
}
}
return &mgo.DialInfo{Addrs: addrs, Dial: dial, Timeout: mgoDialTimeout}
}
func clearDatabases(session *mgo.Session) error {
databases, err := session.DatabaseNames()
if err != nil {
return errors.Trace(err)
}
for _, name := range databases {
err = clearCollections(session.DB(name))
if err != nil {
return errors.Trace(err)
}
}
return nil
}
func clearCollections(db *mgo.Database) error {
collectionNames, err := db.CollectionNames()
if err != nil {
return errors.Trace(err)
}
for _, name := range collectionNames {
if strings.HasPrefix(name, "system.") {
continue
}
collection := db.C(name)
clearFunc := clearNormalCollection
capped, err := isCapped(collection)
if err != nil {
return errors.Trace(err)
}
if capped {
clearFunc = clearCappedCollection
}
err = clearFunc(collection)
if err != nil {
return errors.Trace(err)
}
}
return nil
}
func isCapped(collection *mgo.Collection) (bool, error) {
result := bson.M{}
err := collection.Database.Run(bson.D{{"collstats", collection.Name}}, &result)
if err != nil {
return false, errors.Trace(err)
}
value, found := result["capped"]
if !found {
return false, nil
}
capped, ok := value.(bool)
if !ok {
return false, errors.Errorf("unexpected type for capped: %v", value)
}
return capped, nil
}
func clearNormalCollection(collection *mgo.Collection) error {
_, err := collection.RemoveAll(bson.M{})
return err
}
func clearCappedCollection(collection *mgo.Collection) error {
// This is a test command - relies on the enableTestCommands
// setting being passed to mongo at startup.
return collection.Database.Run(bson.D{{"emptycapped", collection.Name}}, nil)
}
func (s *MgoSuite) SetUpTest(c *gc.C) {
s.Session = nil
mgo.ResetStats()
session, err := MgoServer.Dial()
c.Assert(err, jc.ErrorIsNil)
s.Session = session
}
// Reset deletes all content from the MongoDB server.
func (inst *MgoInstance) Reset() error {
err := inst.EnsureRunning()
if err != nil {
return errors.Trace(err)
}
session, err := inst.Dial()
if err != nil {
return errors.Annotate(err, "inst.Dial() failed")
}
defer session.Close()
dbnames, ok, err := resetAdminPasswordAndFetchDBNames(session)
if err != nil {
return errors.Trace(err)
}
if !ok {
// We restart it to regain access. This should only
// happen when tests fail.
logger.Infof("restarting MongoDB server after unauthorized access")
inst.Destroy()
err := inst.Start(inst.certs)
return errors.Annotatef(err, "inst.Start(%v) failed", inst.certs)
}
logger.Infof("reset successfully reset admin password")
for _, name := range dbnames {
switch name {
case "local", "config":
// don't delete these
continue
}
if err := session.DB(name).DropDatabase(); err != nil {
return errors.Annotatef(err, "cannot drop MongoDB database %v", name)
}
}
return nil
}
// dropAll drops all databases apart from admin, local and config.
func dropAll(session *mgo.Session) (err error) {
names, err := session.DatabaseNames()
if err != nil {
return err
}
for _, name := range names {
switch name {
case "admin", "local", "config":
default:
err = session.DB(name).DropDatabase()
if err != nil {
return err
}
}
}
return nil
}
// resetAdminPasswordAndFetchDBNames logs into the database with a
// plausible password and returns all the database's db names. We need
// to try several passwords because we don't know what state the mongo
// server is in when Reset is called. If the test has set a custom
// password, we're out of luck, but if they are using
// DefaultStatePassword, we can succeed.
func resetAdminPasswordAndFetchDBNames(session *mgo.Session) ([]string, bool, error) {
// First try with no password
dbnames, err := session.DatabaseNames()
if err == nil {
return dbnames, true, nil
}
if !isUnauthorized(err) {
return nil, false, errors.Trace(err)
}
// Then try the two most likely passwords in turn.
for _, password := range []string{
DefaultMongoPassword,
utils.UserPasswordHash(DefaultMongoPassword, utils.CompatSalt),
} {
admin := session.DB("admin")
if err := admin.Login("admin", password); err != nil {
logger.Errorf("failed to log in with password %q", password)
continue
}
dbnames, err := session.DatabaseNames()
if err == nil {
if err := admin.RemoveUser("admin"); err != nil {
return nil, false, errors.Trace(err)
}
return dbnames, true, nil
}
if !isUnauthorized(err) {
return nil, false, errors.Trace(err)
}
logger.Infof("unauthorized access when getting database names; password %q", password)
}
return nil, false, errors.Trace(err)
}
// isUnauthorized is a copy of the same function in state/open.go.
func isUnauthorized(err error) bool {
if err == nil {
return false
}
// Some unauthorized access errors have no error code,
// just a simple error string.
if err.Error() == "auth fails" {
return true
}
if err, ok := err.(*mgo.QueryError); ok {
return err.Code == 10057 ||
err.Message == "need to login" ||
err.Message == "unauthorized"
}
return false
}
func (inst *MgoInstance) EnsureRunning() error {
// If the server has already been destroyed for testing purposes,
// just start it again.
if inst.Addr() == "" {
logger.Debugf("restarting mongo instance")
err := inst.Start(inst.certs)
return errors.Annotatef(err, "inst.Start(%v) failed", inst.certs)
}
return nil
}
func (s *MgoSuite) TearDownTest(c *gc.C) {
if s.Session == nil {
c.Fatal("SetUpTest failed")
}
err := MgoServer.EnsureRunning()
c.Assert(err, jc.ErrorIsNil)
// If the Session we have doesn't know about
// the address of the server, then we should reconnect.
foundAddress := false
for _, addr := range s.Session.LiveServers() {
if addr == MgoServer.Addr() {
foundAddress = true
break
}
}
if !foundAddress {
// The test has killed the server - reconnect.
s.Session.Close()
s.Session, err = MgoServer.Dial()
c.Assert(err, jc.ErrorIsNil)
}
// Rather than dropping the databases (which is very slow in Mongo
// 3.2) we clear all of the collections.
err = clearDatabases(s.Session)
c.Assert(err, jc.ErrorIsNil)
s.Session.Close()
s.Session = nil
for i := 0; ; i++ {
stats := mgo.GetStats()
if stats.SocketsInUse == 0 && stats.SocketsAlive == 0 {
break
}
if i == 20 {
c.Fatal("Test left sockets in a dirty state")
}
c.Logf("Waiting for sockets to die: %d in use, %d alive", stats.SocketsInUse, stats.SocketsAlive)
time.Sleep(500 * time.Millisecond)
}
}
// ProxiedSession represents a mongo session that's
// proxied through a TCPProxy instance.
type ProxiedSession struct {
*mgo.Session
*TCPProxy
}
// NewProxiedSession returns a ProxiedSession instance that holds a
// mgo.Session that directs through a TCPProxy instance to the testing
// mongoDB server, and the proxy instance itself. This allows tests to
// check what happens when mongo connections are broken.
//
// The returned value should be closed after use.
func NewProxiedSession(c *gc.C) *ProxiedSession {
mgoInfo := MgoServer.DialInfo()
c.Assert(mgoInfo.Addrs, gc.HasLen, 1)
proxy := NewTCPProxy(c, mgoInfo.Addrs[0])
mgoInfo.Addrs = []string{proxy.Addr()}
session, err := mgo.DialWithInfo(mgoInfo)
c.Assert(err, gc.IsNil)
return &ProxiedSession{
Session: session,
TCPProxy: proxy,
}
}
// Close closes s.Session and s.TCPProxy.
func (s *ProxiedSession) Close() {
s.Session.Close()
s.TCPProxy.Close()
}
// FindTCPPort finds an unused TCP port and returns it.
// Use of this function has an inherent race condition - another
// process may claim the port before we try to use it.
// We hope that the probability is small enough during
// testing to be negligible.
func FindTCPPort() int {
l, err := net.Listen("tcp", ":0")
if err != nil {
panic(err)
}
l.Close()
return l.Addr().(*net.TCPAddr).Port
}
type addrAlreadyInUseError struct {
error
}
// IsolatedMgoSuite is a convenience type that combines the functionality
// IsolationSuite and MgoSuite.
type IsolatedMgoSuite struct {
IsolationSuite
MgoSuite
}
func (s *IsolatedMgoSuite) SetUpSuite(c *gc.C) {
s.IsolationSuite.SetUpSuite(c)
s.MgoSuite.SetUpSuite(c)
}
func (s *IsolatedMgoSuite) TearDownSuite(c *gc.C) {
s.MgoSuite.TearDownSuite(c)
s.IsolationSuite.TearDownSuite(c)
}
func (s *IsolatedMgoSuite) SetUpTest(c *gc.C) {
s.IsolationSuite.SetUpTest(c)
s.MgoSuite.SetUpTest(c)
}
func (s *IsolatedMgoSuite) TearDownTest(c *gc.C) {
s.MgoSuite.TearDownTest(c)
s.IsolationSuite.TearDownTest(c)
}