Procházet zdrojové kódy

Add sanitizeUrl tests

bubble
Kyle Shockey před 6 roky
rodič
revize
b9fa5e5bb2
1 změnil soubory, kde provedl 29 přidání a 1 odebrání
  1. +29
    -1
      test/core/utils.js

+ 29
- 1
test/core/utils.js Zobrazit soubor

@@ -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/")
})
})
})

Načítá se…
Zrušit
Uložit