This repository was archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathadd-from-fs.js
132 lines (111 loc) · 4.28 KB
/
add-from-fs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* eslint-env mocha */
'use strict'
const path = require('path')
const expectTimeout = require('../utils/expect-timeout')
const { getDescribe, getIt, expect } = require('../utils/mocha')
const fs = require('fs')
const os = require('os')
module.exports = (createCommon, options) => {
const describe = getDescribe(options)
const it = getIt(options)
const common = createCommon()
describe('.addFromFs', function () {
this.timeout(40 * 1000)
const fixturesPath = path.join(__dirname, '../../test/fixtures')
let ipfs
before(function (done) {
// CI takes longer to instantiate the daemon, so we need to increase the
// timeout for the before step
this.timeout(60 * 1000)
common.setup((err, factory) => {
expect(err).to.not.exist()
factory.spawnNode((err, node) => {
expect(err).to.not.exist()
ipfs = node
done()
})
})
})
after((done) => common.teardown(done))
it('should add a directory from the file system', (done) => {
const filesPath = path.join(fixturesPath, 'test-folder')
ipfs.addFromFs(filesPath, { recursive: true }, (err, result) => {
expect(err).to.not.exist()
expect(result.length).to.be.above(8)
done()
})
})
it('should add a symlink to a file', (done) => {
const filePath = path.join(fixturesPath, 'symlinks', 'ipfs.txt-link')
ipfs.addFromFs(filePath, (err, files) => {
expect(err).to.not.exist()
const file = files.find(r => r.path === 'ipfs.txt-link')
expect(file).to.exist()
ipfs.cat(file.hash, (err, data) => {
expect(err).to.not.exist()
expect(data.toString()).to.eql('IPFS\n')
done()
})
})
})
it('should add a symlink to a directory', (done) => {
const dirPath = path.join(fixturesPath, 'symlinks', 'real-dir-link')
ipfs.addFromFs(dirPath, { recursive: true }, (err, files) => {
expect(err).to.not.exist()
const file = files.find(r => r.path === 'real-dir-link/real-file.txt')
expect(file).to.exist()
ipfs.cat(file.hash, (err, data) => {
expect(err).to.not.exist()
expect(data.toString()).to.eql('A real file\n')
done()
})
})
})
it('should add a directory from the file system with an odd name', (done) => {
const filesPath = path.join(fixturesPath, 'weird name folder [v0]')
ipfs.addFromFs(filesPath, { recursive: true }, (err, result) => {
expect(err).to.not.exist()
expect(result.length).to.be.above(8)
done()
})
})
it('should ignore a directory from the file system', (done) => {
const filesPath = path.join(fixturesPath, 'test-folder')
ipfs.addFromFs(filesPath, { recursive: true, ignore: ['files/**'] }, (err, result) => {
expect(err).to.not.exist()
expect(result.length).to.be.below(9)
done()
})
})
it('should add a file from the file system', (done) => {
const filePath = path.join(fixturesPath, 'testfile.txt')
ipfs.addFromFs(filePath, (err, result) => {
expect(err).to.not.exist()
expect(result.length).to.equal(1)
expect(result[0].path).to.equal('testfile.txt')
done()
})
})
it('should add a hidden file in a directory from the file system', (done) => {
const filesPath = path.join(fixturesPath, 'hidden-files-folder')
ipfs.addFromFs(filesPath, { recursive: true, hidden: true }, (err, result) => {
expect(err).to.not.exist()
expect(result.length).to.be.above(10)
expect(result.map(object => object.path)).to.include('hidden-files-folder/.hiddenTest.txt')
expect(result.map(object => object.hash)).to.include('QmdbAjVmLRdpFyi8FFvjPfhTGB2cVXvWLuK7Sbt38HXrtt')
done()
})
})
it('should add a file from the file system with only-hash=true', function () {
this.slow(10 * 1000)
const content = String(Math.random() + Date.now())
const filepath = path.join(os.tmpdir(), `${content}.txt`)
fs.writeFileSync(filepath, content)
return ipfs.addFromFs(filepath, { onlyHash: true })
.then(out => {
fs.unlinkSync(filepath)
return expectTimeout(ipfs.object.get(out[0].hash), 4000)
})
})
})
}