This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
2.2 KiB
105 lines
2.2 KiB
// 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))
|
|
|