2015-10-28 17:40:07 +00:00
|
|
|
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
2015-10-02 21:57:54 +00:00
|
|
|
*/
|
2015-10-28 17:40:07 +00:00
|
|
|
|
2015-10-02 21:57:54 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('react-native');
|
|
|
|
var Realm = require('realm');
|
2015-10-06 07:57:35 +00:00
|
|
|
var RealmTests = require('realm-tests');
|
2015-10-02 21:57:54 +00:00
|
|
|
|
|
|
|
var {
|
2015-10-15 18:34:24 +00:00
|
|
|
AppRegistry,
|
|
|
|
StyleSheet,
|
|
|
|
Text,
|
|
|
|
TouchableHighlight,
|
|
|
|
View,
|
2015-10-02 21:57:54 +00:00
|
|
|
} = React;
|
|
|
|
|
2015-10-14 21:58:42 +00:00
|
|
|
function runTests() {
|
2015-10-15 18:34:24 +00:00
|
|
|
let testNames = RealmTests.getTestNames();
|
2015-10-14 21:58:42 +00:00
|
|
|
|
2015-10-15 18:34:24 +00:00
|
|
|
for (let suiteName in testNames) {
|
2015-10-14 21:58:42 +00:00
|
|
|
let testSuite = RealmTests[suiteName];
|
|
|
|
|
2015-10-15 18:34:24 +00:00
|
|
|
console.log('Starting ' + suiteName);
|
2015-10-14 21:58:42 +00:00
|
|
|
|
2015-10-15 18:34:24 +00:00
|
|
|
for (let testName of testNames[suiteName]) {
|
2015-10-14 21:58:42 +00:00
|
|
|
if (testSuite.beforeEach) {
|
|
|
|
testSuite.beforeEach();
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
testSuite[testName]();
|
2015-10-14 22:15:44 +00:00
|
|
|
console.log('+ ' + testName);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
console.log('- ' + testName);
|
2015-11-25 18:48:51 +00:00
|
|
|
console.warn(e.message);
|
2015-10-14 21:58:42 +00:00
|
|
|
}
|
|
|
|
finally {
|
|
|
|
if (testSuite.afterEach) {
|
|
|
|
testSuite.afterEach();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-02 21:57:54 +00:00
|
|
|
var ReactTests = React.createClass({
|
2015-10-14 21:58:42 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View style={styles.container}>
|
2015-10-15 18:34:24 +00:00
|
|
|
<Text style={styles.button} onPress={runTests}>
|
|
|
|
Tap to Run Tests
|
2015-10-14 21:58:42 +00:00
|
|
|
</Text>
|
|
|
|
<Text style={styles.instructions}>
|
|
|
|
Press Cmd+R to reload,{'\n'}
|
|
|
|
Cmd+D or shake for dev menu
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
2015-10-02 21:57:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
2015-10-15 18:34:24 +00:00
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
|
|
|
backgroundColor: '#F5FCFF',
|
|
|
|
},
|
|
|
|
button: {
|
|
|
|
borderColor: '#cccccc',
|
|
|
|
borderRadius: 4,
|
|
|
|
borderWidth: 1,
|
|
|
|
fontSize: 20,
|
|
|
|
textAlign: 'center',
|
|
|
|
margin: 20,
|
|
|
|
padding: 10,
|
|
|
|
},
|
|
|
|
instructions: {
|
|
|
|
textAlign: 'center',
|
|
|
|
color: '#333333',
|
|
|
|
marginBottom: 5,
|
|
|
|
},
|
2015-10-02 21:57:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
AppRegistry.registerComponent('ReactTests', () => ReactTests);
|