diff --git a/test/core/utils.js b/test/core/utils.js index dd37a518..29eeabdc 100644 --- a/test/core/utils.js +++ b/test/core/utils.js @@ -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/") + }) + }) })