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.
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
import {DirectoryIsActuallyFileError, DocumentDirectory} 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', 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);
|
|
let firstChild = documents.root.children[0];
|
|
} |