summaryrefslogtreecommitdiffstats
path: root/test/app/globalInlineMessageBar/GlobalInlineMessageBar.test.js
blob: 9dc2a28c084c68778498e7200d8d11a73b351095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import React from 'react';
import { mount } from 'enzyme';
import {Provider} from 'react-redux'
import configureStore from 'redux-mock-store';

import GlobalInlineMessageBar from 'app/globalInlineMessageBar/GlobalInlineMessageBar.jsx'
import {
  MESSAGE_LEVEL_WARNING
} from 'utils/GlobalConstants.js'
import InlineMessage from 'generic-components/InlineMessage/InlineMessage.jsx';

describe('GlobalInlineMessageBarTests', () => {
  const errMsg = 'some random message';
  const initialState = {
    globalInlineMessageBar: {
      feedbackMsgText: errMsg,
      feedbackMsgSeverity: MESSAGE_LEVEL_WARNING
    }
  };
  const mockStore = configureStore();
  let store, wrapper;

  beforeEach( () => {
    store = mockStore(initialState);
    wrapper = mount(<Provider store={store}><GlobalInlineMessageBar /></Provider>);
  })

  it('render message bar - visible', () => {
    expect(wrapper).toHaveLength(1); // ensure the message bar is mounted
    expect(wrapper.find(InlineMessage)).toHaveLength(1); // ensure the InlineMessage is mounted
  });

  it('props assigned properly', () => {
    expect(wrapper.find(InlineMessage).props().level).toEqual(MESSAGE_LEVEL_WARNING); // check that the props match
    expect(wrapper.find(InlineMessage).props().messageTxt).toEqual(errMsg); // check that the props match
  })
})