|
@@ -103,6 +103,9 @@ describe('blob clear cache test', (report, done) => {
|
103
|
103
|
let expect = 'test-' + Date.now()
|
104
|
104
|
Blob.clearCache()
|
105
|
105
|
.then(() => Blob.build(expect))
|
|
106
|
+ .catch((err) => {
|
|
107
|
+ console.warn(err)
|
|
108
|
+ })
|
106
|
109
|
.then((b) => fs.readFile(b.getRNFetchBlobRef(), 'utf8'))
|
107
|
110
|
.then((data) => {
|
108
|
111
|
report(
|
|
@@ -124,17 +127,22 @@ describe('blob clear cache test', (report, done) => {
|
124
|
127
|
describe('create blob using FormData', (report, done) => {
|
125
|
128
|
let form = new FormData()
|
126
|
129
|
let fname = 'blob-test' + Date.now()
|
127
|
|
- File.build(RNTest.prop('image'), { type:'image/png;base64' })
|
|
130
|
+ File.build('test.png', RNTest.prop('image'), { type:'image/png;base64' })
|
128
|
131
|
.then((f) => {
|
129
|
|
- f.name = 'test.png'
|
130
|
132
|
form.append('name', fname)
|
131
|
133
|
form.append('blob', f)
|
132
|
134
|
return Blob.build(form)
|
133
|
135
|
})
|
134
|
|
- .then((b) => RNFetchBlob
|
135
|
|
- .fetch('POST', `${TEST_SERVER_URL}/upload-form`, {
|
136
|
|
- 'content-type' : 'multipart/form-data; boundary='+b.multipartBoundary
|
137
|
|
- }, RNFetchBlob.wrap(b.getRNFetchBlobRef())))
|
|
136
|
+ .then((b) => {
|
|
137
|
+ let body = RNFetchBlob.wrap(b.getRNFetchBlobRef())
|
|
138
|
+ return RNFetchBlob.fetch(
|
|
139
|
+ 'POST',
|
|
140
|
+ `${TEST_SERVER_URL}/upload-form`,
|
|
141
|
+ {
|
|
142
|
+ 'content-type' : 'multipart/form-data; boundary='+b.multipartBoundary
|
|
143
|
+ },
|
|
144
|
+ body)
|
|
145
|
+ })
|
138
|
146
|
.then((resp) => {
|
139
|
147
|
report(
|
140
|
148
|
<Assert key="form data verification #1"
|