@theia/core
Version:
Theia is a cloud & desktop IDE framework implemented in TypeScript.
174 lines (154 loc) • 6.46 kB
text/typescript
// *****************************************************************************
// Copyright (C) 2019 Thomas Drosdzoll.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
import { expect, assert } from 'chai';
import { MockTreeModel } from './test/mock-tree-model';
import { TreeModel } from './tree-model';
import { TreeNode, CompositeTreeNode, Tree, TreeImpl } from './tree';
import { ExpandableTreeNode } from './tree-expansion';
import { createTreeTestContainer } from './test/tree-test-container';
import { timeout } from '../../common/promise-util';
describe('TreeExpansionService', () => {
let model: TreeModel;
beforeEach(() => {
model = createTreeModel();
model.root = MockTreeModel.HIERARCHICAL_MOCK_ROOT();
});
describe('expandNode', () => {
it("won't expand an already expanded node", done => {
const node: ExpandableTreeNode = retrieveNode<ExpandableTreeNode>('1');
model.expandNode(node).then(result => {
expect(result).to.be.undefined;
done();
});
});
it('will expand a collapsed node', done => {
const node: ExpandableTreeNode = retrieveNode<ExpandableTreeNode>('1');
model.collapseNode(node).then(() => {
model.expandNode(node).then(result => {
expect(result).to.be.eq(result);
done();
});
});
});
it("won't expand an undefined node", done => {
model.expandNode(undefined).then(result => {
expect(result).to.be.undefined;
done();
});
});
});
describe('collapseNode', () => {
it('will collapse an expanded node', done => {
const node: ExpandableTreeNode = retrieveNode<ExpandableTreeNode>('1');
model.collapseNode(node).then(result => {
expect(result).to.be.eq(result);
done();
});
});
it("won't collapse an already collapsed node", done => {
const node: ExpandableTreeNode = retrieveNode<ExpandableTreeNode>('1');
model.collapseNode(node).then(() => {
model.collapseNode(node).then(result => {
expect(result).to.be.false;
done();
});
});
});
it('cannot collapse a leaf node', done => {
const node: ExpandableTreeNode = retrieveNode<ExpandableTreeNode>('1.1.2');
model.collapseNode(node).then(result => {
expect(result).to.be.false;
done();
});
});
});
describe('collapseAll', () => {
it('will collapse all nodes recursively', done => {
model.collapseAll(retrieveNode<CompositeTreeNode>('1')).then(result => {
expect(result).to.be.eq(result);
done();
});
});
it("won't collapse nodes recursively if the root node is collapsed already", done => {
model.collapseNode(retrieveNode<ExpandableTreeNode>('1')).then(() => {
model.collapseAll(retrieveNode<CompositeTreeNode>('1')).then(result => {
expect(result).to.be.eq(result);
done();
});
});
});
});
describe('toggleNodeExpansion', () => {
it('changes the expansion state from expanded to collapsed', done => {
const node = retrieveNode<ExpandableTreeNode>('1');
model.onExpansionChanged((e: Readonly<ExpandableTreeNode>) => {
expect(e).to.be.equal(node);
expect(e.expanded).to.be.false;
});
model.toggleNodeExpansion(node).then(() => {
done();
});
});
it('changes the expansion state from collapsed to expanded', done => {
const node = retrieveNode<ExpandableTreeNode>('1');
model.collapseNode(node).then(() => {
});
model.onExpansionChanged((e: Readonly<ExpandableTreeNode>) => {
expect(e).to.be.equal(node);
expect(e.expanded).to.be.true;
});
model.toggleNodeExpansion(node).then(() => {
done();
});
});
});
it('node should be refreshed on expansion', async () => {
const container = createTreeTestContainer();
container.rebind(Tree).to(class extends TreeImpl {
protected override async resolveChildren(parent: CompositeTreeNode): Promise<TreeNode[]> {
await timeout(200);
return [{
id: 'child',
parent
}];
}
});
const root: ExpandableTreeNode = {
id: 'parent',
parent: undefined,
children: [],
expanded: false
};
const treeModel = container.get<TreeModel>(TreeModel);
treeModel.root = root;
assert.isFalse(root.expanded, 'before');
assert.equal(root.children.length, 0, 'before');
const expanding = treeModel.expandNode(root);
assert.isFalse(root.expanded, 'between');
assert.equal(root.children.length, 0, 'between');
await expanding;
assert.isTrue(root.expanded, 'after');
assert.equal(root.children.length, 1, 'after');
});
function createTreeModel(): TreeModel {
const container = createTreeTestContainer();
return container.get(TreeModel);
}
function retrieveNode<T extends TreeNode>(id: string): Readonly<T> {
const readonlyNode: Readonly<T> = model.getNode(id) as T;
return readonlyNode;
}
});