Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

70 lines
1.2 KiB

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package client
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestTValue(t *testing.T) {
t.Run("String: set", func(t *testing.T) {
var tv TValue[string]
err := tv.Set("testString")
assert.NoError(t, err)
assert.Equal(t, *tv.v, "testString")
})
t.Run("String: merge", func(t *testing.T) {
var tv TValue[string]
var onto string
testStr := "testString"
tv.v = &testStr
tv.Merge(&onto)
assert.Equal(t, onto, "testString")
})
t.Run("String: merge nil", func(t *testing.T) {
var tv TValue[string]
var onto *string = nil
testStr := "testString"
tv.v = &testStr
err := tv.Merge(onto)
assert.Equal(t, err.Error(), "onto is nil")
})
t.Run("Get string", func(t *testing.T) {
var tv TValue[string]
testStr := "testString"
tv.v = &testStr
assert.Equal(t, tv.String(), "testString")
})
t.Run("Bool: set", func(t *testing.T) {
var tv TValue[bool]
err := tv.Set("true")
assert.NoError(t, err)
assert.Equal(t, *tv.v, true)
})
t.Run("Bool: merge", func(t *testing.T) {
var tv TValue[bool]
var onto bool
testBool := true
tv.v = &testBool
tv.Merge(&onto)
assert.Equal(t, onto, true)
})
}