Unverified Commit 7588a6a5 authored by Adin Schmahmann's avatar Adin Schmahmann Committed by GitHub

Merge pull request #7829 from ipfs/fix/pin-remote-service-ls-json

fix: remote services ls always return a list
parents 651e3cca 216b858f
......@@ -486,7 +486,7 @@ var lsRemotePinServiceCmd = &cmds.Command{
return err
}
if cfg.Pinning.RemoteServices == nil {
return nil // no pinning services added yet
return cmds.EmitOnce(res, &PinServicesList{make([]ServiceDetails, 0)})
}
services := cfg.Pinning.RemoteServices
result := PinServicesList{make([]ServiceDetails, 0, len(services))}
......
......@@ -20,6 +20,14 @@ TEST_PIN_SVC_KEY=$(curl -s -X POST "$TEST_PIN_SVC/users" -d email="go-ipfs-sharn
# pin remote service add|ls|rm
# confirm empty service list response has proper json struct
# https://github.com/ipfs/go-ipfs/pull/7829
test_expect_success "test 'ipfs pin remote service ls' JSON on empty list" '
ipfs pin remote service ls --stat --enc=json | tee empty_ls_out &&
echo "{\"RemoteServices\":[]}" > exp_ls_out &&
test_cmp exp_ls_out empty_ls_out
'
# add valid and invalid services
test_expect_success "creating test user on remote pinning service" '
echo CI host IP address ${TEST_PIN_SVC} &&
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment