123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /*
- * 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 (
- "net/url"
- "testing"
- )
- func Test_UsernamePassword(t *testing.T) {
- options := NewClientOptions()
- options.Username = "username"
- options.Password = "password"
- m := newConnectMsgFromOptions(options, &url.URL{})
- 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, &url.URL{})
- if m.Username != "username" {
- t.Fatalf("Username not set correctly")
- }
- if string(m.Password) != "password" {
- t.Fatalf("Password not set correctly")
- }
- }
- func Test_BrokerCredentials(t *testing.T) {
- m := newConnectMsgFromOptions(
- NewClientOptions(),
- &url.URL{User: url.UserPassword("username", "password")},
- )
- if m.Username != "username" {
- t.Fatalf("Username not set correctly")
- }
- if string(m.Password) != "password" {
- t.Fatalf("Password not set correctly")
- }
- }
|