forked from zuriby/Faker.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
system.unit.js
47 lines (39 loc) · 1.76 KB
/
system.unit.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
if (typeof module !== 'undefined') {
var assert = require('assert');
var sinon = require('sinon');
var faker = require('../index');
}
describe("system.js", function () {
describe("directoryPath()", function () {
it("returns unix fs directory full path", function () {
sinon.stub(faker.random, 'words').returns('24/7');
var directoryPath = faker.system.directoryPath();
assert.equal(directoryPath.indexOf('/'), 0, 'generated directoryPath should start with /');
faker.random.words.restore();
});
});
describe("filePath()", function () {
it("returns unix fs file full path", function () {
sinon.stub(faker.random, 'words').returns('24/7');
var filePath = faker.system.filePath();
assert.equal(filePath.indexOf('/'), 0, 'generated filePath should start with /');
faker.random.words.restore();
});
});
describe("fileName()", function () {
it("returns filenames without system path seperators", function () {
sinon.stub(faker.random, 'words').returns('24/7');
var fileName = faker.system.fileName();
assert.equal(fileName.indexOf('/'), -1, 'generated fileNames should not have path seperators');
faker.random.words.restore();
});
});
describe("commonFileName()", function () {
it("returns filenames without system path seperators", function () {
sinon.stub(faker.random, 'words').returns('24/7');
var fileName = faker.system.commonFileName();
assert.equal(fileName.indexOf('/'), -1, 'generated commonFileNames should not have path seperators');
faker.random.words.restore();
});
});
});