summaryrefslogtreecommitdiffstats
path: root/node_modules/file-uri-to-path/test/test.js
blob: 79305dcae2492e76f0cefc8fe1ff566eb878b7b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
var sep = require('path').sep || '/';
var assert = require('assert');
var uri2path = require('../');
var tests = require('./tests.json');

describe('file-uri-to-path', function () {

  Object.keys(tests).forEach(function (uri) {

    // the test cases were generated from Windows' PathCreateFromUrlA() function.
    // On Unix, we have to replace the path separator with the Unix one instead of
    // the Windows one.
    var expected = tests[uri].replace(/\\/g, sep);

    it('should convert ' + JSON.stringify(uri) + ' to ' + JSON.stringify(expected),
    function () {
      var actual = uri2path(uri);
      assert.equal(actual, expected);
    });

  });

});