Bladeren bron

Add sanitizeUrl tests

bubble
Kyle Shockey 6 jaren geleden
bovenliggende
commit
b9fa5e5bb2
1 gewijzigde bestanden met toevoegingen van 29 en 1 verwijderingen
  1. +29
    -1
      test/core/utils.js

+ 29
- 1
test/core/utils.js Bestand weergeven

@@ -16,7 +16,8 @@ import {
fromJSOrdered,
getAcceptControllingResponse,
createDeepLinkPath,
escapeDeepLinkPath
escapeDeepLinkPath,
sanitizeUrl
} from "core/utils"
import win from "core/window"

@@ -885,4 +886,31 @@ describe("utils", function() {
expect(result).toEqual("hello\\#world")
})
})

describe.only("sanitizeUrl", function() {
it("should sanitize a `javascript:` url", function() {
const res = sanitizeUrl("javascript:alert('bam!')")

expect(res).toEqual("about:blank")
})

it("should sanitize a `data:` url", function() {
const res = sanitizeUrl(`data:text/html;base64,PHNjcmlwdD5hbGVydCgiSGV
sbG8iKTs8L3NjcmlwdD4=`)

expect(res).toEqual("about:blank")
})

it("should not modify a `http:` url", function() {
const res = sanitizeUrl(`http://swagger.io/`)

expect(res).toEqual("http://swagger.io/")
})

it("should not modify a `https:` url", function() {
const res = sanitizeUrl(`https://swagger.io/`)

expect(res).toEqual("https://swagger.io/")
})
})
})

Laden…
Annuleren
Opslaan