2022-04-27 01:00:20 -05:00
|
|
|
//go:build ui_base && needprivileges
|
|
|
|
// +build ui_base,needprivileges
|
2022-03-15 09:34:39 -05:00
|
|
|
|
|
|
|
package cli //nolint:testpackage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
"crypto/x509"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
|
"gopkg.in/resty.v1"
|
|
|
|
"zotregistry.io/zot/pkg/api"
|
|
|
|
"zotregistry.io/zot/pkg/api/config"
|
2022-02-24 15:31:36 -05:00
|
|
|
"zotregistry.io/zot/pkg/api/constants"
|
2022-03-15 09:34:39 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestElevatedPrivilegesTLSNewControllerPrivilegedCert(t *testing.T) {
|
|
|
|
Convey("Privileged certs - Make a new controller", t, func() {
|
|
|
|
cmd := exec.Command("mkdir", "-p", "/etc/containers/certs.d/127.0.0.1:8089/") // nolint: gosec
|
|
|
|
_, err := cmd.Output()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer exec.Command("rm", "-rf", "/etc/containers/certs.d/127.0.0.1:8089/")
|
|
|
|
|
|
|
|
wd, _ := os.Getwd()
|
|
|
|
os.Chdir("../../test/data")
|
|
|
|
|
|
|
|
clientGlob, _ := filepath.Glob("client.*")
|
|
|
|
caGlob, _ := filepath.Glob("ca.*")
|
|
|
|
|
|
|
|
for _, file := range clientGlob {
|
|
|
|
cmd = exec.Command("cp", file, "/etc/containers/certs.d/127.0.0.1:8089/")
|
|
|
|
res, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
panic(string(res))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, file := range caGlob {
|
|
|
|
cmd = exec.Command("cp", file, "/etc/containers/certs.d/127.0.0.1:8089/")
|
|
|
|
res, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
panic(string(res))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allGlob, _ := filepath.Glob("/etc/containers/certs.d/127.0.0.1:8089/*.key")
|
|
|
|
|
|
|
|
for _, file := range allGlob {
|
|
|
|
cmd = exec.Command("chmod", "a=rwx", file)
|
|
|
|
res, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
panic(string(res))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
os.Chdir(wd)
|
|
|
|
|
2022-09-02 07:56:02 -05:00
|
|
|
caCert, err := os.ReadFile(CACert)
|
2022-03-15 09:34:39 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
caCertPool := x509.NewCertPool()
|
|
|
|
caCertPool.AppendCertsFromPEM(caCert)
|
|
|
|
|
|
|
|
resty.SetTLSClientConfig(&tls.Config{RootCAs: caCertPool, MinVersion: tls.VersionTLS12})
|
|
|
|
defer func() { resty.SetTLSClientConfig(nil) }()
|
|
|
|
conf := config.New()
|
|
|
|
conf.HTTP.Port = SecurePort2
|
|
|
|
conf.HTTP.TLS = &config.TLSConfig{
|
|
|
|
Cert: ServerCert,
|
|
|
|
Key: ServerKey,
|
|
|
|
CACert: CACert,
|
|
|
|
}
|
|
|
|
|
|
|
|
ctlr := api.NewController(conf)
|
|
|
|
ctlr.Config.Storage.RootDirectory = t.TempDir()
|
|
|
|
go func() {
|
|
|
|
// this blocks
|
|
|
|
if err := ctlr.Run(context.Background()); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// wait till ready
|
|
|
|
for {
|
|
|
|
_, err := resty.R().Get(BaseURL2)
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
ctx := context.Background()
|
|
|
|
_ = ctlr.Server.Shutdown(ctx)
|
|
|
|
}()
|
|
|
|
|
|
|
|
Convey("Certs in privileged path", func() {
|
|
|
|
configPath := makeConfigFile(
|
2022-02-24 15:31:36 -05:00
|
|
|
fmt.Sprintf(`{"configs":[{"_name":"imagetest","url":"%s%s%s","showspinner":false}]}`,
|
|
|
|
BaseSecureURL2, constants.RoutePrefix, constants.ExtCatalogPrefix))
|
2022-03-15 09:34:39 -05:00
|
|
|
defer os.Remove(configPath)
|
|
|
|
|
|
|
|
args := []string{"imagetest"}
|
|
|
|
imageCmd := NewImageCommand(new(searchService))
|
|
|
|
imageBuff := bytes.NewBufferString("")
|
|
|
|
imageCmd.SetOut(imageBuff)
|
|
|
|
imageCmd.SetErr(imageBuff)
|
|
|
|
imageCmd.SetArgs(args)
|
|
|
|
err := imageCmd.Execute()
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|