在Vue测试实用程序中模拟退格

时间:2018-09-11 16:51:13

标签: unit-testing vue.js mocha vue-test-utils

我已经在VueJS中编写了一个独立的可重用组件,该组件本质上只是一个输入字段的包装器,但是它会根据传递给它的道具进行键盘输入的智能实时处理。

它的运行就像一种魅力,我能够通过Vue Test Utils(摩卡风味)成功测试其大部分功能,但我尝试测试其是否正确响应特殊键(箭头,退格键,制表符等)并被卡住。

这是组件本身的编辑后版本:

<template>
    <input type="text" v-model="internalValue" :placeholder="placeholder"
       @keydown="keyDownHandler"/>
</template>
<script>
    export default {
        name: "LimitedTextArea",
        props: {
            fieldname: '',
            value: { type: String, default: ""},
            placeholder: 'placeholder',
            ...
        },
        data: function() {
            return {
                internalValue: ''
            }
        },
        watch: {
            internalValue(newVal /*, oldVal*/ ) {
                this.$emit("input", this.fieldname, newVal);
            }
        },
        mounted: function() {
            ...
        },
        methods: {
            keyDownHandler(evt) {
                this.internalValue = this.value;
                if (!evt.metaKey && evt.keyCode >= 45) {
                    evt.preventDefault();
                    const inputChar = evt.key;
                    let newChar = '';
                    /* filtering logic here */
                    this.internalValue += newChar;
                } else {
                    // just for tracing this path during dev
                    console.log('will execute default action');
                }
            }
        }
    }
</script>

…这是测试:

it('embedded: delete key functions normally', () => {
    const initialValue = '';
    const inputValue = 'omega';
    const outputValue = 'omeg';
    const deleteKeyEvent = {key: 'Backspace', keyCode: 8};
    const parent = mount({
        data: function() { return {
            textValue: initialValue
        }},
        template: \`<div>
           <limited-text-area :fieldname="'textValue'" :value="textValue" 
           @input="input"></limited-text-area>
        </div>`,
        components: { 'limited-text-area': LimitedTextArea },
        methods: {
            input(fieldname, value) {
                this[fieldname] = value;
            }
        }
    });
    const input = parent.find('input');
    typeStringIntoField(inputValue, input);

    // I've tried with and without this before sending the key event…
    input.element.focus();
    input.element.setSelectionRange(inputValue.length, inputValue.length);

    // I've tried doing it this way
    input.trigger('keydown', deleteKeyEvent);

    // And I've tried doing it this way, based on the Vue Test Utils guide 
    // for keyboard events
    input.trigger('keydown.up.backspace');
    expect(parent.vm.textValue).to.equal(outputValue);
});

以上引用的两种方法均无效。在这一点上,我怀疑调用错误的方法可能不是一个简单的问题,或者我是:

  1. 误解了Vue Test Utils中的DOM(有效地将其视为PhantomJS);或
  2. 在这种情况下完全使用错误的测试方法。

任何帮助将不胜感激!谢谢。

1 个答案:

答案 0 :(得分:1)

BACKSPACE上本地模拟<input>(在浏览器中的Vue外部)实际上并不会删除文本,因此我认为它不能与Vue一起使用。我发现的解决方案只是检查keydown事件是否退格,并以编程方式从输入文本[1] [2]中删除字符。因此,我想说这不是可以有效地进行单元测试的东西。

请注意,vue-test-utils uses JSDom (not PhantomJS)