@@ -3,6 +3,7 @@ import ReactTestUtils from 'react/lib/ReactTestUtils';
3
3
import Tabs from '../src/Tabs' ;
4
4
import Tab from '../src/Tab' ;
5
5
import NavItem from '../src/NavItem' ;
6
+ import Nav from '../src/Nav' ;
6
7
import ValidComponentChildren from '../src/utils/ValidComponentChildren' ;
7
8
import { render } from './helpers' ;
8
9
@@ -25,7 +26,7 @@ describe('Tabs', function () {
25
26
assert . equal ( tabs . refs . tabs . props . activeKey , 1 ) ;
26
27
} ) ;
27
28
28
- it ( 'Should only show the tabs with `Tab.props.tab ` set' , function ( ) {
29
+ it ( 'Should only show the tabs with `Tab.props.title ` set' , function ( ) {
29
30
let instance = ReactTestUtils . renderIntoDocument (
30
31
< Tabs activeKey = { 3 } >
31
32
< Tab title = "Tab 1" eventKey = { 1 } > Tab 1 content</ Tab >
@@ -260,49 +261,51 @@ describe('Tabs', function () {
260
261
} ) ;
261
262
262
263
describe ( 'Web Accessibility' , function ( ) {
263
-
264
- it ( 'Should generate ids from parent id' , function ( ) {
265
- let instance = ReactTestUtils . renderIntoDocument (
264
+ let instance ;
265
+ beforeEach ( function ( ) {
266
+ instance = ReactTestUtils . renderIntoDocument (
266
267
< Tabs defaultActiveKey = { 2 } id = 'tabs' >
267
- < Tab title = "Tab 1" eventKey = { 1 } > Tab 1 content</ Tab >
268
- < Tab title = "Tab 2" eventKey = { 2 } > Tab 2 content</ Tab >
268
+ < Tab id = 'pane-1' title = "Tab 1" eventKey = { 1 } > Tab 1 content</ Tab >
269
+ < Tab id = 'pane-2' title = "Tab 2" eventKey = { 2 } > Tab 2 content</ Tab >
269
270
</ Tabs >
270
271
) ;
272
+ } ) ;
271
273
274
+ it ( 'Should generate ids from parent id' , function ( ) {
272
275
let tabs = ReactTestUtils . scryRenderedComponentsWithType ( instance , NavItem ) ;
273
276
274
277
tabs . every ( tab =>
275
278
assert . ok ( tab . props [ 'aria-controls' ] && tab . props . linkId ) ) ;
276
279
} ) ;
277
280
278
281
it ( 'Should add aria-controls' , function ( ) {
279
- let instance = ReactTestUtils . renderIntoDocument (
280
- < Tabs defaultActiveKey = { 2 } id = 'tabs' >
281
- < Tab id = 'pane-1' title = "Tab 1" eventKey = { 1 } > Tab 1 content</ Tab >
282
- < Tab id = 'pane-2' title = "Tab 2" eventKey = { 2 } > Tab 2 content</ Tab >
283
- </ Tabs >
284
- ) ;
285
-
286
282
let panes = ReactTestUtils . scryRenderedComponentsWithType ( instance , Tab ) ;
287
283
288
284
assert . equal ( panes [ 0 ] . props [ 'aria-labelledby' ] , 'pane-1___tab' ) ;
289
285
assert . equal ( panes [ 1 ] . props [ 'aria-labelledby' ] , 'pane-2___tab' ) ;
290
286
} ) ;
291
287
292
288
it ( 'Should add aria-controls' , function ( ) {
293
- let instance = ReactTestUtils . renderIntoDocument (
294
- < Tabs defaultActiveKey = { 2 } id = 'tabs' >
295
- < Tab id = 'pane-1' title = "Tab 1" eventKey = { 1 } > Tab 1 content</ Tab >
296
- < Tab id = 'pane-2' title = "Tab 2" eventKey = { 2 } > Tab 2 content</ Tab >
297
- </ Tabs >
298
- ) ;
299
-
300
289
let tabs = ReactTestUtils . scryRenderedComponentsWithType ( instance , NavItem ) ;
301
290
302
291
assert . equal ( tabs [ 0 ] . props [ 'aria-controls' ] , 'pane-1' ) ;
303
292
assert . equal ( tabs [ 1 ] . props [ 'aria-controls' ] , 'pane-2' ) ;
304
293
} ) ;
305
294
295
+ it ( 'Should add role=tablist to the nav' , function ( ) {
296
+ let nav = ReactTestUtils . findRenderedComponentWithType ( instance , Nav ) ;
297
+
298
+ assert . equal ( nav . props . role , 'tablist' ) ;
299
+ } ) ;
300
+
301
+ it ( 'Should add aria-selected to the nav item for the selected tab' , function ( ) {
302
+ let tabs = ReactTestUtils . scryRenderedComponentsWithType ( instance , NavItem ) ;
303
+ let link1 = ReactTestUtils . findRenderedDOMComponentWithTag ( tabs [ 0 ] , 'a' ) ;
304
+ let link2 = ReactTestUtils . findRenderedDOMComponentWithTag ( tabs [ 1 ] , 'a' ) ;
305
+
306
+ assert . equal ( link1 . props [ 'aria-selected' ] , undefined ) ;
307
+ assert . equal ( link2 . props [ 'aria-selected' ] , true ) ;
308
+ } ) ;
306
309
} ) ;
307
310
308
311
it ( 'Should not pass className to Nav' , function ( ) {
0 commit comments