我正在为固定数据表及其兄弟开发插件,但我正在努力使用 Mocha/Chai 设置来设置测试。我得到的错误是:
TypeError: obj.indexOf is not a function
at Assertion.include (node_modules/chai/lib/chai/core/assertions.js:228:45)
at Assertion.assert (node_modules/chai/lib/chai/utils/addChainableMethod.js:84:49)
at Context.<anonymous> (test/HOC/addFilter_test.jsx:48:23)
我设法找到的所有教程都显示了如何处理测试琐碎的组件,我相信错误是由于节点是一个复杂的组件造成的。
我的问题:我如何更复杂的组件?特别是我想要一些帮助:
- 查找包含该单元格值的节点
- 在测试单元是如何实现的时保持无知,例如它是 a
div
还是 atd
- 查看第 1 行中的元素/单元格是否出现在应该在第 2 行中的元素之前或之后(用于验证排序)
背景
核心测试设置:
import React from 'react';
import { describe, it } from 'mocha';
import { Table, Column, Cell } from 'fixed-data-table';
import jsdom from 'jsdom';
import jquery from 'jquery';
import chaiJquery from 'chai-jquery';
import TestUtils from 'react-addons-test-utils';
import chai, { expect } from 'chai';
import Data from '../stub/Data';
// Set up testing environment to run like a browser in the command line
global.document = jsdom.jsdom('<!doctype html><html><body></body></html>');
global.window = global.document.defaultView;
const $ = jquery(global.window);
class Wrapper extends React.Component {
render() {
return this.props.children;
}
}
Wrapper.propTypes = {
children: React.PropTypes.node,
};
// build 'renderComponent' helper that should render a given react class
function renderComponent(ComponentClass, props) {
let node = null;
if (typeof (ComponentClass) === 'function') {
TestUtils.renderIntoDocument(
<Wrapper ref={n => (node = n)}>
<ComponentClass {...props} />
</Wrapper>);
} else {
TestUtils.renderIntoDocument(<ComponentClass {...props} ref={n => (node = n)} />);
}
return node;
}
// Set up chai-jquery
chaiJquery(chai, chai.util, $);
const TextCell = ({ rowIndex, columnKey, data }) => (
<Cell>
{data.getObjectAt(rowIndex)[columnKey]}
</Cell>);
TextCell.propTypes = {
rowIndex: React.PropTypes.number,
columnKey: React.PropTypes.string,
data: React.PropTypes.object,
};
数据存根:
class Data {
constructor(nrows = 4) {
this.size = nrows;
}
getSize() {
return (this.size);
}
getObjectAt(index) {
if (index < 0 || index >= this.size) {
return (null);
}
return {
id: index,
name: `Test name no ${index}`,
};
}
}
export default Data;
实际测试:
describe('Basic test', () => {
it('some test', () => {
const data = new Data();
const node = renderComponent(props =>
(<Table
rowHeight={50}
headerHeight={50}
height={500}
width={500}
filters={{ name: '' }}
rowsCount={data.getSize()}
{...props}
>
<Column
columnKey="id"
width={250}
header={<Cell>ID</Cell>}
cell={<TextCell data={data} />}
/>
<Column
columnKey="name"
width={250}
header={<Cell>Name</Cell>}
cell={<TextCell data={data} />}
/>
</Table>));
for (let i = 0; i < data.getSize(); i += 1) {
expect(node).to.contains(`Test name no ${i}`);
}
});
});
更新
按照建议改为酶:
import React from 'react';
import { describe, it } from 'mocha';
import chai, { expect } from 'chai';
import { shallow } from 'enzyme';
import chaiEnzyme from 'chai-enzyme';
import { Table, Column, Cell } from 'fixed-data-table';
import Data from '../stub/Data';
Error.stackTraceLimit = 10;
chai.use(chaiEnzyme);
const TextCell = ({ rowIndex, columnKey, data }) => (
<Cell id={`${rowIndex}_${columnKey}`}>
{data.getObjectAt(rowIndex)[columnKey]}
</Cell>);
TextCell.propTypes = {
rowIndex: React.PropTypes.number,
columnKey: React.PropTypes.string,
data: React.PropTypes.object,
};
describe('Basic test', () => {
it('some test', () => {
const data = new Data();
const node = shallow(<Table
rowHeight={50}
headerHeight={50}
height={500}
width={500}
filters={{ name: '' }}
rowsCount={data.getSize()}
>
<Column
columnKey="id"
width={250}
header={<Cell>ID</Cell>}
cell={<TextCell data={data} />}
/>
<Column
columnKey="name"
width={250}
header={<Cell>Name</Cell>}
cell={<TextCell data={data} />}
/>
</Table>);
for (let i = 0; i < data.getSize(); i += 1) {
expect(node.find(`#${i}_name`)).to.have.length(1, `Can't find cell with id: ${i}_name`);
}
});
});
我已经向 中添加了一个自动生成的 id-markerTextcell
并尝试使用它来查找它,.find(`#${i}_name`)
但它没有找到该对象。我已经检查了包装元素的输出,node.html()
它确实包含具有正确 ID 的单元格:
<div class="fixedDataTableCellLayout_wrap1 public_fixedDataTableCell_wrap1" id="0_name">
<div class="fixedDataTableCellLayout_wrap2 public_fixedDataTableCell_wrap2">
<div class="fixedDataTableCellLayout_wrap3 public_fixedDataTableCell_wrap3">
<div class="public_fixedDataTableCell_cellContent">
Test name no 0
</div>
</div>
</div>
</div>