2017-07-28 18:32:00 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-08-11 16:23:10 +00:00
|
|
|
*
|
2018-05-10 22:44:55 +00:00
|
|
|
* @format
|
2017-07-28 18:32:00 +00:00
|
|
|
*/
|
2018-05-10 22:44:55 +00:00
|
|
|
|
2017-07-28 18:32:00 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('react');
|
|
|
|
var ReactNative = require('react-native');
|
2018-05-10 22:44:55 +00:00
|
|
|
var {WebView} = ReactNative;
|
2017-07-28 18:32:00 +00:00
|
|
|
|
2018-05-10 22:44:55 +00:00
|
|
|
var {TestModule} = ReactNative.NativeModules;
|
2017-07-28 18:32:00 +00:00
|
|
|
|
|
|
|
class WebViewTest extends React.Component {
|
|
|
|
render() {
|
|
|
|
var firstMessageReceived = false;
|
|
|
|
var secondMessageReceived = false;
|
|
|
|
function processMessage(e) {
|
|
|
|
var message = e.nativeEvent.data;
|
2018-05-10 22:44:55 +00:00
|
|
|
if (message === 'First') {
|
|
|
|
firstMessageReceived = true;
|
|
|
|
}
|
|
|
|
if (message === 'Second') {
|
|
|
|
secondMessageReceived = true;
|
|
|
|
}
|
2017-07-28 18:32:00 +00:00
|
|
|
|
|
|
|
// got both messages
|
2018-05-10 22:44:55 +00:00
|
|
|
if (firstMessageReceived && secondMessageReceived) {
|
|
|
|
TestModule.markTestPassed(true);
|
|
|
|
}
|
2017-07-28 18:32:00 +00:00
|
|
|
// wait for next message
|
2018-05-10 22:44:55 +00:00
|
|
|
else if (firstMessageReceived && !secondMessageReceived) {
|
|
|
|
return;
|
|
|
|
}
|
2017-07-28 18:32:00 +00:00
|
|
|
// first message got lost
|
2018-05-10 22:44:55 +00:00
|
|
|
else if (!firstMessageReceived && secondMessageReceived) {
|
|
|
|
throw new Error('First message got lost');
|
|
|
|
}
|
2017-07-28 18:32:00 +00:00
|
|
|
}
|
2018-05-10 22:44:55 +00:00
|
|
|
var html =
|
|
|
|
'Hello world' +
|
|
|
|
'<script>' +
|
|
|
|
"window.setTimeout(function(){window.postMessage('First'); window.postMessage('Second')}, 0)" +
|
|
|
|
'</script>';
|
2017-07-28 18:32:00 +00:00
|
|
|
|
|
|
|
// fail if messages didn't get through;
|
2018-05-10 22:44:55 +00:00
|
|
|
window.setTimeout(function() {
|
|
|
|
throw new Error(
|
|
|
|
firstMessageReceived
|
|
|
|
? 'Both messages got lost'
|
|
|
|
: 'Second message got lost',
|
|
|
|
);
|
|
|
|
}, 10000);
|
2017-07-28 18:32:00 +00:00
|
|
|
|
|
|
|
var source = {
|
|
|
|
html: html,
|
2018-05-10 22:44:55 +00:00
|
|
|
};
|
2017-07-28 18:32:00 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<WebView
|
|
|
|
source={source}
|
2018-05-10 22:44:55 +00:00
|
|
|
onMessage={processMessage}
|
2018-05-04 20:47:42 +00:00
|
|
|
originWhitelist={['about:blank']}
|
2018-05-10 22:44:55 +00:00
|
|
|
/>
|
2017-07-28 18:32:00 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WebViewTest.displayName = 'WebViewTest';
|
|
|
|
|
|
|
|
module.exports = WebViewTest;
|