mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
49 lines
1.5 KiB
JavaScript
49 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const expect = require('chai').expect;
|
|
const fse = require('fs-extra');
|
|
const fileExistsSync = require('../../../../../lib/utils/fs/fileExistsSync');
|
|
|
|
describe('#fileExistsSync()', () => {
|
|
describe('When reading a file', () => {
|
|
it('should detect if a file exists', () => {
|
|
const file = fileExistsSync(__filename);
|
|
expect(file).to.equal(true);
|
|
});
|
|
|
|
it("should detect if a file doesn't exist", () => {
|
|
const noFile = fileExistsSync(path.join(__dirname, 'XYZ.json'));
|
|
expect(noFile).to.equal(false);
|
|
});
|
|
});
|
|
|
|
describe('When reading a symlink to a file', () => {
|
|
it('should detect if the file exists', () => {
|
|
fse.symlinkSync(__filename, 'sym');
|
|
const found = fileExistsSync('sym');
|
|
expect(found).to.equal(true);
|
|
fse.unlinkSync('sym');
|
|
});
|
|
|
|
it("should detect if the file doesn't exist w/ bad symlink", () => {
|
|
fse.symlinkSync('oops', 'invalid-sym');
|
|
const found = fileExistsSync('invalid-sym');
|
|
expect(found).to.equal(false);
|
|
fse.unlinkSync('invalid-sym');
|
|
});
|
|
|
|
it("should detect if the file doesn't exist w/ symlink to dir", () => {
|
|
fse.symlinkSync(__dirname, 'dir-sym');
|
|
const found = fileExistsSync('dir-sym');
|
|
expect(found).to.equal(false);
|
|
fse.unlinkSync('dir-sym');
|
|
});
|
|
|
|
it("should detect if the file doesn't exist", () => {
|
|
const found = fileExistsSync('bogus');
|
|
expect(found).to.equal(false);
|
|
});
|
|
});
|
|
});
|