-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathfile_test.go
More file actions
32 lines (25 loc) · 754 Bytes
/
file_test.go
File metadata and controls
32 lines (25 loc) · 754 Bytes
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
// SPDX-FileCopyrightText: Copyright 2015-2025 go-swagger maintainers
// SPDX-License-Identifier: Apache-2.0
package runtime
import (
"testing"
"github.com/go-openapi/spec"
"github.com/go-openapi/testify/v2/assert"
"github.com/go-openapi/testify/v2/require"
"github.com/go-openapi/validate"
)
func TestValidateFile(t *testing.T) {
fileParam := spec.FileParam("f")
validator := validate.NewParamValidator(fileParam, nil)
result := validator.Validate("str")
require.Len(t, result.Errors, 1)
assert.EqualT(
t,
`f in formData must be of type file: "string"`,
result.Errors[0].Error(),
)
result = validator.Validate(&File{})
assert.TrueT(t, result.IsValid())
result = validator.Validate(File{})
assert.TrueT(t, result.IsValid())
}