144 lines
4.1 KiB
Go
144 lines
4.1 KiB
Go
/*
|
|
Copyright 2021 The Dapr Authors
|
|
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 cassandra
|
|
|
|
import (
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/dapr/components-contrib/metadata"
|
|
"github.com/dapr/components-contrib/state"
|
|
)
|
|
|
|
func TestGetCassandraMetadata(t *testing.T) {
|
|
t.Run("With defaults", func(t *testing.T) {
|
|
properties := map[string]string{
|
|
hosts: "127.0.0.1",
|
|
}
|
|
m := state.Metadata{
|
|
Base: metadata.Base{Properties: properties},
|
|
}
|
|
|
|
metadata, err := getCassandraMetadata(m)
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, properties[hosts], metadata.hosts[0])
|
|
assert.Equal(t, "All", metadata.consistency)
|
|
assert.Equal(t, defaultKeyspace, metadata.keyspace)
|
|
assert.Equal(t, defaultProtoVersion, metadata.protoVersion)
|
|
assert.Equal(t, defaultReplicationFactor, metadata.replicationFactor)
|
|
assert.Equal(t, defaultTable, metadata.table)
|
|
assert.Equal(t, defaultPort, metadata.port)
|
|
})
|
|
|
|
t.Run("With custom values", func(t *testing.T) {
|
|
properties := map[string]string{
|
|
hosts: "127.0.0.1",
|
|
port: "9043",
|
|
consistency: "Quorum",
|
|
keyspace: "keyspace",
|
|
protoVersion: "3",
|
|
replicationFactor: "2",
|
|
table: "table",
|
|
username: "username",
|
|
password: "password",
|
|
}
|
|
m := state.Metadata{
|
|
Base: metadata.Base{Properties: properties},
|
|
}
|
|
|
|
metadata, err := getCassandraMetadata(m)
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, properties[hosts], metadata.hosts[0])
|
|
assert.Equal(t, properties[consistency], metadata.consistency)
|
|
assert.Equal(t, properties[keyspace], metadata.keyspace)
|
|
assert.Equal(t, 3, metadata.protoVersion)
|
|
assert.Equal(t, 2, metadata.replicationFactor)
|
|
assert.Equal(t, properties[table], metadata.table)
|
|
assert.Equal(t, properties[username], metadata.username)
|
|
assert.Equal(t, properties[password], metadata.password)
|
|
assert.Equal(t, 9043, metadata.port)
|
|
})
|
|
|
|
t.Run("Incorrect proto version", func(t *testing.T) {
|
|
properties := map[string]string{
|
|
hosts: "127.0.0.1",
|
|
consistency: "Quorum",
|
|
keyspace: "keyspace",
|
|
protoVersion: "incorrect",
|
|
replicationFactor: "2",
|
|
table: "table",
|
|
username: "username",
|
|
password: "password",
|
|
}
|
|
m := state.Metadata{
|
|
Base: metadata.Base{Properties: properties},
|
|
}
|
|
|
|
_, err := getCassandraMetadata(m)
|
|
assert.NotNil(t, err)
|
|
})
|
|
|
|
t.Run("Missing hosts", func(t *testing.T) {
|
|
properties := map[string]string{
|
|
consistency: "Quorum",
|
|
keyspace: "keyspace",
|
|
protoVersion: "incorrect",
|
|
replicationFactor: "2",
|
|
table: "table",
|
|
username: "username",
|
|
password: "password",
|
|
}
|
|
m := state.Metadata{
|
|
Base: metadata.Base{Properties: properties},
|
|
}
|
|
|
|
_, err := getCassandraMetadata(m)
|
|
assert.NotNil(t, err)
|
|
})
|
|
}
|
|
|
|
func TestParseTTL(t *testing.T) {
|
|
t.Run("TTL Not an integer", func(t *testing.T) {
|
|
ttlInSeconds := "not an integer"
|
|
ttl, err := parseTTL(map[string]string{
|
|
"ttlInSeconds": ttlInSeconds,
|
|
})
|
|
assert.Error(t, err)
|
|
assert.Nil(t, ttl)
|
|
})
|
|
t.Run("TTL specified with wrong key", func(t *testing.T) {
|
|
ttlInSeconds := 12345
|
|
ttl, err := parseTTL(map[string]string{
|
|
"expirationTime": strconv.Itoa(ttlInSeconds),
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Nil(t, ttl)
|
|
})
|
|
t.Run("TTL is a number", func(t *testing.T) {
|
|
ttlInSeconds := 12345
|
|
ttl, err := parseTTL(map[string]string{
|
|
"ttlInSeconds": strconv.Itoa(ttlInSeconds),
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, *ttl, ttlInSeconds)
|
|
})
|
|
t.Run("TTL not set", func(t *testing.T) {
|
|
ttl, err := parseTTL(map[string]string{})
|
|
assert.NoError(t, err)
|
|
assert.Nil(t, ttl)
|
|
})
|
|
}
|