-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathcheck_request_property_max_length_updated.go
113 lines (102 loc) · 3.21 KB
/
check_request_property_max_length_updated.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
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
package checker
import (
"github.com/tufin/oasdiff/diff"
)
const (
RequestBodyMaxLengthDecreasedId = "request-body-max-length-decreased"
RequestBodyMaxLengthIncreasedId = "request-body-max-length-increased"
RequestPropertyMaxLengthDecreasedId = "request-property-max-length-decreased"
RequestReadOnlyPropertyMaxLengthDecreasedId = "request-read-only-property-max-length-decreased"
RequestPropertyMaxLengthIncreasedId = "request-property-max-length-increased"
)
func RequestPropertyMaxLengthUpdatedCheck(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 {
if IsDecreasedValue(maxLengthDiff) {
result = append(result, NewApiChange(
RequestBodyMaxLengthDecreasedId,
config,
[]any{maxLengthDiff.To},
"",
operationsSources,
operationItem.Revision,
operation,
path,
))
} else {
result = append(result, NewApiChange(
RequestBodyMaxLengthIncreasedId,
config,
[]any{maxLengthDiff.From, maxLengthDiff.To},
"",
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
}
propName := propertyFullName(propertyPath, propertyName)
if IsDecreasedValue(maxLengthDiff) {
id := RequestPropertyMaxLengthDecreasedId
if propertyDiff.Revision.ReadOnly {
id = RequestReadOnlyPropertyMaxLengthDecreasedId
}
result = append(result, NewApiChange(
id,
config,
[]any{propName, maxLengthDiff.To},
"",
operationsSources,
operationItem.Revision,
operation,
path,
))
} else {
result = append(result, NewApiChange(
RequestPropertyMaxLengthIncreasedId,
config,
[]any{propName, maxLengthDiff.From, maxLengthDiff.To},
"",
operationsSources,
operationItem.Revision,
operation,
path,
))
}
})
}
}
}
return result
}