No Description

test-0.10.0.js 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. import RNTest from './react-native-testkit/'
  2. import React from 'react'
  3. import RNFetchBlob from 'react-native-fetch-blob'
  4. import {
  5. StyleSheet,
  6. Text,
  7. View,
  8. ScrollView,
  9. Linking,
  10. Platform,
  11. Dimensions,
  12. BackAndroid,
  13. AsyncStorage,
  14. Image,
  15. } from 'react-native';
  16. const JSONStream = RNFetchBlob.JSONStream
  17. const fs = RNFetchBlob.fs
  18. const { Assert, Comparer, Info, prop } = RNTest
  19. const describe = RNTest.config({
  20. group : '0.10.0',
  21. run : true,
  22. expand : true,
  23. timeout : 20000,
  24. })
  25. const { TEST_SERVER_URL, TEST_SERVER_URL_SSL, FILENAME, DROPBOX_TOKEN, styles } = prop()
  26. const dirs = RNFetchBlob.fs.dirs
  27. let prefix = ((Platform.OS === 'android') ? 'file://' : '')
  28. let begin = Date.now()
  29. // describe('json stream via HTTP', (report, done) => {
  30. //
  31. // let count = 0
  32. // JSONStream(`${TEST_SERVER_URL}/public/json-dummy.json`).node('name', (name) => {
  33. // count++
  34. // if(Date.now() - begin < 100)
  35. // return
  36. // begin = Date.now()
  37. // report(<Info key="report" uid="100">
  38. // <Text>{count} records</Text>
  39. // </Info>)
  40. // done()
  41. // })
  42. //
  43. // })
  44. //
  45. // describe('json stream via fs', (report, done) => {
  46. //
  47. // let fetch2 = new RNFetchBlob.polyfill.Fetch({
  48. // auto : true
  49. // })
  50. // let res = null
  51. // let count = 0
  52. //
  53. // RNFetchBlob.config({
  54. // fileCache : true
  55. // })
  56. // .fetch('GET',`${TEST_SERVER_URL}/public/json-dummy.json`)
  57. // .then((resp) => {
  58. // res = resp
  59. // JSONStream({
  60. // url : RNFetchBlob.wrap(res.path()),
  61. // headers : { bufferSize : 10240 }
  62. // }).node('name', (name) => {
  63. // count++
  64. // if(Date.now() - begin < 100)
  65. // return
  66. // begin = Date.now()
  67. // report(<Info key="report" uid="100">
  68. // <Text>{count} records</Text>
  69. // </Info>)
  70. // done()
  71. // })
  72. // })
  73. // })
  74. //
  75. // describe('issue #102', (report, done) => {
  76. // let tmp = null
  77. // RNFetchBlob.config({ fileCache: true, appendExt : 'png' })
  78. // .fetch('GET', `${TEST_SERVER_URL}/public/github.png`)
  79. // .then((res) => {
  80. // tmp = res
  81. // RNFetchBlob.ios.previewDocument(res.path())
  82. // return RNFetchBlob.fetch('POST', `${TEST_SERVER_URL}/upload-form`, {},
  83. // [{ name : String(1), data : RNFetchBlob.wrap(res.path()), filename: '#102-test-image.png' }])
  84. // })
  85. // .then((res) => tmp.flush())
  86. // .then(() => {
  87. // done()
  88. // })
  89. //
  90. // })
  91. // describe('#154 Allow passing unparsed response body to error handler ', (report, done) =>{
  92. //
  93. // RNFetchBlob.fetch('get', `${TEST_SERVER_URL}/err-body`)
  94. // .then((res) => {
  95. // console.log(res)
  96. // })
  97. // .catch((err) => {
  98. // console.log(err)
  99. // })
  100. //
  101. // })
  102. //
  103. // describe('cookie test', (report, done) => {
  104. //
  105. // RNFetchBlob.fetch('GET', `${TEST_SERVER_URL}/cookie`)
  106. // .then((res) => {
  107. // return RNFetchBlotesb.fetch('GET', `${TEST_SERVER_URL}/xhr-header`)
  108. // })
  109. // .then((res) => {
  110. // console.log(res)
  111. // RNFetchBlob.net.getCookies(`${TEST_SERVER_URL}`)
  112. // .then((cookies) => {
  113. // console.log(cookies)
  114. // })
  115. // })
  116. //
  117. // })
  118. // describe('SSL test #159', (report, done) => {
  119. // RNFetchBlob.config({
  120. // trusty : true
  121. // }).fetch('GET', `${TEST_SERVER_URL_SSL}/public/github.png`, {
  122. // 'Cache-Control' : 'no-store'
  123. // })
  124. // .then(res => {
  125. // report(<Assert key="trusty request should pass" expect={true} actual={true}/>)
  126. // return RNFetchBlob.fetch('GET',`${TEST_SERVER_URL_SSL}/public/github.png`)
  127. // })
  128. // .catch(e => {
  129. // report(<Assert key="non-trusty request should not pass" expect={true} actual={true}/>)
  130. // done()
  131. // })
  132. // })
  133. // describe('#162 get free disk space', (report, done) => {
  134. //
  135. // fs.df().then((stat) => {
  136. // console.log(stat);
  137. // done();
  138. // })
  139. //
  140. // })
  141. describe('action view intent get callback', (report, done) => {
  142. let isActionViewVisible = false
  143. RNFetchBlob.config({
  144. fileCache : true,
  145. appendExt : 'png',
  146. trusty : true
  147. })
  148. .fetch('GET', `${TEST_SERVER_URL}/public/github.png`)
  149. .then(res => {
  150. console.log(res.data);
  151. console.log(res.info())
  152. RNFetchBlob.android.actionViewIntent(res.path(), 'image/png')
  153. .then(() => {
  154. console.log('action-view removed')
  155. isActionViewVisible = true
  156. });
  157. })
  158. })