⛔️ DEPRECATED: js-IPFS has been superseded by Helia
📚 Learn more about this deprecation or how to migrate
⚠️ If you continue using this repo, please note that security fixes will not be provided
interface-ipfs-core
A test suite and interface you can use to implement a IPFS core interface.
Table of contents
Install
$ npm i interface-ipfs-core
Background
The primary goal of this module is to define and ensure that IPFS core implementations and their respective HTTP client libraries offer the same interface, so that developers can quickly change between a local and a remote node without having to change their applications.
It offers a suite of tests that can be run in order to check if the interface is implemented as described.
Core API
In order to be considered "valid", an IPFS implementation must expose the Core API as described in /docs/core-api. You can also use this loose spec as documentation for consuming the core APIs.
Modules that implement the interface
Send in a PR if you find or write one!
Badge
Include this badge in your readme if you make a new module that implements interface-ipfs-core API.
[![IPFS Core API Compatible](https://cdn.rawgit.com/ipfs/interface-ipfs-core/master/img/badge.svg)](https://github.com/ipfs/js-ipfs/tree/master/packages/interface-ipfs-core)
$ npm install interface-ipfs-core
If you want to run these tests against a Kubo daemon, checkout ipfs-http-client and run test tests:
$ git clone https://github.com/ipfs/js-ipfs-http-client
$ npm install
$ npm test
Usage
Install interface-ipfs-core
as one of the dependencies of your project and as a test file. Then, using mocha
(for Node.js) or a test runner with compatible API, do:
import * as tests from 'interface-ipfs-core'
const nodes = []
const createCommon = () => ({
setup: async () => {
const node = await spawnNode()
nodes.push(node)
return node.api
},
teardown: () => {
return Promise.all(nodes.map(n => n.stop()))
}
})
tests.block(createCommon)
tests.config(createCommon)
tests.dag(createCommon)
Running tests
tests.repo(createCommon)
Running tests by command
tests.repo.version(createCommon)
Running only some tests
tests.repo.gc(createCommon, { only: true })
tests.repo(createCommon, { only: ['gc'] })
tests.object(createCommon, { only: ['patch.addLink'] })
Running only specific tests
tests.repo.gc(createCommon, { only: ['should do a thing'] })
tests.repo(createCommon, { only: ['should do a thing'] })
Skipping tests
tests.repo.gc(createCommon, { skip: true })
tests.repo(createCommon, { skip: ['gc'] })
tests.object(createCommon, { skip: ['patch.addLink'] })
Skipping specific tests
tests.repo.gc(createCommon, { skip: ['should do a thing'] })
tests.repo(createCommon, { skip: ['should do a thing'] })
tests.repo(createCommon, {
skip: [{
name: 'should do a thing',
reason: 'Thing is not implemented yet'
}]
})
License
Licensed under either of
Contribute
Contributions welcome! Please check out the issues.
Also see our contributing document for more information on how we work, and about contributing in general.
Please be aware that all interactions related to this repo are subject to the IPFS Code of Conduct.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.