2015-10-19 17:24:01 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2015-10-19 17:24:01 +00:00
|
|
|
*
|
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.
|
2015-11-18 16:25:30 +00:00
|
|
|
*
|
2018-05-10 22:44:55 +00:00
|
|
|
* @format
|
2018-08-09 15:32:04 +00:00
|
|
|
* @flow strict-local
|
2015-10-19 17:24:01 +00:00
|
|
|
*/
|
2018-05-10 22:44:55 +00:00
|
|
|
|
2015-10-19 17:24:01 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-05-14 07:09:36 +00:00
|
|
|
const React = require('react');
|
|
|
|
const ReactNative = require('react-native');
|
|
|
|
const {Image, View} = ReactNative;
|
|
|
|
const {TestModule} = ReactNative.NativeModules;
|
2015-10-19 17:24:01 +00:00
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
class ImageSnapshotTest extends React.Component<{}> {
|
2015-10-19 17:24:01 +00:00
|
|
|
componentDidMount() {
|
|
|
|
if (!TestModule.verifySnapshot) {
|
|
|
|
throw new Error('TestModule.verifySnapshot not defined.');
|
|
|
|
}
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
2015-10-19 17:24:01 +00:00
|
|
|
|
2018-05-10 22:44:55 +00:00
|
|
|
done = (success: boolean) => {
|
2015-10-19 17:24:01 +00:00
|
|
|
TestModule.markTestPassed(success);
|
2016-07-26 08:00:02 +00:00
|
|
|
};
|
2015-10-19 17:24:01 +00:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Image
|
2016-11-23 05:01:34 +00:00
|
|
|
source={require('./blue_square.png')}
|
|
|
|
defaultSource={require('./red_square.png')}
|
2018-05-10 22:44:55 +00:00
|
|
|
onLoad={() => TestModule.verifySnapshot(this.done)}
|
|
|
|
/>
|
2015-10-19 17:24:01 +00:00
|
|
|
);
|
|
|
|
}
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
2015-10-19 17:24:01 +00:00
|
|
|
|
|
|
|
ImageSnapshotTest.displayName = 'ImageSnapshotTest';
|
|
|
|
|
|
|
|
module.exports = ImageSnapshotTest;
|