web-dev-qa-db-ja.com

酵素はonChangeイベントをシミュレートします

MochaとEnzymeを使用して反応コンポーネントをテストしています。コンポーネントは次のとおりです(もちろん簡単にするために短縮されています)。

class New extends React.Component {

  // shortened for simplicity

  handleChange(event) {
    // handle changing state of input

    const target = event.target;
    const value = target.value;
    const name = target.name
    this.setState({[name]: value})

  }


  render() {
    return(
      <div>
        <form onSubmit={this.handleSubmit}>
          <div className="form-group row">
            <label className="col-2 col-form-label form-text">Poll Name</label>
            <div className="col-10">
              <input
                className="form-control"
                ref="pollName"
                name="pollName"
                type="text"
                value={this.state.pollName}
                onChange={this.handleChange}
              />
            </div>
          </div>

          <input className="btn btn-info"  type="submit" value="Submit" />
        </form>
      </div>
    )
  }
}

そして、ここにテストがあります:

it("responds to name change", done => {
  const handleChangeSpy = sinon.spy();
  const event = {target: {name: "pollName", value: "spam"}};
  const wrap = mount(
    <New handleChange={handleChangeSpy} />
  );

  wrap.ref('pollName').simulate('change', event);
  expect(handleChangeSpy.calledOnce).to.equal(true);
})

ユーザーが<input>ボックスにテキストを入力すると、handleChangeメソッドが呼び出されることを期待しています。上記のテストは失敗します:

AssertionError: expected false to equal true
+ expected - actual

-false
+true

at Context.<anonymous> (test/components/new_component_test.js:71:45)

私は何を間違えていますか?

編集

私の目的は、handleChangeメソッドが呼び出されることをテストすることです。どうやってやるの?

27
stoebelj

プロトタイプを介して直接メソッドにスパイすることができます。

it("responds to name change", done => {
  const handleChangeSpy = sinon.spy(New.prototype, "handleChange");
  const event = {target: {name: "pollName", value: "spam"}};
  const wrap = mount(
    <New />
  );
  wrap.ref('pollName').simulate('change', event);
  expect(handleChangeSpy.calledOnce).to.equal(true);
})

または、インスタンスのメソッドでスパイを使用することもできますが、マウントが呼び出された後にコンポーネントが既にレンダリングされているため、強制更新を行う必要があります。つまり、onChangeは元のオブジェクトに既にバインドされています。

it("responds to name change", done => {
  const event = {target: {name: "pollName", value: "spam"}};
  const wrap = mount(
    <New />
  );
  const handleChangeSpy = sinon.spy(wrap.instance(), "handleChange");
  wrap.update(); // Force re-render
  wrap.ref('pollName').simulate('change', event);
  expect(handleChangeSpy.calledOnce).to.equal(true);
})
33
Evan Sebastian