import RNTest from './react-native-testkit/' import React from 'react' import _ from 'lodash' import RNFetchBlob from 'react-native-fetch-blob' import { StyleSheet, Text, View, ScrollView, Linking, Platform, Dimensions, BackAndroid, AsyncStorage, Image, } from 'react-native'; window.XMLHttpRequest = RNFetchBlob.polyfill.XMLHttpRequest window.Blob = RNFetchBlob.polyfill.Blob const JSONStream = RNFetchBlob.JSONStream const fs = RNFetchBlob.fs const { Assert, Comparer, Info, prop } = RNTest const describe = RNTest.config({ group : '0.10.2', run : true, expand : true, 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://' : '') let begin = Date.now() describe('#227 IOS file modification date correctness', (report, done) => { let path = dirs.DocumentDir + '/issue-223-' + Date.now() fs.createFile(path, 'datafornow') .then(() => fs.stat(path)) .then((stat) => { let date = stat.lastModified; console.log(date, stat); let correct = date/Date.now() > 0.95 || date/Date.now() < 1.05; report(); done() }) }) describe('#230 add and option for setting if the request follow redirect or not', (report, done) => { RNFetchBlob .config({ followRedirect : false }) .fetch('GET',`${TEST_SERVER_URL}/redirect`) .then((res) => { console.log(res.data) report(); done() }) }) // describe('#240 openDocument does not support file URI', (report, done) => { // RNFetchBlob // .config({ path : dirs.DocumentDir + '/app copy.png' }) // .fetch('GET', `${TEST_SERVER_URL}/public/github.png`) // .then((res) => { // RNFetchBlob.ios.openDocument(res.path()) // .then(() => { // done(); // }) // .catch((err) => { // console.log(err) // }) // }) // // }) describe('#241 null header silent failed issue', (report, done) => { RNFetchBlob.fetch('GET', `${TEST_SERVER_URL}/public/github.png`, { foo : null }) .then(() => { report() done() }) }) describe('#247 binary data UTF8 encoding causes app crash', (report, done) => { RNFetchBlob .config({fileCache : true}) .fetch('GET', `${TEST_SERVER_URL}/public/github.png`) .then((res) => fs.readStream(res.path(), 'utf8')) .then((stream) => { stream.open() stream.onError((err) => { report() done() }) }) })