Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 86a1f3f

Browse files
hugomrdiasAlan Shaw
authored and
Alan Shaw
committed
feat: add tests for add data using File DOM api (#461)
* feat: add tests for add data using File DOM api * chore: fix deps * chore: add ipfs-utils * chore: change to ipfs-utils * docs: add doc s about File DOM API support * chore: fix semver lint
1 parent 1b3d013 commit 86a1f3f

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

SPEC/FILES.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,12 @@ Where `data` may be:
4444
- a [`Buffer instance`][b]
4545
- a [`Readable Stream`][rs]
4646
- a [`Pull Stream`][ps]
47+
- a [`File`][file]
4748
- an array of objects, each of the form:
4849
```JavaScript
4950
{
5051
path: '/tmp/myfile.txt', // The file path
51-
content: <data> // A Buffer, Readable Stream or Pull Stream with the contents of the file
52+
content: <data> // A Buffer, Readable Stream, Pull Stream or File with the contents of the file
5253
}
5354
```
5455
If no `content` is passed, then the path is treated as an empty directory
@@ -137,7 +138,7 @@ Returns a Readable Stream of class Duplex, where objects can be written of the f
137138
```js
138139
{
139140
path: '/tmp/myfile.txt', // The file path
140-
content: <data> // A Buffer, Readable Stream or Pull Stream with the contents of the file
141+
content: <data> // A Buffer, Readable Stream, Pull Stream or File with the contents of the file
141142
}
142143
```
143144

@@ -185,7 +186,7 @@ Returns a Pull Stream, where objects can be written of the forms
185186
```js
186187
{
187188
path: '/tmp/myfile.txt', // The file path
188-
content: <data> // A Buffer, Readable Stream or Pull Stream with the contents of the file
189+
content: <data> // A Buffer, Readable Stream, Pull Stream or File with the contents of the file
189190
}
190191
```
191192

@@ -1136,5 +1137,6 @@ A great source of [examples][] can be found in the tests for this API.
11361137
[b]: https://www.npmjs.com/package/buffer
11371138
[rs]: https://www.npmjs.com/package/readable-stream
11381139
[ps]: https://www.npmjs.com/package/pull-stream
1140+
[file]: https://developer.mozilla.org/en-US/docs/Web/API/File
11391141
[cid]: https://www.npmjs.com/package/cids
11401142
[blob]: https://developer.mozilla.org/en-US/docs/Web/API/Blob

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"into-stream": "^5.1.0",
4949
"ipfs-block": "~0.8.0",
5050
"ipfs-unixfs": "~0.1.16",
51+
"ipfs-utils": "~0.0.3",
5152
"ipld-dag-cbor": "~0.13.1",
5253
"ipld-dag-pb": "~0.15.3",
5354
"is-ipfs": "~0.6.0",
@@ -59,7 +60,7 @@
5960
"multihashing-async": "~0.6.0",
6061
"peer-id": "~0.12.0",
6162
"peer-info": "~0.15.0",
62-
"pull-stream": "^3.6.9",
63+
"pull-stream": "^3.6.11",
6364
"pump": "^3.0.0",
6465
"randombytes": "^2.0.6",
6566
"readable-stream": "^3.1.1",

src/files-regular/add.js

+15-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const pull = require('pull-stream')
77
const path = require('path')
88
const expectTimeout = require('../utils/expect-timeout')
99
const { getDescribe, getIt, expect } = require('../utils/mocha')
10+
const { supportsFileReader } = require('ipfs-utils/src/supports')
1011

1112
module.exports = (createCommon, options) => {
1213
const describe = getDescribe(options)
@@ -35,6 +36,18 @@ module.exports = (createCommon, options) => {
3536

3637
after((done) => common.teardown(done))
3738

39+
it('should add a File', function (done) {
40+
if (supportsFileReader) {
41+
ipfs.add(new self.File(['should add a File'], 'filename.txt', { type: 'text/plain' }), (err, filesAdded) => {
42+
expect(err).to.not.exist()
43+
expect(filesAdded[0].hash).to.be.eq('QmTVfLxf3qXiJgr4KwG6UBckcNvTqBp93Rwy5f7h3mHsVC')
44+
done()
45+
})
46+
} else {
47+
this.skip('skip in node')
48+
}
49+
})
50+
3851
it('should add a Buffer', (done) => {
3952
ipfs.add(fixtures.smallFile.data, (err, filesAdded) => {
4053
expect(err).to.not.exist()
@@ -125,7 +138,7 @@ module.exports = (createCommon, options) => {
125138

126139
ipfs.add(data, (err) => {
127140
expect(err).to.exist()
128-
expect(err.message).to.contain('invalid input')
141+
expect(err.message).to.contain('Input not supported')
129142
done()
130143
})
131144
})
@@ -135,7 +148,7 @@ module.exports = (createCommon, options) => {
135148

136149
ipfs.add(data, (err) => {
137150
expect(err).to.exist()
138-
expect(err.message).to.contain('invalid input')
151+
expect(err.message).to.contain('Input not supported')
139152
done()
140153
})
141154
})

0 commit comments

Comments
 (0)