This repository was archived by the owner on Oct 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathnative_library_spec.rb
387 lines (367 loc) · 13.3 KB
/
native_library_spec.rb
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
require 'spec_helper'
# This definitely is work in progress
describe "React::NativeLibrary", js: true do
before :each do
on_client do
module NativeLibraryTestModule
class Component < React::Component::Base
param :time_stamp
backtrace :none
render { NativeComponent(name: "There - #{params.time_stamp}") }
end
class NestedComponent < React::Component::Base
param :time_stamp
backtrace :none
render { NativeLibrary::NativeNestedLibrary::NativeComponent(name: "There - #{params.time_stamp}") }
end
end
end
end
describe "functional stateless component (supported in reactjs v14+ only)" do
it "is detected as native React.js component by `native_react_component?`" do
expect_evaluate_ruby do
React::API.native_react_component?(JS.call(:eval, "(function () { return function C () { return null; }; })();"))
end.to be_truthy
end
it "imports a React.js functional stateless component" do
mount 'Foo', name: "There" do
JS.call(:eval, 'window.NativeLibrary = { FunctionalComponent: function HelloMessage(props){
return React.createElement("div", null, "Hello ", props.name); }}')
class Foo < React::Component::Base
imports "NativeLibrary.FunctionalComponent"
end
end
expect(page.body[-60..-19]).to include('<div>Hello There</div>')
end
end
it "can use native_react_component? to detect a native React.js component" do
evaluate_ruby do
"this makes sure React is loaded for this test, before js is run"
end
page.execute_script('window.NativeComponent = class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}')
expect_evaluate_ruby do
React::API.native_react_component?(JS.call(:eval, '(function(){ return window.NativeComponent; })();'))
end.to be_truthy
expect_evaluate_ruby do
React::API.native_react_component?(JS.call(:eval, '(function(){ return {render: function render() {}}; })();'))
end.to be_falsy
expect_evaluate_ruby do
React::API.native_react_component?(JS.call(:eval, '(function(){ return window.DoesntExist; })();'))
end.to be_falsy
expect_evaluate_ruby do
React::API.native_react_component?()
end.to be_falsy
end
it "will import a React.js library into the Ruby name space" do
mount 'Foo::NativeComponent', name: "There" do
JS.call(:eval,
<<-JSCODE
window.NativeLibrary = {
NativeComponent: class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}}
JSCODE
)
class Foo < React::NativeLibrary
imports "NativeLibrary"
end
end
expect(page.body[-60..-19]).to include('<div>Hello There</div>')
end
it "will import a nested React.js library into the Ruby name space" do
mount 'Foo::NestedLibrary::NativeComponent', name: "There" do
JS.call(:eval,
<<-JSCODE
window.NativeLibrary = {
NestedLibrary: {
NativeComponent: class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}}}
JSCODE
)
class Foo < React::NativeLibrary
imports "NativeLibrary"
end
end
expect(page.body[-60..-19]).to include('<div>Hello There</div>')
end
it "will rename an imported a React.js component" do
mount 'Foo::Bar', name: "There" do
JS.call(:eval,
<<-JSCODE
window.NativeLibrary = {
NativeComponent: class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}}
JSCODE
)
class Foo < React::NativeLibrary
imports "NativeLibrary"
rename "NativeComponent" => "Bar"
end
end
expect(page.body[-60..-19]).to include('<div>Hello There</div>')
end
it "will give a reasonable error when failing to import a renamed component" do
client_option raise_on_js_errors: :off
mount 'Foo' do
JS.call(:eval,
<<-JSCODE
window.NativeLibrary = {
NativeComponent: class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}}
JSCODE
)
class Foo < React::NativeLibrary
imports "NativeLibrary"
rename "MispelledComponent" => "Bar"
end
end
expect(page.driver.browser.manage.logs.get(:browser).map { |m| m.message.gsub(/\\n/, "\n") }.to_a.join("\n"))
.to match(/NativeLibrary.MispelledComponent is undefined/)
# TODO was testing for cannot import, but that message gets trunkated
end
it "will import a single React.js component into the ruby name space" do
mount 'Foo', name: "There" do
JS.call(:eval,
<<-JSCODE
window.NativeComponent = class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}
JSCODE
)
class Foo < React::Component::Base
imports "NativeComponent"
end
end
expect(page.body[-60..-19]).to include('<div>Hello There</div>')
end
it "will import a name scoped React.js component into the ruby name space" do
mount 'Foo', name: "There" do
JS.call(:eval,
<<-JSCODE
window.NativeLibrary = {
NativeComponent: class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}}
JSCODE
)
class Foo < React::Component::Base
imports "NativeLibrary.NativeComponent"
end
end
expect(page.body[-60..-19]).to include('<div>Hello There</div>')
end
it "will give a meaningful error if the React.js component is invalid" do
client_option raise_on_js_errors: :off
evaluate_ruby do
JS.call(:eval, "window.NativeObject = {}")
class Foo < React::Component::Base; end
end
expect_evaluate_ruby do
begin
Foo.class_eval do
imports "NativeObject"
end
rescue Exception => e
e.message
end
end.to match(/Foo cannot import 'NativeObject': does not appear to be a native react component./)
expect_evaluate_ruby do
begin
Foo.class_eval do
imports "window.Baz"
end
rescue Exception => e
e.message
end
end.to match(/Foo cannot import \'window\.Baz\'\: (?!does not appear to be a native react component)./)
end
it "allows passing native object as props" do
mount 'Wrapper' do
JS.call(:eval,
<<-JSCODE
window.NativeComponent = class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello " + this.props.user.name); }
}
JSCODE
)
class Foo < React::Component::Base
imports "NativeComponent"
end
class Wrapper < React::Component::Base
def render
Foo(user: JS.call(:eval, "(function () { return {name: 'David'}; })();"))
end
end
end
expect(page.body[-60..-19]).to include('<div>Hello David</div>')
end
context "automatic importing" do
it "will automatically import a React.js component when referenced in another component" do
evaluate_ruby do
JS.call(:eval,
<<-JSCODE
window.NativeComponent = class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}
JSCODE
)
React::Test::Utils.render_component_into_document(NativeLibraryTestModule::Component, time_stamp: Time.now.strftime('%Y%m%dT%H%M%S%z'))
end
expect(page.body[-100..-19]).to match(/<div>Hello There.*<\/div>/)
end
it "will automatically import a React.js component when referenced in another component in a different way" do
mount 'Foo' do
class Foo < React::Component::Base
render { NativeComponent(name: "There") }
end
JS.call(:eval,
<<-JSCODE
window.NativeComponent = class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}
JSCODE
)
end
expect(page.body[-50..-19]).to match('<div>Hello There</div>')
end
it "will automatically import a React.js component when referenced as a constant" do
mount 'NativeComponent', name: "There" do
JS.call(:eval,
<<-JSCODE
window.NativeComponent = class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}
JSCODE
)
end
expect(page.body[-50..-19]).to match('<div>Hello There</div>')
end
it "will automatically import a native library containing a React.js component" do
evaluate_ruby do
JS.call(:eval,
<<-JSCODE
window.NativeLibrary = {
NativeNestedLibrary: {
NativeComponent: class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}}}
JSCODE
)
React::Test::Utils.render_component_into_document(NativeLibraryTestModule::NestedComponent, time_stamp: Time.now.strftime('%Y%m%dT%H%M%S%z'))
end
expect(page.body[-100..-19]).to match(/<div>Hello There.*<\/div>/)
end
it "the library and components can begin with lower case letters" do
mount 'NativeLibrary::NativeComponent', name: "There" do
JS.call(:eval,
<<-JSCODE
window.nativeLibrary = {
nativeComponent: class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}}
JSCODE
)
end
expect(page.body[-50..-19]).to match('<div>Hello There</div>')
end
it "will produce a sensible error if the component is not in the library" do
client_option raise_on_js_errors: :off
expect_evaluate_ruby do
JS.call(:eval,
<<-JSCODE
window.NativeLibrary = {
NativeNestedLibrary: { }
}
JSCODE
)
begin
React::Test::Utils.render_component_into_document(NativeLibraryTestModule::NestedComponent, time_stamp: Time.now.strftime('%Y%m%dT%H%M%S%z'))
rescue Exception => e
e.message
end
end.to match(/could not import a react component named: NativeLibrary.NativeNestedLibrary.NativeComponent/)
end
it "a NativeLibrary::NestedLibrary::NativeComponent() call will not resolve to a toplevel module NativeComponent (was a bug)" do
evaluate_ruby do
module NativeComponent; end
JS.call(:eval,
<<-JSCODE
window.NativeLibrary = {
NativeNestedLibrary: {
NativeComponent: class extends React.Component {
constructor(props) {
super(props);
this.displayName = "HelloMessage";
}
render() { return React.createElement("div", null, "Hello ", this.props.name); }
}}}
JSCODE
)
class Foo < React::NativeLibrary
def render
NativeLibrary::NativeNestedLibrary::NativeComponent(name: 'Worksmaker')
end
end
React::Test::Utils.render_component_into_document(Foo)
end
expect(page.body[-80..-19]).to match(/<div>Hello Worksmaker<\/div>/)
end
end
end