mirror of
https://github.com/pgsty/minio.git
synced 2026-09-05 18:16:16 +03:00
9b11dc9469
Adopt silo-pkg v3.13.2, the 20260903 mcli release, and the latest validated SILO Console commit. Move maintained source imports to the pgsty/silo-pkg module path, refresh the resulting dependency closure and credits, and keep only documented legacy minio/pkg transitive residue. Signed-off-by: Feng Ruohang <rh@vonng.com>
132 lines
3.0 KiB
Go
132 lines
3.0 KiB
Go
/*
|
|
* MinIO Object Storage (c) 2021-2023 MinIO, Inc.
|
|
*
|
|
* 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
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package target
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nats-io/nats-server/v2/server"
|
|
|
|
natsserver "github.com/nats-io/nats-server/v2/test"
|
|
xnet "github.com/pgsty/silo-pkg/v3/net"
|
|
)
|
|
|
|
func TestNatsConnPlain(t *testing.T) {
|
|
opts := natsserver.DefaultTestOptions
|
|
opts.Port = 14222
|
|
s := natsserver.RunServer(&opts)
|
|
defer s.Shutdown()
|
|
|
|
clientConfig := &NATSArgs{
|
|
Enable: true,
|
|
Address: xnet.Host{
|
|
Name: "localhost",
|
|
Port: xnet.Port(opts.Port),
|
|
IsPortSet: true,
|
|
},
|
|
Subject: "test",
|
|
}
|
|
con, err := clientConfig.connectNats()
|
|
if err != nil {
|
|
t.Errorf("Could not connect to nats: %v", err)
|
|
}
|
|
defer con.Close()
|
|
}
|
|
|
|
func TestNatsConnUserPass(t *testing.T) {
|
|
opts := natsserver.DefaultTestOptions
|
|
opts.Port = 14223
|
|
opts.Username = "testminio"
|
|
opts.Password = "miniotest"
|
|
s := natsserver.RunServer(&opts)
|
|
defer s.Shutdown()
|
|
|
|
clientConfig := &NATSArgs{
|
|
Enable: true,
|
|
Address: xnet.Host{
|
|
Name: "localhost",
|
|
Port: xnet.Port(opts.Port),
|
|
IsPortSet: true,
|
|
},
|
|
Subject: "test",
|
|
Username: opts.Username,
|
|
Password: opts.Password,
|
|
}
|
|
|
|
con, err := clientConfig.connectNats()
|
|
if err != nil {
|
|
t.Errorf("Could not connect to nats: %v", err)
|
|
}
|
|
defer con.Close()
|
|
}
|
|
|
|
func TestNatsConnToken(t *testing.T) {
|
|
opts := natsserver.DefaultTestOptions
|
|
opts.Port = 14223
|
|
opts.Authorization = "s3cr3t"
|
|
s := natsserver.RunServer(&opts)
|
|
defer s.Shutdown()
|
|
|
|
clientConfig := &NATSArgs{
|
|
Enable: true,
|
|
Address: xnet.Host{
|
|
Name: "localhost",
|
|
Port: xnet.Port(opts.Port),
|
|
IsPortSet: true,
|
|
},
|
|
Subject: "test",
|
|
Token: opts.Authorization,
|
|
}
|
|
|
|
con, err := clientConfig.connectNats()
|
|
if err != nil {
|
|
t.Errorf("Could not connect to nats: %v", err)
|
|
}
|
|
defer con.Close()
|
|
}
|
|
|
|
func TestNatsConnNKeySeed(t *testing.T) {
|
|
opts := natsserver.DefaultTestOptions
|
|
opts.Port = 14223
|
|
opts.Nkeys = []*server.NkeyUser{
|
|
{
|
|
// Not a real NKey
|
|
// Taken from https://docs.nats.io/running-a-nats-service/configuration/securing_nats/auth_intro/nkey_auth
|
|
Nkey: "UDXU4RCSJNZOIQHZNWXHXORDPRTGNJAHAHFRGZNEEJCPQTT2M7NLCNF4",
|
|
},
|
|
}
|
|
s := natsserver.RunServer(&opts)
|
|
defer s.Shutdown()
|
|
|
|
clientConfig := &NATSArgs{
|
|
Enable: true,
|
|
Address: xnet.Host{
|
|
Name: "localhost",
|
|
Port: xnet.Port(opts.Port),
|
|
IsPortSet: true,
|
|
},
|
|
Subject: "test",
|
|
NKeySeed: "testdata/contrib/test.nkey",
|
|
}
|
|
|
|
con, err := clientConfig.connectNats()
|
|
if err != nil {
|
|
t.Errorf("Could not connect to nats: %v", err)
|
|
}
|
|
defer con.Close()
|
|
}
|