Jasmine Test Knockout ObservableArray

时间:2015-01-19 15:06:51

标签: javascript unit-testing knockout.js jasmine automated-tests

已更新

我已经更新了我的测试,并且返回的错误消息非常令人困惑......

it('Should get the available databases', function () {
        expect(vm.databases).toEqual([
            {
                name: 'DB 1',
                chosenRoles: function() { return []; },
                chosenModules: function () { return []; }
            },
            {
                name: 'DB 2',
                chosenRoles: function () { return []; },
                chosenModules: function () { return []; }
            },
            {
                name: 'DB 3',
                chosenRoles: function () { return []; },
                chosenModules: function () { return []; }
            },
            {
                name: 'DB 4',
                chosenRoles: function () { return []; },
                chosenModules: function () { return []; }
            },
            {
                name: 'DB 5',
                chosenRoles: function () { return []; },
                chosenModules: function () { return []; }
            }
        ]);
    });

Summary (1 tests failed)
x User Management Initial state Should get the available databases
    Expected [ { name : 'DB 1', chosenRoles : Function, chosenModules : Functi
 }, { name : 'DB 2', chosenRoles : Function, chosenModules : Function }, { nam
: 'DB 3', chosenRoles : Function, chosenModules : Function }, { name : 'DB 4',
hosenRoles : Function, chosenModules : Function }, { name : 'DB 5', chosenRole
: Function, chosenModules : Function } ] to equal [ { name : 'DB 1', chosenRol
 : Function, chosenModules : Function }, { name : 'DB 2', chosenRoles : Functi
, chosenModules : Function }, { name : 'DB 3', chosenRoles : Function, chosenM
ules : Function }, { name : 'DB 4', chosenRoles : Function, chosenModules : Fu
tion }, { name : 'DB 5', chosenRoles : Function, chosenModules : Function } ].

原帖

我对运行Jasmine Tests非常陌生,所以这可能是一个简单的问题,但我真的找不到符合我情况的任何内容。

我使用下划线创建一个数组中五个对象的列表,其中每个对象中有两个Knockout observableArray()。

var pfp = pfp || {};
pfp.insight = pfp.insight || {};
pfp.insight.controllers = pfp.insight.controllers || {};

(function() {
    'use strict';

    this.settingsController = function() {
        var root = this;
        root.databases = _.range(5).map(function (i) {
            return {
                name: 'DB ' + (i + 1),
                chosenRoles: ko.observableArray(),
                chosenModules: ko.observableArray()
            };
        });
    };
}).call(pfp.insight.controllers);

我不确定如何编写一个检查数据库数组初始状态的单元测试。

describe('User Management', function () {
'use strict';

var vm,
    databases = [];

describe('Initial state', function() {
    beforeEach(function () {
        vm = new pfp.insight.controllers.settingsController();
    });

    it('Should get the available databases', function() {
        expect(vm.databases).toEqual([
            {
                name: 'DB 1',
                chosenRoles: [],
                chosenModules: []
            },
            {
                name: 'DB 2',
                chosenRoles: [],
                chosenModules: []
            },
            {
                name: 'DB 3',
                chosenRoles: [],
                chosenModules: []
            },
            {
                name: 'DB 4',
                chosenRoles: [],
                chosenModules: []
            },
            {
                name: 'DB 5',
                chosenRoles: [],
                chosenModules: []
            }
        ]);
    });
});

2 个答案:

答案 0 :(得分:2)

我猜这个问题在于比较ko.observableArray() s与[] s的相等性。也许你可以在以下方面打破你的测试断言:

expect(vm.databases.length).toEqual(5);
expect(vm.databases[0].name).toEqual('DB 1');
expect(vm.databases[0].chosenRoles.length).toEqual(0);
expect(vm.databases[0].chosenModules.length).toEqual(0);
...
expect(vm.databases[4].name).toEqual('DB 5');
expect(vm.databases[4].chosenRoles.length).toEqual(0);
expect(vm.databases[4].chosenModules.length).toEqual(0);

答案 1 :(得分:1)

断言中的对象具有chosenRoleschosenModules作为javascript数组。但是你将它们作为observableArrays。这意味着它们确实是功能。

我可能会做Mike Griffith在上面建议的内容,但请记住为断言进行函数调用(添加括号)(并将toEqual更改为toBe,以便获得严格的相等性。)< / p>

expect(vm.databases[0].chosenRoles().length).toBe(0); expect(vm.databases[0].chosenModules().length).toBe(0);