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
|
// Copyright (C) MongoDB, Inc. 2017-present.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
package auth_test
import (
"context"
"strings"
"testing"
"encoding/base64"
"go.mongodb.org/mongo-driver/mongo/description"
"go.mongodb.org/mongo-driver/x/bsonx/bsoncore"
. "go.mongodb.org/mongo-driver/x/mongo/driver/auth"
"go.mongodb.org/mongo-driver/x/mongo/driver/drivertest"
)
func TestPlainAuthenticator_Fails(t *testing.T) {
t.Parallel()
authenticator := PlainAuthenticator{
Username: "user",
Password: "pencil",
}
resps := make(chan []byte, 1)
writeReplies(t, resps, bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendInt32Element(nil, "ok", 1),
bsoncore.AppendInt32Element(nil, "conversationId", 1),
bsoncore.AppendBinaryElement(nil, "payload", 0x00, []byte{}),
bsoncore.AppendInt32Element(nil, "code", 143),
bsoncore.AppendBooleanElement(nil, "done", true),
))
desc := description.Server{
WireVersion: &description.VersionRange{
Max: 6,
},
}
c := &drivertest.ChannelConn{
Written: make(chan []byte, 1),
ReadResp: resps,
Desc: desc,
}
err := authenticator.Auth(context.Background(), &Config{Description: desc, Connection: c})
if err == nil {
t.Fatalf("expected an error but got none")
}
errPrefix := "unable to authenticate using mechanism \"PLAIN\""
if !strings.HasPrefix(err.Error(), errPrefix) {
t.Fatalf("expected an err starting with \"%s\" but got \"%s\"", errPrefix, err)
}
}
func TestPlainAuthenticator_Extra_server_message(t *testing.T) {
t.Parallel()
authenticator := PlainAuthenticator{
Username: "user",
Password: "pencil",
}
resps := make(chan []byte, 2)
writeReplies(t, resps, bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendInt32Element(nil, "ok", 1),
bsoncore.AppendInt32Element(nil, "conversationId", 1),
bsoncore.AppendBinaryElement(nil, "payload", 0x00, []byte{}),
bsoncore.AppendBooleanElement(nil, "done", false),
), bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendInt32Element(nil, "ok", 1),
bsoncore.AppendInt32Element(nil, "conversationId", 1),
bsoncore.AppendBinaryElement(nil, "payload", 0x00, []byte{}),
bsoncore.AppendBooleanElement(nil, "done", true),
))
desc := description.Server{
WireVersion: &description.VersionRange{
Max: 6,
},
}
c := &drivertest.ChannelConn{
Written: make(chan []byte, 1),
ReadResp: resps,
Desc: desc,
}
err := authenticator.Auth(context.Background(), &Config{Description: desc, Connection: c})
if err == nil {
t.Fatalf("expected an error but got none")
}
errPrefix := "unable to authenticate using mechanism \"PLAIN\": unexpected server challenge"
if !strings.HasPrefix(err.Error(), errPrefix) {
t.Fatalf("expected an err starting with \"%s\" but got \"%s\"", errPrefix, err)
}
}
func TestPlainAuthenticator_Succeeds(t *testing.T) {
t.Parallel()
authenticator := PlainAuthenticator{
Username: "user",
Password: "pencil",
}
resps := make(chan []byte, 1)
writeReplies(t, resps, bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendInt32Element(nil, "ok", 1),
bsoncore.AppendInt32Element(nil, "conversationId", 1),
bsoncore.AppendBinaryElement(nil, "payload", 0x00, []byte{}),
bsoncore.AppendBooleanElement(nil, "done", true),
))
desc := description.Server{
WireVersion: &description.VersionRange{
Max: 6,
},
}
c := &drivertest.ChannelConn{
Written: make(chan []byte, 1),
ReadResp: resps,
Desc: desc,
}
err := authenticator.Auth(context.Background(), &Config{Description: desc, Connection: c})
if err != nil {
t.Fatalf("expected no error but got \"%s\"", err)
}
if len(c.Written) != 1 {
t.Fatalf("expected 1 messages to be sent but had %d", len(c.Written))
}
payload, _ := base64.StdEncoding.DecodeString("AHVzZXIAcGVuY2ls")
expectedCmd := bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendInt32Element(nil, "saslStart", 1),
bsoncore.AppendStringElement(nil, "mechanism", "PLAIN"),
bsoncore.AppendBinaryElement(nil, "payload", 0x00, payload),
)
compareResponses(t, <-c.Written, expectedCmd, "$external")
}
|