import RNTest from './react-native-testkit/' import React from 'react' import RNFetchBlob from 'react-native-fetch-blob' import { StyleSheet, Text, View, ScrollView, Platform, Dimensions, Image, TouchableOpacity, } from 'react-native'; window.XMLHttpRequest = RNFetchBlob.polyfill.XMLHttpRequest window.Blob = RNFetchBlob.polyfill.Blob const fs = RNFetchBlob.fs const { Assert, Comparer, Info, prop } = RNTest const describe = RNTest.config({ group : '0.9.5', run : true, expand : false, timeout : 20000, }) const { TEST_SERVER_URL, TEST_SERVER_URL_SSL, FILENAME, DROPBOX_TOKEN, styles } = prop() const dirs = RNFetchBlob.fs.dirs let prefix = ((Platform.OS === 'android') ? 'file://' : '') // describe('issue #122 force response data format', (report, done) => { // // RNFetchBlob.fetch('GET', `${TEST_SERVER_URL}/public/json-dummy.json`, { // 'RNFB-Response' : 'base64' // }) // .then((res) => { // let r = RNFetchBlob.base64.decode(res.data) // report( // , // ) // return RNFetchBlob.fetch('GET', `${TEST_SERVER_URL}/public/json-dummy.json`) // }) // .then((res) => { // report( // ) // done() // }) // .catch(() => { // report( // ) // done() // }) // // }) // describe('#129 memory leaking when enable uploadProgress', (report, done) => { // // let file = null // let count = 0 // // RNFetchBlob.config({ fileCache : true }) // .fetch('GET', `${TEST_SERVER_URL}/public/6mb-dummy`) // .then((res) => { // file = res.path() // setTimeout(() => { // for(let i=0;i<20;i++){ // RNFetchBlob.fetch('POST', `${TEST_SERVER_URL}/upload`, {}, RNFetchBlob.wrap(file)) // .uploadProgress(() => {}) // .then(() => { // if(count > 20) { // fs.unlink(file) // report() // done() // } // }) // } // }, 3000) // }) // // }) describe('#131 status code != 200 should not throw an error', (report, done) => { let count = 0 let codes = [404, 500, 501, 403] codes.forEach((code) => { RNFetchBlob.fetch('GET', `${TEST_SERVER_URL}/xhr-code/${code}`, { 'Cache-Control' : 'no-store' }) .then(function(res) { report() count ++ if(count >= 4) done() }.bind(code)) .catch(function(err) { report() count++ }.bind(code)) }) })