-
Notifications
You must be signed in to change notification settings - Fork 13.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[js-testing] more tests for SelectControl (#2877)
* rename spec folder * remove special handling for viz_type control since it now uses VizTypeControl * add test for getOptions * linting * add test for cwp * linting
- Loading branch information
Alanna Scott
authored
May 31, 2017
1 parent
1e7773e
commit 90e4d64
Showing
21 changed files
with
80 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
79 changes: 79 additions & 0 deletions
79
superset/assets/spec/javascripts/explore/components/SelectControl_spec.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* eslint-disable no-unused-expressions */ | ||
import React from 'react'; | ||
import Select, { Creatable } from 'react-select'; | ||
import sinon from 'sinon'; | ||
import { expect } from 'chai'; | ||
import { describe, it, beforeEach } from 'mocha'; | ||
import { shallow } from 'enzyme'; | ||
import SelectControl from '../../../../javascripts/explore/components/controls/SelectControl'; | ||
|
||
const defaultProps = { | ||
choices: [['1 year ago', '1 year ago'], ['today', 'today']], | ||
name: 'row_limit', | ||
label: 'Row Limit', | ||
onChange: sinon.spy(), | ||
}; | ||
|
||
const options = [ | ||
{ value: '1 year ago', label: '1 year ago' }, | ||
{ value: 'today', label: 'today' }, | ||
]; | ||
|
||
describe('SelectControl', () => { | ||
let wrapper; | ||
|
||
beforeEach(() => { | ||
wrapper = shallow(<SelectControl {...defaultProps} />); | ||
}); | ||
|
||
it('renders a Select', () => { | ||
expect(wrapper.find(Select)).to.have.lengthOf(1); | ||
}); | ||
|
||
it('calls onChange when toggled', () => { | ||
const select = wrapper.find(Select); | ||
select.simulate('change', { value: 50 }); | ||
expect(defaultProps.onChange.calledWith(50)).to.be.true; | ||
}); | ||
|
||
it('renders a Creatable for freeform', () => { | ||
wrapper = shallow(<SelectControl {...defaultProps} freeForm />); | ||
expect(wrapper.find(Creatable)).to.have.lengthOf(1); | ||
}); | ||
|
||
describe('getOptions', () => { | ||
it('returns the correct options', () => { | ||
expect(wrapper.instance().getOptions(defaultProps)).to.deep.equal(options); | ||
}); | ||
|
||
it('returns the correct options when freeform is set to true', () => { | ||
const freeFormProps = Object.assign(defaultProps, { | ||
choices: [], | ||
freeForm: true, | ||
value: ['one', 'two'], | ||
}); | ||
const newOptions = [ | ||
{ value: 'one', label: 'one' }, | ||
{ value: 'two', label: 'two' }, | ||
]; | ||
expect(wrapper.instance().getOptions(freeFormProps)).to.deep.equal(newOptions); | ||
}); | ||
}); | ||
|
||
describe('componentWillReceiveProps', () => { | ||
it('sets state.options if props.choices has changed', () => { | ||
const updatedOptions = [ | ||
{ value: 'three', label: 'three' }, | ||
{ value: 'four', label: 'four' }, | ||
]; | ||
const newProps = { | ||
choices: [['three', 'three'], ['four', 'four']], | ||
name: 'name', | ||
freeForm: false, | ||
value: null, | ||
}; | ||
wrapper.setProps(newProps); | ||
expect(wrapper.state().options).to.deep.equal(updatedOptions); | ||
}); | ||
}); | ||
}); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
38 changes: 0 additions & 38 deletions
38
superset/assets/spec/javascripts/explorev2/components/SelectControl_spec.jsx
This file was deleted.
Oops, something went wrong.