You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
5 years ago
|
/**
|
||
|
* @author windy
|
||
|
* @version 2.0
|
||
|
* Created by windy on 2020/4/3
|
||
|
*/
|
||
|
|
||
|
describe("list_loader", function () {
|
||
|
|
||
|
/**
|
||
|
* test_author_windy
|
||
|
**/
|
||
|
it("setValue", function (done) {
|
||
|
var items = BI.map(BI.range(0, 100), function (idx, v) {
|
||
|
return {
|
||
|
type: "bi.single_select_item",
|
||
|
text: v,
|
||
|
value: v
|
||
|
}
|
||
|
});
|
||
|
var widget = BI.Test.createWidget({
|
||
|
type: "bi.list_loader",
|
||
|
el: {
|
||
|
layouts: [{
|
||
|
type: "bi.left",
|
||
|
hgap: 5
|
||
|
}]
|
||
|
},
|
||
|
items: items
|
||
|
});
|
||
|
BI.nextTick(function () {
|
||
|
expect(widget.getAllButtons().length).to.equal(100);
|
||
|
widget.addItems([{
|
||
|
type: "bi.single_select_item",
|
||
|
text: 102,
|
||
|
value: 102
|
||
|
}, {
|
||
|
type: "bi.single_select_item",
|
||
|
text: 103,
|
||
|
value: 103
|
||
|
}]);
|
||
|
expect(widget.getAllLeaves().length).to.equal(102);
|
||
|
widget.setValue(102);
|
||
|
expect(widget.getValue()[0]).to.equal(102);
|
||
|
expect(widget.getSelectedButtons().length).to.equal(1);
|
||
|
widget.setNotSelectedValue(102);
|
||
|
expect(widget.getNotSelectedValue()[0]).to.equal(102);
|
||
|
expect(widget.getNotSelectedButtons().length).to.equal(1);
|
||
|
widget.destroy();
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
});
|