OpenAPI: Fix ValidationError message attribute (#90846)

It's `message`, not `msg`. It's been fixed for a while here: 9ef6983612/scripts/pull-schema.sh (L46-L49)

I've also reflected the change in the tests
This commit is contained in:
Julien Duchesne
2024-08-26 10:05:37 -04:00
committed by GitHub
parent 087df1d8e5
commit 3ac8760321
7 changed files with 10 additions and 8 deletions

View File

@ -99,8 +99,10 @@ func TestProvisioningApi(t *testing.T) {
response := sut.RoutePutPolicyTree(&rc, tree)
require.Equal(t, 400, response.Status())
expBody := `{"message":"invalid object specification: invalid policy tree"}`
require.Equal(t, expBody, string(response.Body()))
expBody := definitions.ValidationError{Message: "invalid object specification: invalid policy tree"}
expBodyJSON, marshalErr := json.Marshal(expBody)
require.NoError(t, marshalErr)
require.Equal(t, string(expBodyJSON), string(response.Body()))
})
})

View File

@ -4380,7 +4380,7 @@
},
"ValidationError": {
"properties": {
"msg": {
"message": {
"example": "error message",
"type": "string"
}

View File

@ -11,7 +11,7 @@ type Ack struct{}
// swagger:model
type ValidationError struct {
// example: error message
Msg string `json:"msg"`
Message string `json:"message"`
}
// swagger:model

View File

@ -4379,7 +4379,7 @@
},
"ValidationError": {
"properties": {
"msg": {
"message": {
"example": "error message",
"type": "string"
}

View File

@ -8013,7 +8013,7 @@
"ValidationError": {
"type": "object",
"properties": {
"msg": {
"message": {
"type": "string",
"example": "error message"
}

View File

@ -21969,7 +21969,7 @@
"ValidationError": {
"type": "object",
"properties": {
"msg": {
"message": {
"type": "string",
"example": "error message"
}

View File

@ -12027,7 +12027,7 @@
},
"ValidationError": {
"properties": {
"msg": {
"message": {
"example": "error message",
"type": "string"
}