18a12d6517
include all fields when fuzzing in tests split tests by struct type Ensure the new value for the field is different fuzzer.Fuzz could produce the same value again in some cases. Use a custom fuzz function for QueryOptions. That type is an embedded struct in the request types but only one of the fields is important to include in the cache key. Move enterpriseMetaField to an oss file so that we can change it in enterprise.
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package structs
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var enterpriseMetaField = "EnterpriseMeta"
|
|
|
|
func TestServiceID_String(t *testing.T) {
|
|
t.Run("value", func(t *testing.T) {
|
|
sid := NewServiceID("the-id", &EnterpriseMeta{})
|
|
require.Equal(t, "the-id", fmt.Sprintf("%v", sid))
|
|
})
|
|
t.Run("pointer", func(t *testing.T) {
|
|
sid := NewServiceID("the-id", &EnterpriseMeta{})
|
|
require.Equal(t, "the-id", fmt.Sprintf("%v", &sid))
|
|
})
|
|
}
|
|
|
|
func TestCheckID_String(t *testing.T) {
|
|
t.Run("value", func(t *testing.T) {
|
|
cid := NewCheckID("the-id", &EnterpriseMeta{})
|
|
require.Equal(t, "the-id", fmt.Sprintf("%v", cid))
|
|
})
|
|
t.Run("pointer", func(t *testing.T) {
|
|
cid := NewCheckID("the-id", &EnterpriseMeta{})
|
|
require.Equal(t, "the-id", fmt.Sprintf("%v", &cid))
|
|
})
|
|
}
|
|
|
|
func TestServiceName_String(t *testing.T) {
|
|
t.Run("value", func(t *testing.T) {
|
|
sn := NewServiceName("the-id", &EnterpriseMeta{})
|
|
require.Equal(t, "the-id", fmt.Sprintf("%v", sn))
|
|
})
|
|
t.Run("pointer", func(t *testing.T) {
|
|
sn := NewServiceName("the-id", &EnterpriseMeta{})
|
|
require.Equal(t, "the-id", fmt.Sprintf("%v", &sn))
|
|
})
|
|
}
|