2015-11-19 21:32:37 +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.
|
2018-05-10 22:44:55 +00:00
|
|
|
*
|
|
|
|
* @format
|
2015-11-19 21:32:37 +00:00
|
|
|
*/
|
2018-05-10 22:44:55 +00:00
|
|
|
|
2015-11-19 21:32:37 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-05-14 07:09:36 +00:00
|
|
|
const React = require('react');
|
|
|
|
const createReactClass = require('create-react-class');
|
|
|
|
const ReactNative = require('react-native');
|
|
|
|
const RCTNativeAppEventEmitter = require('RCTNativeAppEventEmitter');
|
|
|
|
const Subscribable = require('Subscribable');
|
|
|
|
const {View} = ReactNative;
|
2015-11-19 21:32:37 +00:00
|
|
|
|
2018-05-14 07:09:36 +00:00
|
|
|
const {TestModule} = ReactNative.NativeModules;
|
2015-11-19 21:32:37 +00:00
|
|
|
|
2018-05-14 07:09:36 +00:00
|
|
|
const reactViewWidth = 111;
|
|
|
|
const reactViewHeight = 222;
|
2015-11-19 21:32:37 +00:00
|
|
|
|
2018-05-14 07:09:36 +00:00
|
|
|
let finalState = false;
|
2015-11-19 21:32:37 +00:00
|
|
|
|
2018-05-14 07:09:36 +00:00
|
|
|
const SizeFlexibilityUpdateTest = createReactClass({
|
2017-07-07 21:24:25 +00:00
|
|
|
displayName: 'SizeFlexibilityUpdateTest',
|
2015-11-19 21:32:37 +00:00
|
|
|
mixins: [Subscribable.Mixin],
|
|
|
|
|
2018-02-08 18:26:45 +00:00
|
|
|
UNSAFE_componentWillMount: function() {
|
2015-11-19 21:32:37 +00:00
|
|
|
this.addListenerOn(
|
|
|
|
RCTNativeAppEventEmitter,
|
|
|
|
'rootViewDidChangeIntrinsicSize',
|
2018-05-10 22:44:55 +00:00
|
|
|
this.rootViewDidChangeIntrinsicSize,
|
2015-11-19 21:32:37 +00:00
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
markPassed: function() {
|
|
|
|
TestModule.markTestPassed(true);
|
|
|
|
finalState = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
rootViewDidChangeIntrinsicSize: function(intrinsicSize) {
|
|
|
|
if (finalState) {
|
|
|
|
// If a test reaches its final state, it is not expected to do anything more
|
|
|
|
TestModule.markTestPassed(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.props.both) {
|
2018-05-10 22:44:55 +00:00
|
|
|
if (
|
|
|
|
intrinsicSize.width === reactViewWidth &&
|
|
|
|
intrinsicSize.height === reactViewHeight
|
|
|
|
) {
|
2015-11-19 21:32:37 +00:00
|
|
|
this.markPassed();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.props.height) {
|
2018-05-10 22:44:55 +00:00
|
|
|
if (
|
|
|
|
intrinsicSize.width !== reactViewWidth &&
|
|
|
|
intrinsicSize.height === reactViewHeight
|
|
|
|
) {
|
2015-11-19 21:32:37 +00:00
|
|
|
this.markPassed();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.props.width) {
|
2018-05-10 22:44:55 +00:00
|
|
|
if (
|
|
|
|
intrinsicSize.width === reactViewWidth &&
|
|
|
|
intrinsicSize.height !== reactViewHeight
|
|
|
|
) {
|
2015-11-19 21:32:37 +00:00
|
|
|
this.markPassed();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.props.none) {
|
2018-05-10 22:44:55 +00:00
|
|
|
if (
|
|
|
|
intrinsicSize.width !== reactViewWidth &&
|
|
|
|
intrinsicSize.height !== reactViewHeight
|
|
|
|
) {
|
2015-11-19 21:32:37 +00:00
|
|
|
this.markPassed();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render() {
|
2018-05-10 22:44:55 +00:00
|
|
|
return <View style={{height: reactViewHeight, width: reactViewWidth}} />;
|
|
|
|
},
|
2015-11-19 21:32:37 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
SizeFlexibilityUpdateTest.displayName = 'SizeFlexibilityUpdateTest';
|
|
|
|
|
|
|
|
module.exports = SizeFlexibilityUpdateTest;
|