File size: 5,729 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
package service
import (
"testing"
)
func TestService_Normalize(t *testing.T) {
test := func(valid bool, s Service) {
name := "valid"
if !valid {
name = "invalid"
}
t.Run(name, func(t *testing.T) {
t.Logf("%+v", s)
_, err := s.Normalize()
if valid && err != nil {
t.Errorf("got %v; want nil", err)
} else if !valid && err == nil {
t.Errorf("got nil err; want non-nil")
}
})
}
valid := []Service{
{Name: "Sample Service", Description: "Sample Service", EscalationPolicyID: "A035FD3C-73C8-4F72-BECD-36B027AE1374"},
}
invalid := []Service{
{},
}
for _, s := range valid {
test(true, s)
}
for _, s := range invalid {
test(false, s)
}
}
func TestSearchOptions_Normalize_Only(t *testing.T) {
tests := []struct {
name string
opts SearchOptions
wantErr bool
}{
{
name: "valid Only filter with single UUID",
opts: SearchOptions{
Only: []string{"A035FD3C-73C8-4F72-BECD-36B027AE1374"},
},
wantErr: false,
},
{
name: "valid Only filter with multiple UUIDs",
opts: SearchOptions{
Only: []string{
"A035FD3C-73C8-4F72-BECD-36B027AE1374",
"B035FD3C-73C8-4F72-BECD-36B027AE1375",
},
},
wantErr: false,
},
{
name: "empty Only filter should be valid",
opts: SearchOptions{
Only: []string{},
},
wantErr: false,
},
{
name: "nil Only filter should be valid",
opts: SearchOptions{
Only: nil,
},
wantErr: false,
},
{
name: "invalid UUID in Only filter",
opts: SearchOptions{
Only: []string{"invalid-uuid"},
},
wantErr: true,
},
{
name: "too many UUIDs in Only filter (over 50 limit)",
opts: SearchOptions{
Only: make([]string, 51), // Creates slice with 51 empty strings, which should fail validation
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Fill invalid UUIDs for "too many" test case
if len(tt.opts.Only) == 51 {
for i := range tt.opts.Only {
tt.opts.Only[i] = "A035FD3C-73C8-4F72-BECD-36B027AE1374"
}
}
data := (*renderData)(&tt.opts)
_, err := data.Normalize()
if tt.wantErr && err == nil {
t.Errorf("Normalize() expected error but got nil")
} else if !tt.wantErr && err != nil {
t.Errorf("Normalize() unexpected error: %v", err)
}
})
}
}
func TestSearchOptions_Only_QueryArgs(t *testing.T) {
opts := SearchOptions{
Only: []string{
"A035FD3C-73C8-4F72-BECD-36B027AE1374",
"B035FD3C-73C8-4F72-BECD-36B027AE1375",
},
}
data := (*renderData)(&opts)
args := data.QueryArgs()
// Find the "only" argument
var foundOnly bool
for _, arg := range args {
if arg.Name == "only" {
foundOnly = true
if arg.Value == nil {
t.Error("QueryArgs() 'only' parameter should not be nil when Only is provided")
}
break
}
}
if !foundOnly {
t.Error("QueryArgs() should include 'only' parameter")
}
}
func TestSearchOptions_Only_WithOtherFilters(t *testing.T) {
// Test that Only filter works in combination with other filters
opts := SearchOptions{
Search: "test service",
Only: []string{"A035FD3C-73C8-4F72-BECD-36B027AE1374"},
Omit: []string{"B035FD3C-73C8-4F72-BECD-36B027AE1375"},
}
data := (*renderData)(&opts)
normalized, err := data.Normalize()
if err != nil {
t.Errorf("Normalize() with combined filters failed: %v", err)
}
if len(normalized.Only) != 1 {
t.Errorf("Expected Only to have 1 item, got %d", len(normalized.Only))
}
if len(normalized.Omit) != 1 {
t.Errorf("Expected Omit to have 1 item, got %d", len(normalized.Omit))
}
if normalized.Search != "test service" {
t.Errorf("Expected Search to be preserved, got %q", normalized.Search)
}
}
func TestSearchTemplate_Only_SQLGeneration(t *testing.T) {
// Test that the SQL template correctly includes the Only filter
opts := SearchOptions{
Only: []string{
"A035FD3C-73C8-4F72-BECD-36B027AE1374",
"B035FD3C-73C8-4F72-BECD-36B027AE1375",
},
Limit: 10,
}
data, err := (*renderData)(&opts).Normalize()
if err != nil {
t.Fatalf("Normalize() failed: %v", err)
}
// Verify that our QueryArgs include the only parameter
args := data.QueryArgs()
var onlyArg *interface{}
for _, arg := range args {
if arg.Name == "only" {
onlyArg = &arg.Value
break
}
}
if onlyArg == nil {
t.Fatal("QueryArgs() should include 'only' parameter")
}
// Verify the argument is not nil (UUIDArray should convert the slice)
if *onlyArg == nil {
t.Error("'only' parameter should not be nil when Only slice is provided")
}
}
func TestSearchOptions_Only_EdgeCases(t *testing.T) {
tests := []struct {
name string
opts SearchOptions
wantErr bool
desc string
}{
{
name: "Only and Omit with same UUID should be valid",
opts: SearchOptions{
Only: []string{"A035FD3C-73C8-4F72-BECD-36B027AE1374"},
Omit: []string{"A035FD3C-73C8-4F72-BECD-36B027AE1374"},
},
wantErr: false,
desc: "SQL should handle this case (Only will include it, Omit will exclude it - Omit should win)",
},
{
name: "Only with favorites filters",
opts: SearchOptions{
Only: []string{"A035FD3C-73C8-4F72-BECD-36B027AE1374"},
FavoritesOnly: true,
FavoritesUserID: "B035FD3C-73C8-4F72-BECD-36B027AE1375",
},
wantErr: false,
desc: "Only filter should work with favorites filtering",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
data := (*renderData)(&tt.opts)
_, err := data.Normalize()
if tt.wantErr && err == nil {
t.Errorf("Normalize() expected error but got nil - %s", tt.desc)
} else if !tt.wantErr && err != nil {
t.Errorf("Normalize() unexpected error: %v - %s", err, tt.desc)
}
})
}
}
|