fix: handle urlencoded array data correctly + don't stringify non-object sample values (#4704)

* fix: handle urlencoded array data correctly

* fix: don't stringify non-object sample values

* fix linter
This commit is contained in:
kyle
2018-07-07 02:30:40 -05:00
committed by GitHub
parent 875caab173
commit 8f65483510
5 changed files with 41 additions and 5 deletions

View File

@@ -24,7 +24,8 @@ import {
getCommonExtensions,
sanitizeUrl,
extractFileNameFromContentDispositionHeader,
deeplyStripKey
deeplyStripKey,
getSampleSchema
} from "core/utils"
import win from "core/window"
@@ -1186,5 +1187,30 @@ describe("utils", function() {
expect(sanitizeUrl({})).toEqual("")
})
})
describe("getSampleSchema", function() {
const oriDate = Date
before(function() {
Date = function () {
this.toISOString = function () {
return "2018-07-07T07:07:05.189Z"
}
}
})
after(function() {
Date = oriDate
})
it("should not unnecessarily stringify non-object values", function() {
// Given
const res = getSampleSchema({
type: "string",
format: "date-time"
})
// Then
expect(res).toEqual(new Date().toISOString())
})
})
})