use sortorder lib for sorting in trust package
Signed-off-by: Arash Deshmeh <adeshmeh@ca.ibm.com>
This commit is contained in:
parent
a921313caf
commit
04bb3c770f
@ -14,6 +14,7 @@ import (
|
|||||||
"github.com/theupdateframework/notary"
|
"github.com/theupdateframework/notary"
|
||||||
"github.com/theupdateframework/notary/client"
|
"github.com/theupdateframework/notary/client"
|
||||||
"github.com/theupdateframework/notary/tuf/data"
|
"github.com/theupdateframework/notary/tuf/data"
|
||||||
|
"vbom.ml/util/sortorder"
|
||||||
)
|
)
|
||||||
|
|
||||||
// trustTagKey represents a unique signed tag and hex-encoded hash pair
|
// trustTagKey represents a unique signed tag and hex-encoded hash pair
|
||||||
@ -149,7 +150,7 @@ func matchReleasedSignatures(allTargets []client.TargetSignedStruct) []trustTagR
|
|||||||
signatureRows = append(signatureRows, trustTagRow{targetKey, signers})
|
signatureRows = append(signatureRows, trustTagRow{targetKey, signers})
|
||||||
}
|
}
|
||||||
sort.Slice(signatureRows, func(i, j int) bool {
|
sort.Slice(signatureRows, func(i, j int) bool {
|
||||||
return signatureRows[i].SignedTag < signatureRows[j].SignedTag
|
return sortorder.NaturalLess(signatureRows[i].SignedTag, signatureRows[j].SignedTag)
|
||||||
})
|
})
|
||||||
return signatureRows
|
return signatureRows
|
||||||
}
|
}
|
||||||
|
33
cli/command/trust/common_test.go
Normal file
33
cli/command/trust/common_test.go
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
package trust
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/docker/cli/cli/trust"
|
||||||
|
"github.com/theupdateframework/notary/client"
|
||||||
|
"github.com/theupdateframework/notary/tuf/data"
|
||||||
|
"gotest.tools/assert"
|
||||||
|
is "gotest.tools/assert/cmp"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestMatchReleasedSignaturesSortOrder(t *testing.T) {
|
||||||
|
var releasesRole = data.DelegationRole{BaseRole: data.BaseRole{Name: trust.ReleasesRole}}
|
||||||
|
targets := []client.TargetSignedStruct{
|
||||||
|
{Target: client.Target{Name: "target10-foo"}, Role: releasesRole},
|
||||||
|
{Target: client.Target{Name: "target1-foo"}, Role: releasesRole},
|
||||||
|
{Target: client.Target{Name: "target2-foo"}, Role: releasesRole},
|
||||||
|
}
|
||||||
|
|
||||||
|
rows := matchReleasedSignatures(targets)
|
||||||
|
|
||||||
|
var targetNames []string
|
||||||
|
for _, r := range rows {
|
||||||
|
targetNames = append(targetNames, r.SignedTag)
|
||||||
|
}
|
||||||
|
expected := []string{
|
||||||
|
"target1-foo",
|
||||||
|
"target2-foo",
|
||||||
|
"target10-foo",
|
||||||
|
}
|
||||||
|
assert.Check(t, is.DeepEqual(expected, targetNames))
|
||||||
|
}
|
@ -8,6 +8,7 @@ import (
|
|||||||
"github.com/docker/cli/cli/command"
|
"github.com/docker/cli/cli/command"
|
||||||
"github.com/docker/cli/cli/command/formatter"
|
"github.com/docker/cli/cli/command/formatter"
|
||||||
"github.com/theupdateframework/notary/client"
|
"github.com/theupdateframework/notary/client"
|
||||||
|
"vbom.ml/util/sortorder"
|
||||||
)
|
)
|
||||||
|
|
||||||
func prettyPrintTrustInfo(cli command.Cli, remote string) error {
|
func prettyPrintTrustInfo(cli command.Cli, remote string) error {
|
||||||
@ -86,7 +87,7 @@ func printSignerInfo(out io.Writer, roleToKeyIDs map[string][]string) error {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
sort.Slice(formattedSignerInfo, func(i, j int) bool {
|
sort.Slice(formattedSignerInfo, func(i, j int) bool {
|
||||||
return formattedSignerInfo[i].Name < formattedSignerInfo[j].Name
|
return sortorder.NaturalLess(formattedSignerInfo[i].Name, formattedSignerInfo[j].Name)
|
||||||
})
|
})
|
||||||
return formatter.SignerInfoWrite(signerInfoCtx, formattedSignerInfo)
|
return formatter.SignerInfoWrite(signerInfoCtx, formattedSignerInfo)
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package trust
|
package trust
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"testing"
|
"testing"
|
||||||
@ -440,3 +441,20 @@ func TestFormatAdminRole(t *testing.T) {
|
|||||||
targetsRoleWithSigs := client.RoleWithSignatures{Role: targetsRole, Signatures: nil}
|
targetsRoleWithSigs := client.RoleWithSignatures{Role: targetsRole, Signatures: nil}
|
||||||
assert.Check(t, is.Equal("Repository Key:\tabc, key11, key99\n", formatAdminRole(targetsRoleWithSigs)))
|
assert.Check(t, is.Equal("Repository Key:\tabc, key11, key99\n", formatAdminRole(targetsRoleWithSigs)))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestPrintSignerInfoSortOrder(t *testing.T) {
|
||||||
|
roleToKeyIDs := map[string][]string{
|
||||||
|
"signer2-foo": {"B"},
|
||||||
|
"signer10-foo": {"C"},
|
||||||
|
"signer1-foo": {"A"},
|
||||||
|
}
|
||||||
|
|
||||||
|
expected := `SIGNER KEYS
|
||||||
|
signer1-foo A
|
||||||
|
signer2-foo B
|
||||||
|
signer10-foo C
|
||||||
|
`
|
||||||
|
buf := new(bytes.Buffer)
|
||||||
|
assert.NilError(t, printSignerInfo(buf, roleToKeyIDs))
|
||||||
|
assert.Check(t, is.Equal(expected, buf.String()))
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user