123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- 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,
- } from 'react-native';
-
- const fs = RNFetchBlob.fs
- const { Assert, Comparer, Info, prop } = RNTest
- const describe = RNTest.config({
- group : 'Android only functions',
- run : Platform.OS === 'android',
- expand : false,
- })
- const { TEST_SERVER_URL, FILENAME, DROPBOX_TOKEN, styles } = prop()
-
- let prefix = ((Platform.OS === 'android') ? 'file://' : '')
-
- // Android only tests
-
- let tmpFilePath = null
- const dirs = RNFetchBlob.fs.dirs
-
- describe('Download with notification', (report, done) => {
- let filePath = null
- let filename = `test-${Date.now()}.png`
-
- filePath = `${dirs.DownloadDir}/${filename}`
- RNFetchBlob.config({
- path : filePath,
- addAndroidDownloads : {
- title : 'RNFetchBlob test download success',
- description : `File description added by RNFetchblob`,
- mediaScannable : true,
- mime : "image/png",
- notification : true
- }
- })
- .fetch('GET', `${TEST_SERVER_URL}/public/github2.jpg`)
- .then((resp) => {
- tmpFilePath = resp.path()
- report(<Info key={`image from ${tmpFilePath}`}>
- <Image
- source={{ uri : prefix + tmpFilePath}}
- style={styles.image}/>
- </Info>)
- done()
- })
-
- })
-
- describe('MediaScanner tests ', (report, done) => {
- let filename = `scannable-test-${Date.now()}.png`
- let filePath = `${dirs.DownloadDir}/${filename}`
- RNFetchBlob.config({
- path : filePath,
- })
- .fetch('GET', `${TEST_SERVER_URL}/public/github2.jpg`)
- .then((resp) => {
- tmpFilePath = resp.path()
- return RNFetchBlob.fs.scanFile([
- { path:resp.path() }
- ])
- })
- .then(() => {
- report(<Assert key={`scan image success, there should be a new file in Picture app named "${filename}"`} expect={true} actual={true}/>)
- return RNFetchBlob
- .config({
- path : dirs.DCIMDir + '/beethoven-'+ Date.now() +'.mp3'
- })
- .fetch('GET', `${TEST_SERVER_URL}/public/beethoven.mp3`)
- })
- .then((resp) => {
- fs.scanFile([{
- path : resp.path()
- }])
- .then(() => {
- report(<Assert
- key={`scan mp3 file success, there exist a new file named "beethoven-${Date.now()}.mp3" in Music app`}
- expect={true}
- actual={true}/>)
- done()
- })
- })
-
- })
-
- describe('android download manager', (report, done) => {
- RNFetchBlob.config({
- addAndroidDownloads : {
- useDownloadManager : true,
- title : 'RNFetchBlob test download manager test',
- description : `File description added by RNFetchblob`,
- mediaScannable : true,
- notification : true
- }
- })
- .fetch('GET', `${TEST_SERVER_URL}/public/beethoven.mp3`).then((resp) => {
- report(
- <Assert key="download manager complete handler" expect={true} actual={true}/>
- )
- console.log('woo',resp)
- return resp.readStream('ascii')
- })
- .then((stream) => {
- stream.open();
- let len = 0
- stream.onData((chunk) => {
- len += chunk.length
- })
- stream.onEnd(() => {
- report(
- <Assert key="download manager URI is readable"
- expect={len}
- comparer={Comparer.greater}
- actual={0}/>
- )
- done()
- })
- })
- })
|