2016-02-15 22:37:19 +00:00
|
|
|
/* Copyright 2016 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
2015-11-24 06:14:50 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
2016-02-15 22:37:19 +00:00
|
|
|
|
|
|
|
const React = require('react-native');
|
|
|
|
const Realm = require('realm');
|
|
|
|
const RealmTests = require('realm-tests');
|
|
|
|
const builder = require('xmlbuilder');
|
|
|
|
const RNFS = require('react-native-fs');
|
|
|
|
|
|
|
|
const {
|
|
|
|
AppRegistry,
|
|
|
|
StyleSheet,
|
|
|
|
Image,
|
|
|
|
Text,
|
|
|
|
View,
|
|
|
|
TouchableNativeFeedback,
|
2015-11-24 06:14:50 +00:00
|
|
|
} = React;
|
|
|
|
|
2016-02-15 22:37:19 +00:00
|
|
|
RealmTests.registerTests({
|
|
|
|
ListViewTest: require('./tests/listview-test'),
|
|
|
|
});
|
2015-12-10 22:12:45 +00:00
|
|
|
|
2016-01-09 00:33:53 +00:00
|
|
|
function runTests() {
|
2016-02-15 22:37:19 +00:00
|
|
|
let rootXml = builder.create('testsuites');
|
2016-01-09 00:33:53 +00:00
|
|
|
let testNames = RealmTests.getTestNames();
|
|
|
|
|
|
|
|
for (let suiteName in testNames) {
|
2016-02-15 22:37:19 +00:00
|
|
|
let itemTestsuite = rootXml.ele('testsuite');
|
2016-01-22 18:05:34 +00:00
|
|
|
let nbrTests = 0;
|
|
|
|
let nbrFailures = 0;
|
|
|
|
|
|
|
|
console.log('Starting suite ' + suiteName);
|
2016-01-09 00:33:53 +00:00
|
|
|
|
2016-02-15 22:37:19 +00:00
|
|
|
testNames[suiteName].forEach((testName) => {
|
2016-01-22 18:05:34 +00:00
|
|
|
nbrTests++;
|
|
|
|
|
2016-02-15 22:37:19 +00:00
|
|
|
let itemTest = itemTestsuite.ele('testcase');
|
2016-01-22 18:05:34 +00:00
|
|
|
itemTest.att('name', testName);
|
|
|
|
|
2016-01-09 00:33:53 +00:00
|
|
|
console.log('Starting ' + testName);
|
2016-02-15 22:37:19 +00:00
|
|
|
RealmTests.runTest(suiteName, 'beforeEach');
|
2016-01-09 00:33:53 +00:00
|
|
|
|
|
|
|
try {
|
2016-02-15 22:37:19 +00:00
|
|
|
RealmTests.runTest(suiteName, testName);
|
2016-01-09 00:33:53 +00:00
|
|
|
console.log('+ ' + testName);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
console.log('- ' + testName);
|
|
|
|
console.warn(e.message);
|
2016-01-22 18:05:34 +00:00
|
|
|
|
|
|
|
itemTest.ele('error', {'message': ''}, e.message);
|
|
|
|
nbrFailures++;
|
2016-01-09 00:33:53 +00:00
|
|
|
}
|
|
|
|
finally {
|
2016-02-15 22:37:19 +00:00
|
|
|
RealmTests.runTest(suiteName, 'afterEach');
|
2016-01-09 00:33:53 +00:00
|
|
|
}
|
2016-02-15 22:37:19 +00:00
|
|
|
});
|
2016-01-22 18:05:34 +00:00
|
|
|
|
|
|
|
// update Junit XML report
|
|
|
|
itemTestsuite.att('name', suiteName);
|
|
|
|
itemTestsuite.att('tests', nbrTests);
|
|
|
|
itemTestsuite.att('failures', nbrFailures);
|
|
|
|
itemTestsuite.att('timestamp', "2016-01-22T14:40:44.874443-05:00");//TODO use real timestamp
|
|
|
|
|
2016-01-09 00:33:53 +00:00
|
|
|
}
|
2016-01-22 18:05:34 +00:00
|
|
|
// export unit tests results
|
|
|
|
var xmlString = rootXml.end({ pretty: true, indent: ' ', newline: '\n' });
|
2016-01-26 20:23:26 +00:00
|
|
|
var path = '/sdcard/tests.xml';
|
2016-01-22 18:05:34 +00:00
|
|
|
|
|
|
|
// write the unit tests reports
|
|
|
|
RNFS.writeFile(path, xmlString , 'utf8')
|
|
|
|
.then((success) => {
|
2016-01-26 20:23:26 +00:00
|
|
|
console.log('__REALM_REACT_ANDROID_TESTS_COMPLETED__');
|
2016-01-22 18:05:34 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.log(err.message);
|
|
|
|
});
|
|
|
|
|
2016-01-09 00:33:53 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 01:03:16 +00:00
|
|
|
class ReactTests extends React.Component {
|
|
|
|
render() {
|
2015-12-10 22:12:45 +00:00
|
|
|
return (
|
2016-01-22 18:05:34 +00:00
|
|
|
<View style={styles.container}>
|
|
|
|
<Text style={styles.button} onPress={runTests}>
|
|
|
|
Running Tests...
|
|
|
|
</Text>
|
|
|
|
|
|
|
|
<Image
|
|
|
|
style={styles.icon}
|
|
|
|
source={require('image!ic_launcher')}
|
|
|
|
onLoad={() => runTests()}
|
|
|
|
/>
|
|
|
|
</View>
|
2015-12-10 22:12:45 +00:00
|
|
|
);
|
|
|
|
}
|
2016-02-11 01:03:16 +00:00
|
|
|
}
|
2015-11-24 06:14:50 +00:00
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
2015-12-10 22:12:45 +00:00
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
|
|
|
backgroundColor: '#F5FCFF',
|
|
|
|
},
|
|
|
|
welcome: {
|
|
|
|
fontSize: 20,
|
|
|
|
textAlign: 'center',
|
|
|
|
margin: 10,
|
|
|
|
},
|
|
|
|
instructions: {
|
|
|
|
textAlign: 'center',
|
|
|
|
color: '#333333',
|
|
|
|
marginBottom: 5,
|
|
|
|
},
|
2015-11-24 06:14:50 +00:00
|
|
|
});
|
|
|
|
|
2016-02-11 01:03:16 +00:00
|
|
|
AppRegistry.registerComponent('ReactTests', () => ReactTests);
|