|
3 | 3 |
|
4 | 4 | const { fixtures } = require('./utils')
|
5 | 5 | const { getDescribe, getIt, expect } = require('../utils/mocha')
|
| 6 | +const CID = require('cids') |
6 | 7 |
|
7 | 8 | module.exports = (createCommon, options) => {
|
8 | 9 | const describe = getDescribe(options)
|
@@ -104,6 +105,62 @@ module.exports = (createCommon, options) => {
|
104 | 105 | })
|
105 | 106 | })
|
106 | 107 |
|
| 108 | + it('should ls files added as CIDv0 with a CIDv1', done => { |
| 109 | + const randomName = prefix => `${prefix}${Math.round(Math.random() * 1000)}` |
| 110 | + const dir = randomName('DIR') |
| 111 | + |
| 112 | + const input = [ |
| 113 | + { path: `${dir}/${randomName('F0')}`, content: Buffer.from(randomName('D0')) }, |
| 114 | + { path: `${dir}/${randomName('F1')}`, content: Buffer.from(randomName('D1')) } |
| 115 | + ] |
| 116 | + |
| 117 | + ipfs.add(input, { cidVersion: 0 }, (err, res) => { |
| 118 | + expect(err).to.not.exist() |
| 119 | + |
| 120 | + const cidv0 = new CID(res[res.length - 1].hash) |
| 121 | + expect(cidv0.version).to.equal(0) |
| 122 | + |
| 123 | + const cidv1 = cidv0.toV1() |
| 124 | + |
| 125 | + ipfs.ls(cidv1, (err, output) => { |
| 126 | + expect(err).to.not.exist() |
| 127 | + expect(output.length).to.equal(input.length) |
| 128 | + output.forEach(({ hash }) => { |
| 129 | + expect(res.find(file => file.hash === hash)).to.exist() |
| 130 | + }) |
| 131 | + done() |
| 132 | + }) |
| 133 | + }) |
| 134 | + }) |
| 135 | + |
| 136 | + it('should ls files added as CIDv1 with a CIDv0', done => { |
| 137 | + const randomName = prefix => `${prefix}${Math.round(Math.random() * 1000)}` |
| 138 | + const dir = randomName('DIR') |
| 139 | + |
| 140 | + const input = [ |
| 141 | + { path: `${dir}/${randomName('F0')}`, content: Buffer.from(randomName('D0')) }, |
| 142 | + { path: `${dir}/${randomName('F1')}`, content: Buffer.from(randomName('D1')) } |
| 143 | + ] |
| 144 | + |
| 145 | + ipfs.add(input, { cidVersion: 1, rawLeaves: false }, (err, res) => { |
| 146 | + expect(err).to.not.exist() |
| 147 | + |
| 148 | + const cidv1 = new CID(res[res.length - 1].hash) |
| 149 | + expect(cidv1.version).to.equal(1) |
| 150 | + |
| 151 | + const cidv0 = cidv1.toV1() |
| 152 | + |
| 153 | + ipfs.ls(cidv0, (err, output) => { |
| 154 | + expect(err).to.not.exist() |
| 155 | + expect(output.length).to.equal(input.length) |
| 156 | + output.forEach(({ hash }) => { |
| 157 | + expect(res.find(file => file.hash === hash)).to.exist() |
| 158 | + }) |
| 159 | + done() |
| 160 | + }) |
| 161 | + }) |
| 162 | + }) |
| 163 | + |
107 | 164 | it('should correctly handle a non existing hash', (done) => {
|
108 | 165 | ipfs.ls('surelynotavalidhashheh?', (err, res) => {
|
109 | 166 | expect(err).to.exist()
|
|
0 commit comments