-
Notifications
You must be signed in to change notification settings - Fork 67
/
check_request_property_max_length_set.go
77 lines (71 loc) · 2.18 KB
/
check_request_property_max_length_set.go
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
package checker
import (
"github.com/tufin/oasdiff/diff"
)
const (
RequestBodyMaxLengthSetId = "request-body-max-length-set"
RequestPropertyMaxLengthSetId = "request-property-max-length-set"
)
func RequestPropertyMaxLengthSetCheck(diffReport *diff.Diff, operationsSources *diff.OperationsSourcesMap, config *Config) Changes {
result := make(Changes, 0)
if diffReport.PathsDiff == nil {
return result
}
for path, pathItem := range diffReport.PathsDiff.Modified {
if pathItem.OperationsDiff == nil {
continue
}
for operation, operationItem := range pathItem.OperationsDiff.Modified {
if operationItem.RequestBodyDiff == nil ||
operationItem.RequestBodyDiff.ContentDiff == nil ||
operationItem.RequestBodyDiff.ContentDiff.MediaTypeModified == nil {
continue
}
modifiedMediaTypes := operationItem.RequestBodyDiff.ContentDiff.MediaTypeModified
for _, mediaTypeDiff := range modifiedMediaTypes {
if mediaTypeDiff.SchemaDiff != nil && mediaTypeDiff.SchemaDiff.MaxLengthDiff != nil {
maxLengthDiff := mediaTypeDiff.SchemaDiff.MaxLengthDiff
if maxLengthDiff.From == nil &&
maxLengthDiff.To != nil {
result = append(result, NewApiChange(
RequestBodyMaxLengthSetId,
config,
[]any{maxLengthDiff.To},
commentId(RequestBodyMaxLengthSetId),
operationsSources,
operationItem.Revision,
operation,
path,
))
}
}
CheckModifiedPropertiesDiff(
mediaTypeDiff.SchemaDiff,
func(propertyPath string, propertyName string, propertyDiff *diff.SchemaDiff, parent *diff.SchemaDiff) {
maxLengthDiff := propertyDiff.MaxLengthDiff
if maxLengthDiff == nil {
return
}
if maxLengthDiff.From != nil ||
maxLengthDiff.To == nil {
return
}
if propertyDiff.Revision.ReadOnly {
return
}
result = append(result, NewApiChange(
RequestPropertyMaxLengthSetId,
config,
[]any{propertyFullName(propertyPath, propertyName), maxLengthDiff.To},
commentId(RequestPropertyMaxLengthSetId),
operationsSources,
operationItem.Revision,
operation,
path,
))
})
}
}
}
return result
}