Socket
Socket
Sign inDemoInstall

memory-fs

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.1 to 0.2.0

lib/join.js

18

lib/MemoryFileSystem.js

@@ -5,2 +5,5 @@ /*

*/
var normalize = require("./normalize");
function MemoryFileSystem(data) {

@@ -22,2 +25,3 @@ this.data = data || {};

function pathToArray(path) {
path = normalize(path);
var nix = /^\//.test(path);

@@ -162,2 +166,6 @@ if(!nix) {

MemoryFileSystem.prototype.readlinkSync = function(_path) {
throw new Error("Path is not a link '" + _path + "'");
};
MemoryFileSystem.prototype.writeFileSync = function(_path, content, encoding) {

@@ -179,11 +187,9 @@ if(!content && !encoding) throw new Error("No content");

MemoryFileSystem.prototype.join = function(a, b) {
if(a[a.length-1] === "/") return a + b;
if(a[a.length-1] === "\\") return a + b;
return a + "/" + b;
};
MemoryFileSystem.prototype.join = require("./join");
MemoryFileSystem.prototype.normalize = normalize;
// async functions
["stat", "readdir", "mkdirp", "mkdir", "rmdir", "unlink"].forEach(function(fn) {
["stat", "readdir", "mkdirp", "mkdir", "rmdir", "unlink", "readlink"].forEach(function(fn) {
MemoryFileSystem.prototype[fn] = function(path, callback) {

@@ -190,0 +196,0 @@ try {

{
"name": "memory-fs",
"version": "0.1.1",
"version": "0.2.0",
"description": "A simple in-memory filesystem. Holds data in a javascript object.",

@@ -5,0 +5,0 @@ "main": "lib/MemoryFileSystem.js",

@@ -174,2 +174,21 @@ var should = require("should");

});
it("should throw on readlink", function() {
var fs = new MemoryFileSystem();
fs.mkdirpSync("/test/dir");
(function() {
fs.readlinkSync("/");
}).should.throw();
(function() {
fs.readlinkSync("/link");
}).should.throw();
(function() {
fs.readlinkSync("/test");
}).should.throw();
(function() {
fs.readlinkSync("/test/dir");
}).should.throw();
(function() {
fs.readlinkSync("/test/dir/link");
}).should.throw();
});
});

@@ -209,2 +228,26 @@ describe("async", function() {

});
describe("normalize", function() {
it("should normalize paths", function() {
var fs = new MemoryFileSystem();
fs.normalize("/a/b/c").should.be.eql("/a/b/c");
fs.normalize("/a//b/c").should.be.eql("/a/b/c");
fs.normalize("/a//b//c").should.be.eql("/a/b/c");
fs.normalize("//a//b//c").should.be.eql("/a/b/c");
fs.normalize("/a/////b/c").should.be.eql("/a/b/c");
fs.normalize("/./a/d///..////b/c").should.be.eql("/a/b/c");
fs.normalize("/..").should.be.eql("/");
fs.normalize("/.").should.be.eql("/");
fs.normalize("/.git").should.be.eql("/.git");
fs.normalize("/a/b/c/.git").should.be.eql("/a/b/c/.git");
fs.normalize("/a/b/c/..git").should.be.eql("/a/b/c/..git");
fs.normalize("/a/b/c/..").should.be.eql("/a/b");
fs.normalize("/a/b/c/../..").should.be.eql("/a");
fs.normalize("/a/b/c/../../..").should.be.eql("/");
fs.normalize("C:\\a\\..").should.be.eql("C:\\");
fs.normalize("C:\\a\\b\\..").should.be.eql("C:\\a");
fs.normalize("C:\\a\\b\\\c\\..\\..").should.be.eql("C:\\a");
fs.normalize("C:\\a\\b\\d\\..\\c\\..\\..").should.be.eql("C:\\a");
fs.normalize("C:\\a\\b\\d\\\\.\\\\.\\c\\.\\..").should.be.eql("C:\\a\\b\\d");
});
});
describe("join", function() {

@@ -217,9 +260,106 @@ it("should join paths", function() {

fs.join("/a/", "b/c").should.be.eql("/a/b/c");
fs.join("/a//", "b/c").should.be.eql("/a//b/c");
fs.join("/a//", "b/c").should.be.eql("/a/b/c");
fs.join("a", "b/c").should.be.eql("a/b/c");
fs.join("a/b", "c").should.be.eql("a/b/c");
fs.join("C:", "a/b").should.be.eql("C:/a/b");
fs.join("C:\\", "a/b").should.be.eql("C:\\a/b");
fs.join("C:", "a/b").should.be.eql("C:\\a\\b");
fs.join("C:\\", "a/b").should.be.eql("C:\\a\\b");
fs.join("C:\\", "a\\b").should.be.eql("C:\\a\\b");
});
it("should join paths (weird cases)", function() {
var fs = new MemoryFileSystem();
fs.join("/", "").should.be.eql("/");
fs.join("/a/b/", "").should.be.eql("/a/b/");
fs.join("/a/b/c", "").should.be.eql("/a/b/c");
fs.join("C:", "").should.be.eql("C:");
fs.join("C:\\a\\b", "").should.be.eql("C:\\a\\b");
});
it("should join paths (absolute request)", function() {
var fs = new MemoryFileSystem();
fs.join("/a/b/c", "/d/e/f").should.be.eql("/d/e/f");
fs.join("C:\\a\\b\\c", "/d/e/f").should.be.eql("/d/e/f");
fs.join("/a/b/c", "C:\\d\\e\\f").should.be.eql("C:\\d\\e\\f");
fs.join("C:\\a\\b\\c", "C:\\d\\e\\f").should.be.eql("C:\\d\\e\\f");
});
});
describe("os", function() {
var fileSystem;
beforeEach(function() {
fileSystem = new MemoryFileSystem({
"": true,
a: {
"": true,
index: new Buffer("1"), // /a/index
dir: {
"": true,
index: new Buffer("2") // /a/dir/index
}
},
"C:": {
"": true,
a: {
"": true,
index: new Buffer("3"), // C:\files\index
dir: {
"": true,
index: new Buffer("4") // C:\files\a\index
}
}
}
});
});
describe("unix", function() {
it("should stat stuff", function() {
fileSystem.statSync("/a").isDirectory().should.be.eql(true);
fileSystem.statSync("/a").isFile().should.be.eql(false);
fileSystem.statSync("/a/index").isDirectory().should.be.eql(false);
fileSystem.statSync("/a/index").isFile().should.be.eql(true);
fileSystem.statSync("/a/dir").isDirectory().should.be.eql(true);
fileSystem.statSync("/a/dir").isFile().should.be.eql(false);
fileSystem.statSync("/a/dir/index").isDirectory().should.be.eql(false);
fileSystem.statSync("/a/dir/index").isFile().should.be.eql(true);
});
it("should readdir directories", function() {
fileSystem.readdirSync("/a").should.be.eql(["index", "dir"]);
fileSystem.readdirSync("/a/dir").should.be.eql(["index"]);
});
it("should readdir directories", function() {
fileSystem.readFileSync("/a/index", "utf-8").should.be.eql("1");
fileSystem.readFileSync("/a/dir/index", "utf-8").should.be.eql("2");
});
it("should also accept multi slashs", function() {
fileSystem.statSync("/a///dir//index").isFile().should.be.eql(true);
});
});
describe("windows", function() {
it("should stat stuff", function() {
fileSystem.statSync("C:\\a").isDirectory().should.be.eql(true);
fileSystem.statSync("C:\\a").isFile().should.be.eql(false);
fileSystem.statSync("C:\\a\\index").isDirectory().should.be.eql(false);
fileSystem.statSync("C:\\a\\index").isFile().should.be.eql(true);
fileSystem.statSync("C:\\a\\dir").isDirectory().should.be.eql(true);
fileSystem.statSync("C:\\a\\dir").isFile().should.be.eql(false);
fileSystem.statSync("C:\\a\\dir\\index").isDirectory().should.be.eql(false);
fileSystem.statSync("C:\\a\\dir\\index").isFile().should.be.eql(true);
});
it("should readdir directories", function() {
fileSystem.readdirSync("C:\\a").should.be.eql(["index", "dir"]);
fileSystem.readdirSync("C:\\a\\dir").should.be.eql(["index"]);
});
it("should readdir directories", function() {
fileSystem.readFileSync("C:\\a\\index", "utf-8").should.be.eql("3");
fileSystem.readFileSync("C:\\a\\dir\\index", "utf-8").should.be.eql("4");
});
it("should also accept multi slashs", function() {
fileSystem.statSync("C:\\\\a\\\\\\dir\\\\index").isFile().should.be.eql(true);
});
it("should also accept a normal slash", function() {
fileSystem.statSync("C:\\a\\dir/index").isFile().should.be.eql(true);
fileSystem.statSync("C:\\a\\dir\\index").isFile().should.be.eql(true);
fileSystem.statSync("C:\\a/dir/index").isFile().should.be.eql(true);
fileSystem.statSync("C:\\a/dir\\index").isFile().should.be.eql(true);
});
});
});
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc