Sha256: ad1d1fa8729c2b511f350cf8a1570483eb39a2fca14559dcd3d658fd5fc5a75e

Contents?: true

Size: 1.58 KB

Versions: 41

Compression:

Stored size: 1.58 KB

Contents

// Copyright 2014 Simon Lydell
// X11 (“MIT”) Licensed. (See LICENSE.)

var test = require("tape")

var resolveUrl = require("../")

"use strict"

test("resolveUrl", function(t) {

  t.plan(7)

  t.equal(typeof resolveUrl, "function", "is a function")

  t.equal(
    resolveUrl("https://example.com/"),
    "https://example.com/"
  )

  var loc = "https://example.com/articles/resolving-urls/edit"

  t.equal(
    resolveUrl(loc, "remove"),
    "https://example.com/articles/resolving-urls/remove"
  )

  t.equal(
    resolveUrl(loc, "/static/scripts/app.js"),
    "https://example.com/static/scripts/app.js"
  )

  t.equal(
    resolveUrl(loc, "/static/scripts/app.js", "../source-maps/app.js.map"),
    "https://example.com/static/source-maps/app.js.map"
  )

  t.equal(
    resolveUrl(loc, "/static/scripts/app.js", "../source-maps/app.js.map", "../coffee/app.coffee"),
    "https://example.com/static/coffee/app.coffee"
  )

  t.equal(
    resolveUrl(loc, "//cdn.example.com/jquery.js"),
    "https://cdn.example.com/jquery.js"
  )

})

test("edge cases", function(t) {

  t.plan(4)

  t["throws"](resolveUrl, /at least one argument/, "throws with no arguments")

  var accidentallyUndefined
  var result
  t.doesNotThrow(
    function() { result = resolveUrl(accidentallyUndefined) },
    "undefined is still an argument"
  )
  t.ok(result.match(/\/undefined$/), "undefined is stringified")

  t.equal(
    resolveUrl("http://foo.org/test", undefined, {}, ["a/b"], null),
    "http://foo.org/a/null",
    "arguments are stringified"
  )

})

Version data entries

41 entries across 40 versions & 14 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/resolve-url/test/resolve-url.js
disco_app-0.18.0 test/dummy/node_modules/resolve-url/test/resolve-url.js
disco_app-0.18.2 test/dummy/node_modules/resolve-url/test/resolve-url.js
disco_app-0.16.1 test/dummy/node_modules/resolve-url/test/resolve-url.js
disco_app-0.15.2 test/dummy/node_modules/resolve-url/test/resolve-url.js
disco_app-0.18.4 test/dummy/node_modules/resolve-url/test/resolve-url.js
disco_app-0.18.1 test/dummy/node_modules/resolve-url/test/resolve-url.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/resolve-url/test/resolve-url.js
disco_app-0.14.0 test/dummy/node_modules/resolve-url/test/resolve-url.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/resolve-url/test/resolve-url.js
epuber-stylus-source-0.54.8 vendor/node_modules/resolve-url/test/resolve-url.js
tang-0.2.1 spec/tang_app/node_modules/resolve-url/test/resolve-url.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/resolve-url/test/resolve-url.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/resolve-url/test/resolve-url.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/resolve-url/test/resolve-url.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/resolve-url/test/resolve-url.js
tang-0.2.0 spec/tang_app/node_modules/resolve-url/test/resolve-url.js
tang-0.1.0 spec/tang_app/node_modules/resolve-url/test/resolve-url.js
tang-0.0.9 spec/tang_app/node_modules/resolve-url/test/resolve-url.js
enju_library-0.3.8 spec/dummy/node_modules/resolve-url/test/resolve-url.js