mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-02 22:17:10 +08:00

Moved main method to top-level cmd directory. Extracted its dockerfile as well. Signed-off-by: Dejan Mijic <dejan@mainflux.com>
94 lines
2.4 KiB
Go
94 lines
2.4 KiB
Go
// Copyright 2015 Apcera Inc. All rights reserved.
|
|
|
|
package test
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/nats-io/gnatsd/server"
|
|
"github.com/nats-io/go-nats"
|
|
|
|
gnatsd "github.com/nats-io/gnatsd/test"
|
|
)
|
|
|
|
// So that we can pass tests and benchmarks...
|
|
type tLogger interface {
|
|
Fatalf(format string, args ...interface{})
|
|
Errorf(format string, args ...interface{})
|
|
}
|
|
|
|
// TestLogger
|
|
type TestLogger tLogger
|
|
|
|
// Dumb wait program to sync on callbacks, etc... Will timeout
|
|
func Wait(ch chan bool) error {
|
|
return WaitTime(ch, 5*time.Second)
|
|
}
|
|
|
|
// Wait for a chan with a timeout.
|
|
func WaitTime(ch chan bool, timeout time.Duration) error {
|
|
select {
|
|
case <-ch:
|
|
return nil
|
|
case <-time.After(timeout):
|
|
}
|
|
return errors.New("timeout")
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Creating client connections
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// NewDefaultConnection
|
|
func NewDefaultConnection(t tLogger) *nats.Conn {
|
|
return NewConnection(t, nats.DefaultPort)
|
|
}
|
|
|
|
// NewConnection forms connection on a given port.
|
|
func NewConnection(t tLogger, port int) *nats.Conn {
|
|
url := fmt.Sprintf("nats://localhost:%d", port)
|
|
nc, err := nats.Connect(url)
|
|
if err != nil {
|
|
t.Fatalf("Failed to create default connection: %v\n", err)
|
|
return nil
|
|
}
|
|
return nc
|
|
}
|
|
|
|
// NewEConn
|
|
func NewEConn(t tLogger) *nats.EncodedConn {
|
|
ec, err := nats.NewEncodedConn(NewDefaultConnection(t), nats.DEFAULT_ENCODER)
|
|
if err != nil {
|
|
t.Fatalf("Failed to create an encoded connection: %v\n", err)
|
|
}
|
|
return ec
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Running gnatsd server in separate Go routines
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// RunDefaultServer will run a server on the default port.
|
|
func RunDefaultServer() *server.Server {
|
|
return RunServerOnPort(nats.DefaultPort)
|
|
}
|
|
|
|
// RunServerOnPort will run a server on the given port.
|
|
func RunServerOnPort(port int) *server.Server {
|
|
opts := gnatsd.DefaultTestOptions
|
|
opts.Port = port
|
|
return RunServerWithOptions(opts)
|
|
}
|
|
|
|
// RunServerWithOptions will run a server with the given options.
|
|
func RunServerWithOptions(opts server.Options) *server.Server {
|
|
return gnatsd.RunServer(&opts)
|
|
}
|
|
|
|
// RunServerWithConfig will run a server with the given configuration file.
|
|
func RunServerWithConfig(configFile string) (*server.Server, *server.Options) {
|
|
return gnatsd.RunServerWithConfig(configFile)
|
|
}
|