-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from Icinga/redis-database-human-representation
db.DB/redis.Client: Details in Address for GetAddr
- Loading branch information
Showing
4 changed files
with
269 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
package database | ||
|
||
import ( | ||
"github.com/icinga/icinga-go-library/config" | ||
"github.com/icinga/icinga-go-library/logging" | ||
"github.com/stretchr/testify/require" | ||
"go.uber.org/zap/zaptest" | ||
"testing" | ||
) | ||
|
||
func TestNewDbFromConfig_GetAddr(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
conf *Config | ||
addr string | ||
}{ | ||
{ | ||
name: "mysql-simple", | ||
conf: &Config{ | ||
Type: "mysql", | ||
Host: "example.com", | ||
Database: "db", | ||
User: "user", | ||
}, | ||
addr: "mysql://[email protected]:3306/db", | ||
}, | ||
{ | ||
name: "mysql-custom-port", | ||
conf: &Config{ | ||
Type: "mysql", | ||
Host: "example.com", | ||
Port: 1234, | ||
Database: "db", | ||
User: "user", | ||
}, | ||
addr: "mysql://[email protected]:1234/db", | ||
}, | ||
{ | ||
name: "mysql-tls", | ||
conf: &Config{ | ||
Type: "mysql", | ||
Host: "example.com", | ||
Database: "db", | ||
User: "user", | ||
TlsOptions: config.TLS{Enable: true}, | ||
}, | ||
addr: "mysql+tls://[email protected]:3306/db", | ||
}, | ||
{ | ||
name: "mysql-unix-domain-socket", | ||
conf: &Config{ | ||
Type: "mysql", | ||
Host: "/var/empty/mysql.sock", | ||
Database: "db", | ||
User: "user", | ||
}, | ||
addr: "mysql://user@(/var/empty/mysql.sock)/db", | ||
}, | ||
{ | ||
name: "pgsql-simple", | ||
conf: &Config{ | ||
Type: "pgsql", | ||
Host: "example.com", | ||
Database: "db", | ||
User: "user", | ||
}, | ||
addr: "pgsql://[email protected]:5432/db", | ||
}, | ||
{ | ||
name: "pgsql-custom-port", | ||
conf: &Config{ | ||
Type: "pgsql", | ||
Host: "example.com", | ||
Port: 1234, | ||
Database: "db", | ||
User: "user", | ||
}, | ||
addr: "pgsql://[email protected]:1234/db", | ||
}, | ||
{ | ||
name: "pgsql-tls", | ||
conf: &Config{ | ||
Type: "pgsql", | ||
Host: "example.com", | ||
Database: "db", | ||
User: "user", | ||
TlsOptions: config.TLS{Enable: true}, | ||
}, | ||
addr: "pgsql+tls://[email protected]:5432/db", | ||
}, | ||
{ | ||
name: "pgsql-unix-domain-socket", | ||
conf: &Config{ | ||
Type: "pgsql", | ||
Host: "/var/empty/pgsql", | ||
Database: "db", | ||
User: "user", | ||
}, | ||
addr: "pgsql://user@(/var/empty/pgsql/.s.PGSQL.5432)/db", | ||
}, | ||
{ | ||
name: "pgsql-unix-domain-socket-custom-port", | ||
conf: &Config{ | ||
Type: "pgsql", | ||
Host: "/var/empty/pgsql", | ||
Port: 1234, | ||
Database: "db", | ||
User: "user", | ||
}, | ||
addr: "pgsql://user@(/var/empty/pgsql/.s.PGSQL.1234)/db", | ||
}, | ||
} | ||
|
||
for _, test := range tests { | ||
t.Run(test.name, func(t *testing.T) { | ||
db, err := NewDbFromConfig( | ||
test.conf, | ||
logging.NewLogger(zaptest.NewLogger(t).Sugar(), 0), | ||
RetryConnectorCallbacks{}) | ||
require.NoError(t, err) | ||
require.Equal(t, test.addr, db.GetAddr()) | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
package redis | ||
|
||
import ( | ||
"github.com/icinga/icinga-go-library/config" | ||
"github.com/icinga/icinga-go-library/logging" | ||
"github.com/stretchr/testify/require" | ||
"go.uber.org/zap/zaptest" | ||
"testing" | ||
) | ||
|
||
func TestNewClientFromConfig_GetAddr(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
conf *Config | ||
addr string | ||
}{ | ||
{ | ||
name: "redis-simple", | ||
conf: &Config{ | ||
Host: "example.com", | ||
}, | ||
addr: "redis://example.com:6379", | ||
}, | ||
{ | ||
name: "redis-custom-port", | ||
conf: &Config{ | ||
Host: "example.com", | ||
Port: 6380, | ||
}, | ||
addr: "redis://example.com:6380", | ||
}, | ||
{ | ||
name: "redis-acl", | ||
conf: &Config{ | ||
Host: "example.com", | ||
Username: "user", | ||
Password: "pass", | ||
}, | ||
addr: "redis://[email protected]:6379", | ||
}, | ||
{ | ||
name: "redis-custom-database", | ||
conf: &Config{ | ||
Host: "example.com", | ||
Database: 23, | ||
}, | ||
addr: "redis://example.com:6379/23", | ||
}, | ||
{ | ||
name: "redis-tls", | ||
conf: &Config{ | ||
Host: "example.com", | ||
TlsOptions: config.TLS{Enable: true}, | ||
}, | ||
addr: "redis+tls://example.com:6379", | ||
}, | ||
{ | ||
name: "redis-with-everything", | ||
conf: &Config{ | ||
Host: "example.com", | ||
Port: 6380, | ||
Username: "user", | ||
Password: "pass", | ||
Database: 23, | ||
TlsOptions: config.TLS{Enable: true}, | ||
}, | ||
addr: "redis+tls://[email protected]:6380/23", | ||
}, | ||
{ | ||
name: "redis-unix-domain-socket", | ||
conf: &Config{ | ||
Host: "/var/empty/redis.sock", | ||
}, | ||
addr: "redis://(/var/empty/redis.sock)", | ||
}, | ||
} | ||
|
||
for _, test := range tests { | ||
t.Run(test.name, func(t *testing.T) { | ||
redis, err := NewClientFromConfig( | ||
test.conf, | ||
logging.NewLogger(zaptest.NewLogger(t).Sugar(), 0)) | ||
require.NoError(t, err) | ||
require.Equal(t, test.addr, redis.GetAddr()) | ||
}) | ||
} | ||
} |