forked from eclipse-paho/paho.mqtt.golang
-
Notifications
You must be signed in to change notification settings - Fork 2
/
unit_message_test.go
52 lines (42 loc) · 1.13 KB
/
unit_message_test.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
/*
* Copyright (c) 2013 IBM Corp.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Andrew Young
*/
package mqtt
import (
"testing"
)
func Test_UsernamePassword(t *testing.T) {
options := NewClientOptions()
options.Username = "username"
options.Password = "password"
m := newConnectMsgFromOptions(options)
if m.Username != "username" {
t.Fatalf("Username not set correctly")
}
if string(m.Password) != "password" {
t.Fatalf("Password not set correctly")
}
}
func Test_CredentialsProvider(t *testing.T) {
options := NewClientOptions()
options.Username = "incorrect"
options.Password = "incorrect"
options.SetCredentialsProvider(func() (username string, password string) {
return "username", "password"
})
m := newConnectMsgFromOptions(options)
if m.Username != "username" {
t.Fatalf("Username not set correctly")
}
if string(m.Password) != "password" {
t.Fatalf("Password not set correctly")
}
}