|
Some checks are pending
CodeQL / codeql (push) Waiting to run
Docker Check / lint (push) Waiting to run
Docker Check / build (push) Waiting to run
Gateway Conformance / gateway-conformance (push) Waiting to run
Gateway Conformance / gateway-conformance-libp2p-experiment (push) Waiting to run
Go Build / go-build (push) Waiting to run
Go Check / go-check (push) Waiting to run
Go Lint / go-lint (push) Waiting to run
Go Test / unit-tests (push) Waiting to run
Go Test / cli-tests (push) Waiting to run
Go Test / example-tests (push) Waiting to run
Interop / interop-prep (push) Waiting to run
Interop / helia-interop (push) Blocked by required conditions
Interop / ipfs-webui (push) Blocked by required conditions
Sharness / sharness-test (push) Waiting to run
Spell Check / spellcheck (push) Waiting to run
* feat(config): Import.* and unixfs-v1-2025 profile
implements IPIP-499: add config options for controlling UnixFS DAG
determinism and introduces `unixfs-v1-2025` and `unixfs-v0-2015`
profiles for cross-implementation CID reproducibility.
changes:
- add Import.* fields: HAMTDirectorySizeEstimation, SymlinkMode,
DAGLayout, IncludeEmptyDirectories, IncludeHidden
- add validation for all Import.* config values
- add unixfs-v1-2025 profile (recommended for new data)
- add unixfs-v0-2015 profile (alias: legacy-cid-v0)
- remove deprecated test-cid-v1 and test-cid-v1-wide profiles
- wire Import.HAMTSizeEstimationMode() to boxo globals
- update go.mod to use boxo with SizeEstimationMode support
ref: https://specs.ipfs.tech/ipips/ipip-0499/
* feat(add): add --dereference-symlinks, --empty-dirs, --hidden CLI flags
add CLI flags for controlling file collection behavior during ipfs add:
- `--dereference-symlinks`: recursively resolve symlinks to their target
content (replaces deprecated --dereference-args which only worked on
CLI arguments). wired through go-ipfs-cmds to boxo's SerialFileOptions.
- `--empty-dirs` / `-E`: include empty directories (default: true)
- `--hidden` / `-H`: include hidden files (default: false)
these flags are CLI-only and not wired to Import.* config options because
go-ipfs-cmds library handles input file filtering before the directory
tree is passed to kubo. removed unused Import.UnixFSSymlinkMode config
option that was defined but never actually read by the CLI.
also:
- wire --trickle to Import.UnixFSDAGLayout config default
- update go-ipfs-cmds to v0.15.1-0.20260117043932-17687e216294
- add SYMLINK HANDLING section to ipfs add help text
- add CLI tests for all three flags
ref: https://github.com/ipfs/specs/pull/499
* test(add): add CID profile tests and wire SizeEstimationMode
add comprehensive test suite for UnixFS CID determinism per IPIP-499:
- verify exact HAMT threshold boundary for both estimation modes:
- v0-2015 (links): sum(name_len + cid_len) == 262144
- v1-2025 (block): serialized block size == 262144
- verify HAMT triggers at threshold + 1 byte for both profiles
- add all deterministic CIDs for cross-implementation testing
also wires SizeEstimationMode through CLI/API, allowing
Import.UnixFSHAMTSizeEstimation config to take effect.
bumps boxo to ipfs/boxo@6707376 which aligns HAMT threshold with
JS implementation (uses > instead of >=), fixing CID determinism
at the exact 256 KiB boundary.
* feat(add): --dereference-symlinks now resolves all symlinks
Previously, resolving symlinks required two flags:
- --dereference-args: resolved symlinks passed as CLI arguments
- --dereference-symlinks: resolved symlinks inside directories
Now --dereference-symlinks handles both cases. Users only need one flag
to fully dereference symlinks when adding files to IPFS.
The deprecated --dereference-args still works for backwards compatibility
but is no longer necessary.
* chore: update boxo and improve changelog
- update boxo to ebdaf07c (nil filter fix, thread-safety docs)
- simplify changelog for IPIP-499 section
- shorten test names, move context to comments
* chore: update boxo to 5cf22196
* chore: apply suggestions from code review
Co-authored-by: Andrew Gillis <11790789+gammazero@users.noreply.github.com>
* test(add): verify balanced DAG layout produces uniform leaf depth
add test that confirms kubo uses balanced layout (all leaves at same
depth) rather than balanced-packed (varying depths). creates 45MiB file
to trigger multi-level DAG and walks it to verify leaf depth uniformity.
includes trickle subtest to validate test logic can detect varying depths.
supports CAR export via DAG_LAYOUT_CAR_OUTPUT env var for test vectors.
* chore(deps): update boxo to 6141039ad8ef
switches to
|
||
|---|---|---|
| .. | ||
| lib | ||
| t0024-files | ||
| t0050-block-data | ||
| t0053-dag-data | ||
| t0054-dag-car-import-export-data | ||
| t0060-data | ||
| t0109-gateway-web-_redirects-data | ||
| t0114-gateway-subdomains | ||
| t0115-gateway-dir-listing | ||
| t0116-gateway-cache | ||
| t0119-prometheus-data | ||
| t0165-keystore-data | ||
| t0275-cid-security-data | ||
| t0280-plugin-dag-jose-data | ||
| t0280-plugin-data | ||
| t0280-plugin-git-data | ||
| t0400-api-no-gateway | ||
| t0701-delegated-routing-reframe | ||
| t0702-delegated-routing-http | ||
| .gitignore | ||
| GNUmakefile | ||
| README.md | ||
| Rules.mk | ||
| t0001-tests-work.sh | ||
| t0002-docker-image.sh | ||
| t0003-docker-migrate.sh | ||
| t0012-completion-fish.sh | ||
| t0015-basic-sh-functions.sh | ||
| t0018-indent.sh | ||
| t0021-config.sh | ||
| t0022-init-default.sh | ||
| t0023-shutdown.sh | ||
| t0024-datastore-config.sh | ||
| t0025-datastores.sh | ||
| t0026-id.sh | ||
| t0027-rotate.sh | ||
| t0030-mount.sh | ||
| t0031-mount-publish.sh | ||
| t0032-mount-sharded.sh | ||
| t0040-add-and-cat.sh | ||
| t0042-add-skip.sh | ||
| t0043-add-w.sh | ||
| t0044-add-symlink.sh | ||
| t0045-ls.sh | ||
| t0046-id-hash.sh | ||
| t0047-add-mode-mtime.sh | ||
| t0050-block.sh | ||
| t0051-object.sh | ||
| t0052-object-diff.sh | ||
| t0053-dag.sh | ||
| t0054-dag-car-import-export.sh | ||
| t0055-dag-put-json-new-line.sh | ||
| t0060-daemon.sh | ||
| t0061-daemon-opts.sh | ||
| t0062-daemon-api.sh | ||
| t0063-daemon-init.sh | ||
| t0063-external.sh | ||
| t0064-api-file.sh | ||
| t0065-active-requests.sh | ||
| t0066-migration.sh | ||
| t0067-unix-api.sh | ||
| t0070-user-config.sh | ||
| t0080-repo.sh | ||
| t0081-repo-pinning.sh | ||
| t0082-repo-gc-auto.sh | ||
| t0084-repo-read-rehash.sh | ||
| t0086-repo-verify.sh | ||
| t0087-repo-robust-gc.sh | ||
| t0088-repo-stat-symlink.sh | ||
| t0090-get.sh | ||
| t0095-refs.sh | ||
| t0101-iptb-name.sh | ||
| t0109-gateway-web-_redirects.sh | ||
| t0112-gateway-cors.sh | ||
| t0114-gateway-subdomains.sh | ||
| t0115-gateway-dir-listing.sh | ||
| t0116-gateway-cache.sh | ||
| t0119-prometheus.sh | ||
| t0120-bootstrap.sh | ||
| t0121-bootstrap-iptb.sh | ||
| t0131-multinode-client-routing.sh | ||
| t0140-swarm.sh | ||
| t0141-addfilter.sh | ||
| t0142-testfilter.sh | ||
| t0150-clisuggest.sh | ||
| t0151-sysdiag.sh | ||
| t0152-profile.sh | ||
| t0160-resolve.sh | ||
| t0165-keystore.sh | ||
| t0180-p2p.sh | ||
| t0181-private-network.sh | ||
| t0182-circuit-relay.sh | ||
| t0183-namesys-pubsub.sh | ||
| t0184-http-proxy-over-p2p.sh | ||
| t0185-autonat.sh | ||
| t0190-quic-ping.sh | ||
| t0191-webtransport-ping.sh | ||
| t0195-noise.sh | ||
| t0220-bitswap.sh | ||
| t0230-channel-streaming-http-content-type.sh | ||
| t0231-channel-streaming.sh | ||
| t0235-cli-request.sh | ||
| t0236-cli-api-dns-resolve.sh | ||
| t0240-republisher.sh | ||
| t0250-files-api.sh | ||
| t0251-files-flushing.sh | ||
| t0252-files-gc.sh | ||
| t0260-sharding.sh | ||
| t0270-filestore.sh | ||
| t0271-filestore-utils.sh | ||
| t0272-urlstore.sh | ||
| t0275-cid-security.sh | ||
| t0276-cidv0v1.sh | ||
| t0280-plugin-dag-jose.sh | ||
| t0280-plugin-fx.sh | ||
| t0280-plugin-git.sh | ||
| t0280-plugin-peerlog.sh | ||
| t0280-plugin.sh | ||
| t0290-cid.sh | ||
| t0295-multibase.sh | ||
| t0320-pubsub.sh | ||
| t0321-pubsub-gossipsub.sh | ||
| t0322-pubsub-http-rpc.sh | ||
| t0400-api-no-gateway.sh | ||
| t0401-api-browser-security.sh | ||
| t0410-api-add.sh | ||
| t0500-issues-and-regressions-offline.sh | ||
| t0600-issues-and-regressions-online.sh | ||
| t0800-blake3.sh | ||
| x0601-pin-fail-test.sh | ||
ipfs whole tests using the sharness framework
Running all the tests
Just use make in this directory to run all the tests.
Run with TEST_VERBOSE=1 to get helpful verbose output.
TEST_VERBOSE=1 make
The usual ipfs env flags also apply:
# the output will make your eyes bleed
GOLOG_LOG_LEVEL=debug TEST_VERBOSE=1 make
To make the tests abort as soon as an error occurs, use the TEST_IMMEDIATE env variable:
# this will abort as soon the first error occurs
TEST_IMMEDIATE=1 make
Running just one test
You can run only one test script by launching it like a regular shell script:
$ ./t0010-basic-commands.sh
Debugging one test
You can use the -v option to make it verbose and the -i option to
make it stop as soon as one test fails.
For example:
$ ./t0010-basic-commands.sh -v -i
Sharness
When running sharness tests from main Makefile or when test_sharness_deps
target is run dependencies for sharness
will be downloaded from its GitHub repo and installed in a "lib/sharness"
directory.
Please do not change anything in the "lib/sharness" directory.
If you really need some changes in sharness, please fork it from its canonical repo and send pull requests there.
Writing Tests
Please have a look at existing tests and try to follow their example.
When possible and not too inefficient, that means most of the time,
an ipfs command should not be on the left side of a pipe, because if
the ipfs command fails (exit non zero), the pipe will mask this failure.
For example after false | true, echo $? prints 0 (despite false
failing).
It should be possible to put most of the code inside test_expect_success,
or sometimes test_expect_failure, blocks, and to chain all the commands
inside those blocks with &&, or || for diagnostic commands.
Diagnostics
Make your test case output helpful for when running sharness verbosely. This means cating certain files, or running diagnostic commands. For example:
test_expect_success ".ipfs/ has been created" '
test -d ".ipfs" &&
test -f ".ipfs/config" &&
test -d ".ipfs/datastore" &&
test -d ".ipfs/blocks" ||
test_fsh ls -al .ipfs
'
The || ... is a diagnostic run when the preceding command fails.
test_fsh is a shell function that echoes the args, runs the cmd,
and then also fails, making sure the test case fails. (wouldn't want
the diagnostic accidentally returning true and making it seem like
the test case succeeded!).
Testing commands on daemon or mounted
Use the provided functions in lib/test-lib.sh to run the daemon or mount:
To init, run daemon, and mount in one go:
test_launch_ipfs_daemon_and_mount
test_expect_success "'ipfs add --help' succeeds" '
ipfs add --help >actual
'
# other tests here...
# don't forget to kill the daemon!!
test_kill_ipfs_daemon
To init, run daemon, and then mount separately:
test_init_ipfs
# tests inited but not running here
test_launch_ipfs_daemon
# tests running but not mounted here
test_mount_ipfs
# tests mounted here
# don't forget to kill the daemon!!
test_kill_ipfs_daemon