mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-13 23:09:04 +08:00
Reviewed By: yungsters Differential Revision: D7974340 fbshipit-source-id: 5fe457a8a9be4bd360fc3af9acb5c1136b2be0d7
86 lines
2.4 KiB
JavaScript
86 lines
2.4 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var Image = require('Image');
|
|
var React = require('React');
|
|
var StyleSheet = require('StyleSheet');
|
|
var Switch = require('Switch');
|
|
var Text = require('Text');
|
|
var TextInput = require('TextInput');
|
|
var TouchableBounce = require('TouchableBounce');
|
|
var TouchableHighlight = require('TouchableHighlight');
|
|
var TouchableOpacity = require('TouchableOpacity');
|
|
var TouchableWithoutFeedback = require('TouchableWithoutFeedback');
|
|
var View = require('View');
|
|
|
|
/**
|
|
* All the views implemented on Android, each with the testID property set.
|
|
* We test that:
|
|
* - The app renders fine
|
|
* - The testID property is passed to the native views
|
|
*/
|
|
class TestIdTestApp extends React.Component {
|
|
render() {
|
|
return (
|
|
<View>
|
|
<Image
|
|
testID="Image"
|
|
source={{
|
|
uri:
|
|
'data:image/gif;base64,' +
|
|
'R0lGODdhMAAwAPAAAAAAAP///ywAAAAAMAAwAAAC8IyPqcvt3wCcDkiLc7C0qwyGHhSWpjQu5yqmCYsapy' +
|
|
'uvUUlvONmOZtfzgFzByTB10QgxOR0TqBQejhRNzOfkVJ+5YiUqrXF5Y5lKh/DeuNcP5yLWGsEbtLiOSpa/' +
|
|
'TPg7JpJHxyendzWTBfX0cxOnKPjgBzi4diinWGdkF8kjdfnycQZXZeYGejmJlZeGl9i2icVqaNVailT6F5' +
|
|
'iJ90m6mvuTS4OK05M0vDk0Q4XUtwvKOzrcd3iq9uisF81M1OIcR7lEewwcLp7tuNNkM3uNna3F2JQFo97V' +
|
|
'riy/Xl4/f1cf5VWzXyym7PHhhx4dbgYKAAA7',
|
|
}}
|
|
style={styles.base}
|
|
/>
|
|
|
|
<Text testID="Text">text</Text>
|
|
|
|
<TextInput testID="TextInput" value="Text input" />
|
|
|
|
<TouchableBounce testID="TouchableBounce">
|
|
<Text>TouchableBounce</Text>
|
|
</TouchableBounce>
|
|
|
|
<TouchableHighlight testID="TouchableHighlight">
|
|
<Text>TouchableHighlight</Text>
|
|
</TouchableHighlight>
|
|
|
|
<TouchableOpacity testID="TouchableOpacity">
|
|
<Text>TouchableOpacity</Text>
|
|
</TouchableOpacity>
|
|
|
|
<TouchableWithoutFeedback testID="TouchableWithoutFeedback">
|
|
<View>
|
|
<Text>TouchableWithoutFeedback</Text>
|
|
</View>
|
|
</TouchableWithoutFeedback>
|
|
|
|
<View testID="View" />
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
var styles = StyleSheet.create({
|
|
base: {
|
|
width: 150,
|
|
height: 50,
|
|
},
|
|
});
|
|
|
|
module.exports = {
|
|
TestIdTestApp: TestIdTestApp,
|
|
};
|