github.com/sealerio/sealer@v0.11.1-0.20240507115618-f4f89c5853ae/test/suites/registry/registry.go (about) 1 // Copyright © 2021 Alibaba Group Holding Ltd. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package registry 16 17 import ( 18 "fmt" 19 20 "github.com/sealerio/sealer/test/testhelper" 21 "github.com/sealerio/sealer/test/testhelper/settings" 22 23 "github.com/onsi/gomega" 24 "github.com/onsi/gomega/gbytes" 25 "github.com/onsi/gomega/gexec" 26 ) 27 28 func Login() { 29 sess, err := testhelper.Start(fmt.Sprintf("%s login %s -u %s -p %s", settings.DefaultSealerBin, settings.RegistryURL, 30 settings.RegistryUsername, 31 settings.RegistryPasswd)) 32 33 gomega.Expect(err).NotTo(gomega.HaveOccurred()) 34 gomega.Eventually(sess).Should(gbytes.Say(fmt.Sprintln("Login Succeeded!"))) 35 gomega.Eventually(sess, settings.MaxWaiteTime).Should(gexec.Exit(0)) 36 } 37 38 func Logout() { 39 testhelper.DeleteFileLocally(DefaultRegistryAuthConfigDir()) 40 } 41 42 // DefaultRegistryAuthConfigDir using root privilege to run sealer cmd at e2e test 43 func DefaultRegistryAuthConfigDir() string { 44 return settings.DefaultRegistryAuthFileDir 45 }