Как проверить и проверить состояние компонента ReactJS / Fluxible?

Мое приложение - приложение Fluxible / React.

У меня есть следующая спецификация, которая пытается проверить LoginForm. Встроенные компоненты были заглушены с помощью rewire. Я ссылался на http://fluxible.io/api/components.html.

Первая спецификация, которую он ("рендерит") проходит. Однако, когда я пытаюсь выполнить больше тестов, как показано в прокомментированном коде, тест не пройден.

Я не могу подтвердить состояние LoginForm или вызвать смоделированные события, используя TestUtils на компоненте. Есть ли способы сделать это?

import React from 'react/addons';;
import { createMockComponentContext } from 'fluxible/utils';
import createStore from 'fluxible/addons/createStore';

var rewire = require("rewire");
var rewireModule = require("../../helpers/rewire-module");

// stub inner components with LoginForm
// `rewire` instead of `require`
var LoginForm = rewire("../../../src/components/auth/login-form");

// Replace the required module with a stub component.
rewireModule(LoginForm, {
  FormattedMessage: React.createClass({
    render: function() { return <div />; }
  }),
  NavLink: React.createClass({
    render: function() { return <div />; }
  })
});

describe('LoginForm', function() {
  var context;
  var TestUtils;
  var provideContext;
  var connectToStores;
  var MockIntlStore;
  var MockAuthStore;
  var noop = function(){};
  var component;

  beforeEach(function(){

    MockIntlStore = createStore({
      storeName: 'IntlStore',
      getMessage: noop,
      getState: function(){
        return {}
      }
    });

    MockAuthStore = createStore({
      storeName: 'AuthStore'
    });

    context = createMockComponentContext({
      stores: [MockIntlStore, MockAuthStore]
    });

    // React must be required after window is set
    TestUtils = React.addons.TestUtils
    provideContext = require('fluxible/addons/provideContext');
    connectToStores = require('fluxible/addons/connectToStores');

    // Wrap with context provider and store connector
    LoginForm = provideContext(connectToStores(LoginForm, [MockIntlStore, MockAuthStore], function (stores) {
      return {
      };
    }));

    component = TestUtils.renderIntoDocument(
      <LoginForm context={context} />
    );

  });

  it("renders", function() {


    var foundComponent = TestUtils.findRenderedDOMComponentWithClass(
      component, 'login-form');

    expect(foundComponent).toBeDefined();
  });

  // TODO fluxible wraps components so we cant reach the inner component to assert on state and trigger event handlers

  // it("should have an initial state", function() {

  //   let initialState = {
  //     username: '',
  //     pass: ''
  //   }

  //   expect(component.state).toEqual(initialState);
  // });
});

2 ответа

Решение

Когда вы используете provideContext а также connectToStoresВаш компонент упакован. Вы сделали все правильно, чтобы найти компонент, используя TestUtils. findRenderedDOMComponentWithClass, Просто используйте найденный компонент для тестирования, то есть то, что тестируется. т.е.

...
var foundComponent = TestUtils.findRenderedDOMComponentWithClass(
  component, 'login-form');
expect(foundComponent.state).toEqual(initialState);
...

Если вы все еще ищете решение:

    var tbg = React.createElement(x, { di: serviceLocator });
    var renderer = React.addons.TestUtils.createRenderer();
    var rtbg = renderer.render(tbg);

Тогда ваш метод здесь:

    renderer._instance._instance.myMethod

Где myMethod является функциональным членом компонента x

Другие вопросы по тегам