mirror of
https://github.com/project-zot/zot.git
synced 2026-06-15 11:37:56 +08:00
2402296e9a
* fix: migrate to Go module v2 for proper semantic versioning This change updates the module path from 'zotregistry.dev/zot' to 'zotregistry.dev/zot/v2' to comply with Go's semantic versioning rules. According to Go's module versioning requirements, major version v2+ must include the major version in the module path. The current module path 'zotregistry.dev/zot' only supports v0.x.x and v1.x.x versions, making existing v2.x.x tags (like v2.1.8) unusable. Changes: - Updated go.mod module path to zotregistry.dev/zot/v2 - Updated all internal import paths across 280+ Go source files - Updated configuration files (golangcilint.yaml, gqlgen.yml) - Updated README.md Go reference badge This fix enables proper use of existing v2.x.x Git tags and allows external packages to import zot v2+ versions without compatibility errors. Resolves: Go module import compatibility for v2+ versions Fixes: #3071 Signed-off-by: Luca Muscariello <muscariello@ieee.org> * fix: regenerate GraphQL files with updated v2 import paths The gqlgen tool needs to regenerate the GraphQL schema files after the module path change to use the new v2 imports. Signed-off-by: Luca Muscariello <muscariello@ieee.org> --------- Signed-off-by: Luca Muscariello <muscariello@ieee.org>
174 lines
5.0 KiB
Go
174 lines
5.0 KiB
Go
package common_test
|
|
|
|
import (
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
"testing"
|
|
|
|
notreg "github.com/notaryproject/notation-go/registry"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
|
"zotregistry.dev/zot/v2/pkg/api/config"
|
|
"zotregistry.dev/zot/v2/pkg/common"
|
|
)
|
|
|
|
func TestCommon(t *testing.T) {
|
|
Convey("test Contains()", t, func() {
|
|
first := []string{"apple", "biscuit"}
|
|
So(common.Contains(first, "apple"), ShouldBeTrue)
|
|
So(common.Contains(first, "peach"), ShouldBeFalse)
|
|
So(common.Contains([]string{}, "apple"), ShouldBeFalse)
|
|
})
|
|
|
|
Convey("test MarshalThroughStruct()", t, func() {
|
|
cfg := config.New()
|
|
|
|
newCfg := struct {
|
|
DistSpecVersion string
|
|
}{}
|
|
|
|
_, err := common.MarshalThroughStruct(cfg, &newCfg)
|
|
So(err, ShouldBeNil)
|
|
So(newCfg.DistSpecVersion, ShouldEqual, cfg.DistSpecVersion)
|
|
|
|
// negative
|
|
obj := make(chan int)
|
|
toObj := config.New()
|
|
|
|
_, err = common.MarshalThroughStruct(obj, &toObj)
|
|
So(err, ShouldNotBeNil)
|
|
|
|
_, err = common.MarshalThroughStruct(toObj, &obj)
|
|
So(err, ShouldNotBeNil)
|
|
})
|
|
|
|
Convey("test dirExists()", t, func() {
|
|
exists := common.DirExists("testdir")
|
|
So(exists, ShouldBeFalse)
|
|
|
|
tempDir := t.TempDir()
|
|
|
|
file, err := os.Create(path.Join(tempDir, "file.txt"))
|
|
So(err, ShouldBeNil)
|
|
|
|
isDir := common.DirExists(file.Name())
|
|
So(isDir, ShouldBeFalse)
|
|
})
|
|
|
|
Convey("Index func", t, func() {
|
|
So(common.Index([]string{"a", "b"}, "b"), ShouldEqual, 1)
|
|
So(common.Index([]string{"a", "b"}, "c"), ShouldEqual, -1)
|
|
})
|
|
|
|
Convey("Test ArtifactTypeNotation const has same value as in notaryproject", t, func() {
|
|
So(common.ArtifactTypeNotation, ShouldEqual, notreg.ArtifactTypeNotation)
|
|
})
|
|
|
|
Convey("Test GetLocalIPs", t, func() {
|
|
localIPs, err := common.GetLocalIPs()
|
|
So(err, ShouldBeNil)
|
|
So(localIPs, ShouldNotBeEmpty)
|
|
So(localIPs, ShouldContain, "127.0.0.1")
|
|
})
|
|
|
|
Convey("Test GetLocalSockets IPv4", t, func() {
|
|
localSockets, err := common.GetLocalSockets("8765")
|
|
So(err, ShouldBeNil)
|
|
So(localSockets, ShouldNotBeEmpty)
|
|
So(localSockets, ShouldContain, "127.0.0.1:8765")
|
|
|
|
for _, socket := range localSockets {
|
|
lastColonIndex := strings.LastIndex(socket, ":")
|
|
So(socket[lastColonIndex+1:], ShouldEqual, "8765")
|
|
}
|
|
})
|
|
|
|
Convey("Test GetLocalSockets IPv6", t, func() {
|
|
localSockets, err := common.GetLocalSockets("8766")
|
|
So(err, ShouldBeNil)
|
|
So(localSockets, ShouldNotBeEmpty)
|
|
So(localSockets, ShouldContain, "[::1]:8766")
|
|
|
|
for _, socket := range localSockets {
|
|
lastColonIndex := strings.LastIndex(socket, ":")
|
|
So(socket[lastColonIndex+1:], ShouldEqual, "8766")
|
|
}
|
|
})
|
|
|
|
Convey("Test GetIPFromHostName with valid hostname", t, func() {
|
|
addrs, err := common.GetIPFromHostName("github.com")
|
|
|
|
// we can't check the actual addresses here as they can change
|
|
So(err, ShouldBeNil)
|
|
So(addrs, ShouldNotBeEmpty)
|
|
})
|
|
|
|
Convey("Test GetIPFromHostName with non-existent hostname", t, func() {
|
|
addrs, err := common.GetIPFromHostName("thisdoesnotexist")
|
|
So(err, ShouldNotBeNil)
|
|
So(err.Error(), ShouldContainSubstring, "lookup thisdoesnotexist")
|
|
So(addrs, ShouldBeEmpty)
|
|
})
|
|
|
|
Convey("Test AreSocketsEqual with equal IPv4 sockets", t, func() {
|
|
result, err := common.AreSocketsEqual("127.0.0.1:9000", "127.0.0.1:9000")
|
|
So(err, ShouldBeNil)
|
|
So(result, ShouldBeTrue)
|
|
})
|
|
|
|
Convey("Test AreSocketsEqual with equal IPv6 sockets", t, func() {
|
|
result, err := common.AreSocketsEqual("[::1]:9000", "[0000:0000:0000:0000:0000:0000:0000:0001]:9000")
|
|
So(err, ShouldBeNil)
|
|
So(result, ShouldBeTrue)
|
|
})
|
|
|
|
Convey("Test AreSocketsEqual with different IPv4 socket ports", t, func() {
|
|
result, err := common.AreSocketsEqual("127.0.0.1:9000", "127.0.0.1:9001")
|
|
So(err, ShouldBeNil)
|
|
So(result, ShouldBeFalse)
|
|
})
|
|
|
|
Convey("Test AreSocketsEqual with different IPv4 socket hosts", t, func() {
|
|
result, err := common.AreSocketsEqual("127.0.0.1:9000", "127.0.0.2:9000")
|
|
So(err, ShouldBeNil)
|
|
So(result, ShouldBeFalse)
|
|
})
|
|
|
|
Convey("Test AreSocketsEqual with 2 equal host names", t, func() {
|
|
result, err := common.AreSocketsEqual("localhost:9000", "localhost:9000")
|
|
So(err, ShouldBeNil)
|
|
So(result, ShouldBeTrue)
|
|
})
|
|
|
|
Convey("Test AreSocketsEqual with 2 different host names", t, func() {
|
|
result, err := common.AreSocketsEqual("localhost:9000", "notlocalhost:9000")
|
|
So(err, ShouldBeNil)
|
|
So(result, ShouldBeFalse)
|
|
})
|
|
|
|
Convey("Test AreSocketsEqual with hostname and IP address", t, func() {
|
|
result, err := common.AreSocketsEqual("localhost:9000", "127.0.0.1:9000")
|
|
So(err, ShouldBeNil)
|
|
So(result, ShouldBeFalse)
|
|
})
|
|
|
|
Convey("Test AreSocketsEqual with IP address and hostname", t, func() {
|
|
result, err := common.AreSocketsEqual("127.0.0.1:9000", "localhost:9000")
|
|
So(err, ShouldBeNil)
|
|
So(result, ShouldBeFalse)
|
|
})
|
|
|
|
Convey("Test AreSocketsEqual with invalid first socket", t, func() {
|
|
result, err := common.AreSocketsEqual("127.0.0.1", "localhost:9000")
|
|
So(err, ShouldNotBeNil)
|
|
So(result, ShouldBeFalse)
|
|
})
|
|
|
|
Convey("Test AreSocketsEqual with invalid second socket", t, func() {
|
|
result, err := common.AreSocketsEqual("localhost:9000", "127.0.0.1")
|
|
So(err, ShouldNotBeNil)
|
|
So(result, ShouldBeFalse)
|
|
})
|
|
}
|