@@ -8,6 +8,7 @@ import { render } from './helpers';
8
8
9
9
describe ( '<Affix>' , ( ) => {
10
10
let mountPoint ;
11
+ let handlers ;
11
12
12
13
// This makes the window very tall; hopefully enough to exhibit the affix
13
14
// behavior. If this is insufficient, we should modify the Karma config to
@@ -41,9 +42,18 @@ describe('<Affix>', () => {
41
42
Content . renderCount = 0 ;
42
43
mountPoint = document . createElement ( 'div' ) ;
43
44
document . body . appendChild ( mountPoint ) ;
45
+ handlers = {
46
+ onAffix : sinon . spy ( ) ,
47
+ onAffixed : sinon . spy ( ) ,
48
+ onAffixTop : sinon . spy ( ) ,
49
+ onAffixedTop : sinon . spy ( ) ,
50
+ onAffixBottom : sinon . spy ( ) ,
51
+ onAffixedBottom : sinon . spy ( )
52
+ } ;
44
53
} ) ;
45
54
46
55
afterEach ( ( ) => {
56
+ Object . keys ( handlers ) . forEach ( key => handlers [ key ] . reset ( ) ) ;
47
57
ReactDOM . unmountComponentAtNode ( mountPoint ) ;
48
58
document . body . removeChild ( mountPoint ) ;
49
59
window . scrollTo ( 0 , 0 ) ;
@@ -58,6 +68,7 @@ describe('<Affix>', () => {
58
68
59
69
const content =
60
70
ReactTestUtils . findRenderedComponentWithType ( instance , Content ) ;
71
+
61
72
expect ( content ) . to . exist ;
62
73
} ) ;
63
74
@@ -76,6 +87,7 @@ describe('<Affix>', () => {
76
87
affixStyle = { { color : 'white' } }
77
88
bottomClassName = "affix-bottom"
78
89
bottomStyle = { { color : 'blue' } }
90
+ { ...handlers }
79
91
>
80
92
< Content style = { { height : 100 } } />
81
93
</ Affix >
@@ -88,14 +100,19 @@ describe('<Affix>', () => {
88
100
} ) ;
89
101
90
102
it ( 'should render correctly at top' , ( done ) => {
91
- window . scrollTo ( 0 , 99 ) ;
103
+ window . scrollTo ( 0 , 101 ) ;
92
104
93
105
requestAnimationFrame ( ( ) => {
94
- expect ( node . className ) . to . equal ( 'affix-top' ) ;
95
- expect ( node . style . position ) . to . not . be . ok ;
96
- expect ( node . style . top ) . to . not . be . ok ;
97
- expect ( node . style . color ) . to . equal ( 'red' ) ;
98
- done ( ) ;
106
+ window . scrollTo ( 0 , 99 ) ;
107
+ requestAnimationFrame ( ( ) => {
108
+ expect ( node . className ) . to . equal ( 'affix-top' ) ;
109
+ expect ( node . style . position ) . to . not . be . ok ;
110
+ expect ( node . style . top ) . to . not . be . ok ;
111
+ expect ( node . style . color ) . to . equal ( 'red' ) ;
112
+ expect ( handlers . onAffixTop ) . to . been . calledOnce ;
113
+ expect ( handlers . onAffixedTop ) . to . been . calledOnce ;
114
+ done ( ) ;
115
+ } ) ;
99
116
} ) ;
100
117
} ) ;
101
118
@@ -106,6 +123,9 @@ describe('<Affix>', () => {
106
123
expect ( node . style . position ) . to . equal ( 'fixed' ) ;
107
124
expect ( node . style . top ) . to . not . be . ok ;
108
125
expect ( node . style . color ) . to . equal ( 'white' ) ;
126
+
127
+ expect ( handlers . onAffix ) . to . been . calledOnce ;
128
+ expect ( handlers . onAffixed ) . to . been . calledOnce ;
109
129
done ( ) ;
110
130
} ) ;
111
131
} ) ;
@@ -117,6 +137,9 @@ describe('<Affix>', () => {
117
137
expect ( node . style . position ) . to . equal ( 'absolute' ) ;
118
138
expect ( node . style . top ) . to . equal ( '9900px' ) ;
119
139
expect ( node . style . color ) . to . equal ( 'blue' ) ;
140
+
141
+ expect ( handlers . onAffixBottom ) . to . been . calledOnce ;
142
+ expect ( handlers . onAffixedBottom ) . to . been . calledOnce ;
120
143
done ( ) ;
121
144
} ) ;
122
145
} ) ;
@@ -131,6 +154,7 @@ describe('<Affix>', () => {
131
154
< Affix
132
155
offsetTop = { 100 }
133
156
viewportOffsetTop = { 50 }
157
+ { ...handlers }
134
158
>
135
159
< Content />
136
160
</ Affix >
0 commit comments