You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Engine_Rebuild/tests/fileutils-test.ts

33 lines
1.1 KiB
TypeScript

import {DocumentDirectory, FileNode} from "../src/ts_source/fileutils";
const path = require('path');
const chai = require('chai');
describe('fileutils', () => {
it('DocumentDirectory Constructor fail-on-not-exist', testDocumentDirectoryFailNoExist)
it('DocumentDirectory Constructor fail-on-file', testDocumentDirectoryFailFile)
it('documentDirectoryConstructor - debug', testDocumentDirectoryConstructor);
});
function testDocumentDirectoryFailNoExist() {
let directoryPath = path.join(__dirname, "../src/assets/documents/madeup");
chai.expect(() => {
new DocumentDirectory(directoryPath)
}).to.throw(Error)
}
function testDocumentDirectoryFailFile() {
let directoryPath = path.join(__dirname, "../src/assets/documents/Test.Word.Dock.docx");
chai.expect(() => {
new DocumentDirectory(directoryPath)
}).to.throw(Error)
}
function testDocumentDirectoryConstructor() {
let directoryPath = path.join(__dirname, "../src/assets/documents");
let documents = new DocumentDirectory(directoryPath);
console.log(documents);
console.log((documents.root.getDirectories()[0].children));
}