realm-js/tests/react-test-app/index.android.js

116 lines
3.1 KiB
JavaScript
Raw Normal View History

2016-02-18 19:59:34 +00:00
////////////////////////////////////////////////////////////////////////////
//
// Copyright 2016 Realm Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////
2015-11-24 06:14:50 +00:00
'use strict';
import {
AppRegistry,
StyleSheet,
Image,
Text,
View,
} from 'react-native';
2015-11-24 06:14:50 +00:00
import builder from 'xmlbuilder';
import React from 'react';
import RNFS from 'react-native-fs';
import { getTestNames, runTest } from './tests';
2015-12-10 22:12:45 +00:00
async function runTests() {
let testNames = getTestNames();
let rootXml = builder.create('testsuites');
2016-01-09 00:33:53 +00:00
for (let suiteName in testNames) {
let itemTestsuite = rootXml.ele('testsuite');
let nbrTests = 0;
let nbrFailures = 0;
console.log('Starting ' + suiteName);
2016-01-09 00:33:53 +00:00
for (let testName of testNames[suiteName]) {
nbrTests++;
let itemTest = itemTestsuite.ele('testcase');
itemTest.att('name', testName);
2016-01-09 00:33:53 +00:00
try {
2016-02-18 19:19:13 +00:00
await runTest(suiteName, testName);
2016-01-09 00:33:53 +00:00
}
catch (e) {
itemTest.ele('error', {'message': ''}, e.message);
nbrFailures++;
2016-01-09 00:33:53 +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
}
// export unit tests results
let xmlString = rootXml.end({
pretty: true,
indent: ' ',
newline: '\n',
});
// write the unit tests reports
try {
await RNFS.writeFile('/sdcard/tests.xml', xmlString, 'utf8');
2016-01-26 20:23:26 +00:00
console.log('__REALM_REACT_ANDROID_TESTS_COMPLETED__');
}
catch (e) {
console.error(e);
}
2016-01-09 00:33:53 +00:00
}
2016-02-11 01:03:16 +00:00
class ReactTests extends React.Component {
render() {
runTests();
return (
<View style={styles.container}>
<Text style={styles.button} onPress={runTests}>
Click To Run Tests Again.
</Text>
</View>
);
}
2016-02-11 01:03:16 +00:00
}
2015-11-24 06:14:50 +00:00
const styles = StyleSheet.create({
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);