123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- // Copyright 2017 Simon Lydell
- // X11 (“MIT”) Licensed. (See LICENSE.)
- var test = require("tape")
- var asyncify = require("simple-asyncify")
- var common = require("./common")
- var u = common.u
- var sourceMapResolve = require("../")
- var mapUrl = "operators%20map.json"
- var codeUrl = "./built files/operators:+-<>%25.js"
- var sourceUrl = "../source files/operators:+-<>%25.coffee"
- function readTest(t, files) {
- return function(file, callback) {
- var fileData = files[file]
- t.ok(fileData, "decoded file name")
- if (callback) {
- callback(null, fileData)
- } else {
- return fileData
- }
- }
- }
- function testResolveSourceMap(method, sync) {
- return function(t) {
- t.plan(2)
- if (sync) {
- method = asyncify(method)
- }
- var read = readTest(t, {
- "built files/operators map.json": "{}"
- })
- method(u(mapUrl), codeUrl, read, function(error) {
- t.error(error)
- })
- }
- }
- test(".resolveSourceMap", testResolveSourceMap(sourceMapResolve.resolveSourceMap, false))
- test(".resolveSourceMapSync", testResolveSourceMap(sourceMapResolve.resolveSourceMapSync, true))
- function testResolveSources(method, sync) {
- return function(t) {
- t.plan(2)
- if (sync) {
- method = asyncify(method)
- }
- var map = {
- sources: [sourceUrl]
- }
- var read = readTest(t, {
- "../source files/operators:+-<>%.coffee": "source code"
- })
- method(map, mapUrl, read, function(error) {
- t.error(error)
- })
- }
- }
- test(".resolveSources", testResolveSources(sourceMapResolve.resolveSources, false))
- test(".resolveSourcesSync", testResolveSources(sourceMapResolve.resolveSourcesSync, true))
- function testResolve(method, sync) {
- return function(t) {
- t.plan(3)
- if (sync) {
- method = asyncify(method)
- }
- var map = {
- sources: [sourceUrl]
- }
- var read = readTest(t, {
- "built files/operators map.json": JSON.stringify(map),
- "source files/operators:+-<>%.coffee": "source code"
- })
- method(u(mapUrl), codeUrl, read, function(error) {
- t.error(error)
- })
- }
- }
- test(".resolve", testResolve(sourceMapResolve.resolve, false))
- test(".resolveSync", testResolve(sourceMapResolve.resolveSync, true))
|