Skip to content

Commit

Permalink
[RaisedButton] Add browser for mui#3815 and a couple of starting unit…
Browse files Browse the repository at this point in the history
… tests
  • Loading branch information
nathanmarks committed Apr 19, 2016
1 parent ceda73d commit 858dcaf
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 0 deletions.
57 changes: 57 additions & 0 deletions src/RaisedButton/RaisedButton.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/* eslint-env mocha */
import React from 'react';
import {shallow} from 'enzyme';
import {assert} from 'chai';
import RaisedButton from './RaisedButton';
import getMuiTheme from '../styles/getMuiTheme';

describe('<RaisedButton />', () => {
const muiTheme = getMuiTheme();
const shallowWithContext = (node) => shallow(node, {context: {muiTheme}});
const testChildren = <span className="unique">Hello World</span>;

it('renders an enhanced button inside paper', () => {
const wrapper = shallowWithContext(
<RaisedButton>Button</RaisedButton>
);
assert.ok(wrapper.is('Paper'));
assert.ok(wrapper.childAt(0).is('EnhancedButton'));
});

it('renders children', () => {
const wrapper = shallowWithContext(
<RaisedButton>{testChildren}</RaisedButton>
);
assert.ok(wrapper.contains(testChildren), 'should contain the children');
});

it('passes props to the enhanced button', () => {
const props = {
ariaLabel: 'Say hello world',
disabled: true,
href: 'http://google.com',
linkButton: true,
name: 'Hello World',
};

const wrapper = shallowWithContext(
<RaisedButton {...props}>Button</RaisedButton>
);

assert.ok(wrapper.childAt(0).is('EnhancedButton'));
assert.ok(wrapper.childAt(0).is(props));
});

it('renders a label with an icon before', () => {
const wrapper = shallowWithContext(
<RaisedButton
icon={<span className="test-icon" />}
label={<span className="test-label">Hello</span>}
/>
);
const icon = wrapper.find('.test-icon');
const label = wrapper.find('.test-label');
assert.ok(icon.is('span'));
assert.strictEqual(label.children().node, 'Hello', 'says hello');
});
});
52 changes: 52 additions & 0 deletions test/browser/RaisedButton.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
import React from 'react';
import ReactDOM from 'react-dom';
import TestUtils from 'react-addons-test-utils';
import RaisedButton from 'material-ui/RaisedButton';
import ActionAndroid from 'material-ui/svg-icons/action/android';
import {assert} from 'chai';
import mount from 'enzyme/mount';
import getMuiTheme from 'styles/getMuiTheme';

describe('<RaisedButton />', () => {
const muiTheme = getMuiTheme();
const container = document.createElement('div');
document.body.appendChild(container);
const mountWithContext = (node) =>
mount(node, {
attachTo: container,
context: {muiTheme},
});

it('renders a hover overlay of equal height to the button', () => {
const wrappers = [
() => mountWithContext(
<RaisedButton>Hello World</RaisedButton>
),
() => mountWithContext(
<RaisedButton
backgroundColor="#a4c639"
icon={<ActionAndroid />}
/>
),
];

wrappers.forEach((createWrapper) => {
const wrapper = createWrapper();
wrapper.simulate('mouseEnter');

const overlay = wrapper.ref('overlay');
const button = ReactDOM.findDOMNode(
TestUtils.findRenderedDOMComponentWithTag(
wrapper.instance(),
'button'
)
);

assert.strictEqual(
overlay.node.clientHeight,
button.clientHeight,
'overlay height should match the button height'
);
});
});
});
2 changes: 2 additions & 0 deletions test/karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const path = require('path');
const argv = process.argv.slice(2);
const opts = {
coverage: true,
Expand Down Expand Up @@ -83,6 +84,7 @@ module.exports = function(config) {
},
resolve: {
alias: {
'material-ui': path.resolve(__dirname, '../src'),
sinon: 'sinon/pkg/sinon.js',
},
extensions: ['', '.js', '.jsx', '.json'],
Expand Down

0 comments on commit 858dcaf

Please sign in to comment.