我正在尝试使用angularjs实现“@ Users Feature”,除了编写单元测试外,我几乎完成了该功能。我有一个插入符号模块,可以帮助我在文本区域中获得插入符号的位置。

我认为最重要的是获得插入符号的位置,但我不知道如何在 Jasmine 中执行此操作。

指令

.directive('atUser', function (Caret) {
    return {
        restrict: 'A',
        link: function (scope, element) {
            element.bind('focus click keydown', function () {
                scope.caretPos = Caret.getPos(element);
            });

            scope.$watch(function () {
                return scope.caretPos;
            }, function (nowCaretPos) {
                /* do something here */
            })
        }
    }
})

HTML
<textarea ng-model="message" at-user></textarea>

Jasmine
describe('test at user', function () {
    /* some init code */
    it('should get caret postion', function () {
        textarea = element.find('textarea');
        textarea.triggerHandler('focus');
        except(textarea.scope().caretPos).toEqual(0);

        /*
         * then i want to simulate keydown event and type something
         * and get the caret postion
         * but i dont know how to do it
         * /
    })
})

还有一件事是我不想使用jquery。

谁能帮我?

非常感谢!

最佳答案

我只是问了一个类似的问题,我需要在Jasmine测试中设置textarea的插入符位置,然后得到一个有效的答案(using selectionStart on programmatically-created inputs),因此这是可以使用Jasmine实现的潜在解决方案:

describe('test at user', function () {
    /* some init code */
    it('should get caret postion', function () {
        textarea = element.find('textarea');
        textarea.triggerHandler('focus');
        expect(textarea.scope().caretPos).toEqual(0);

        /*
         * then i want to simulate keydown event and type something
         * and get the caret postion
         * but i dont know how to do it
         */

        document.body.appendChild(textarea[0]); // I discovered this to be the key to using the .selectionStart property successfully
        textarea.val('some text');
        textarea[0].selectionStart = 9; // you need to move the caret manually when doing things programmatically

        textarea.triggerHandler('focus');
        expect(textarea.scope().caretPos).toEqual(9);
    })
})

关于unit-testing - 我可以在 Jasmine 单元测试中获得textarea插入符号的位置吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18353694/

10-08 23:51