Choices/src/scripts/components/list.test.ts

97 lines
2.7 KiB
TypeScript
Raw Normal View History

2017-10-10 13:56:36 +02:00
import { expect } from 'chai';
import List from './list';
2017-10-29 19:56:24 +01:00
describe('components/list', () => {
2017-10-10 13:56:36 +02:00
let instance;
let choicesElement;
beforeEach(() => {
2017-10-11 10:39:31 +02:00
choicesElement = document.createElement('div');
2018-05-21 18:01:03 +02:00
instance = new List({
element: choicesElement,
});
2017-10-10 13:56:36 +02:00
});
afterEach(() => {
document.body.innerHTML = '';
instance = null;
});
2017-12-10 19:00:57 +01:00
describe('constructor', () => {
it('assigns choices element to class', () => {
expect(instance.element).to.eql(choicesElement);
});
it('sets the height of the element', () => {
expect(instance.height).to.eql(choicesElement.scrollTop);
});
2017-10-10 13:56:36 +02:00
});
2017-10-11 10:39:31 +02:00
describe('clear', () => {
it("clears element's inner HTML", () => {
2017-10-11 10:39:31 +02:00
const innerHTML = 'test';
instance.element.innerHTML = innerHTML;
expect(instance.element.innerHTML).to.equal(innerHTML);
instance.clear();
expect(instance.element.innerHTML).to.equal('');
});
});
describe('append', () => {
it('appends passed node to element', () => {
const elementToAppend = document.createElement('span');
const childClass = 'test-element';
elementToAppend.classList.add(childClass);
expect(instance.element.querySelector(`.${childClass}`)).to.equal(null);
instance.append(elementToAppend);
expect(instance.element.querySelector(`.${childClass}`)).to.equal(
elementToAppend,
);
2017-10-11 10:39:31 +02:00
});
});
describe('getChild', () => {
let childElement;
const childClass = 'test-element';
beforeEach(() => {
childElement = document.createElement('span');
childElement.classList.add(childClass);
instance.element.appendChild(childElement);
});
it('returns child element', () => {
const expectedResponse = childElement;
const actualResponse = instance.getChild(`.${childClass}`);
expect(expectedResponse).to.eql(actualResponse);
});
});
describe('hasChildren', () => {
describe('when list has children', () => {
it('returns true', () => {
const childElement = document.createElement('span');
instance.element.appendChild(childElement);
const response = instance.hasChildren();
expect(response).to.equal(true);
});
});
describe('when list does not have children', () => {
it('returns false', () => {
instance.element.innerHTML = '';
const response = instance.hasChildren();
expect(response).to.equal(false);
});
});
});
describe('scrollToTop', () => {
it("sets the position's scroll position to 0", () => {
instance.element.scrollTop = 10;
instance.scrollToTop();
expect(instance.element.scrollTop).to.equal(0);
});
});
2017-10-10 13:56:36 +02:00
});