245 lines
6.2 KiB
Go
245 lines
6.2 KiB
Go
package exectest
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/Masterminds/semver/v3"
|
|
"helm.sh/helm/v3/pkg/chart"
|
|
|
|
"github.com/helmfile/helmfile/pkg/helmexec"
|
|
)
|
|
|
|
type ListKey struct {
|
|
Filter string
|
|
Flags string
|
|
}
|
|
|
|
func (k ListKey) String() string {
|
|
return fmt.Sprintf("listkey(filter=%s,flags=%s)", k.Filter, k.Flags)
|
|
}
|
|
|
|
type DiffKey struct {
|
|
Name string
|
|
Chart string
|
|
Flags string
|
|
}
|
|
|
|
type Helm struct {
|
|
Charts []string
|
|
Repo []string
|
|
Releases []Release
|
|
Deleted []Release
|
|
Linted []Release
|
|
Templated []Release
|
|
Lists map[ListKey]string
|
|
Diffs map[DiffKey]error
|
|
Diffed []Release
|
|
FailOnUnexpectedDiff bool
|
|
FailOnUnexpectedList bool
|
|
Version *semver.Version
|
|
|
|
UpdateDepsCallbacks map[string]func(string) error
|
|
|
|
DiffMutex *sync.Mutex
|
|
ChartsMutex *sync.Mutex
|
|
ReleasesMutex *sync.Mutex
|
|
|
|
Helm3 bool
|
|
}
|
|
|
|
type Release struct {
|
|
Name string
|
|
Flags []string
|
|
}
|
|
|
|
type Affected struct {
|
|
Upgraded []*Release
|
|
Deleted []*Release
|
|
Failed []*Release
|
|
}
|
|
|
|
func (helm *Helm) UpdateDeps(chart string) error {
|
|
if strings.Contains(chart, "error") {
|
|
return fmt.Errorf("simulated UpdateDeps failure for chart: %s", chart)
|
|
}
|
|
helm.Charts = append(helm.Charts, chart)
|
|
|
|
if helm.UpdateDepsCallbacks != nil {
|
|
callback, exists := helm.UpdateDepsCallbacks[chart]
|
|
if exists {
|
|
if err := callback(chart); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (helm *Helm) BuildDeps(name, chart string, flags ...string) error {
|
|
if strings.Contains(chart, "error") {
|
|
return errors.New("error")
|
|
}
|
|
helm.Charts = append(helm.Charts, chart)
|
|
return nil
|
|
}
|
|
|
|
func (helm *Helm) SetExtraArgs(args ...string) {
|
|
}
|
|
func (helm *Helm) SetHelmBinary(bin string) {
|
|
}
|
|
func (helm *Helm) SetEnableLiveOutput(enableLiveOutput bool) {
|
|
}
|
|
func (helm *Helm) SetDisableForceUpdate(forceUpdate bool) {
|
|
}
|
|
func (helm *Helm) AddRepo(name, repository, cafile, certfile, keyfile, username, password string, managed string, passCredentials string, skipTLSVerify string) error {
|
|
helm.Repo = []string{name, repository, cafile, certfile, keyfile, username, password, managed, passCredentials, skipTLSVerify}
|
|
return nil
|
|
}
|
|
func (helm *Helm) UpdateRepo() error {
|
|
return nil
|
|
}
|
|
func (helm *Helm) RegistryLogin(name string, username string, password string) error {
|
|
return nil
|
|
}
|
|
func (helm *Helm) SyncRelease(context helmexec.HelmContext, name, chart string, flags ...string) error {
|
|
if strings.Contains(name, "error") {
|
|
return errors.New("error")
|
|
}
|
|
helm.sync(helm.ReleasesMutex, func() {
|
|
helm.Releases = append(helm.Releases, Release{Name: name, Flags: flags})
|
|
})
|
|
helm.sync(helm.ChartsMutex, func() {
|
|
helm.Charts = append(helm.Charts, chart)
|
|
})
|
|
|
|
return nil
|
|
}
|
|
func (helm *Helm) DiffRelease(context helmexec.HelmContext, name, chart string, suppressDiff bool, flags ...string) error {
|
|
if helm.DiffMutex != nil {
|
|
helm.DiffMutex.Lock()
|
|
}
|
|
helm.Diffed = append(helm.Diffed, Release{Name: name, Flags: flags})
|
|
if helm.DiffMutex != nil {
|
|
helm.DiffMutex.Unlock()
|
|
}
|
|
|
|
if helm.Diffs == nil {
|
|
return nil
|
|
}
|
|
|
|
key := DiffKey{Name: name, Chart: chart, Flags: strings.Join(flags, "")}
|
|
err, ok := helm.Diffs[key]
|
|
if !ok && helm.FailOnUnexpectedDiff {
|
|
return fmt.Errorf("unexpected diff with key: %v", key)
|
|
}
|
|
return err
|
|
}
|
|
func (helm *Helm) ReleaseStatus(context helmexec.HelmContext, release string, flags ...string) error {
|
|
if strings.Contains(release, "error") {
|
|
return errors.New("error")
|
|
}
|
|
helm.Releases = append(helm.Releases, Release{Name: release, Flags: flags})
|
|
return nil
|
|
}
|
|
func (helm *Helm) DeleteRelease(context helmexec.HelmContext, name string, flags ...string) error {
|
|
if strings.Contains(name, "error") {
|
|
return errors.New("error")
|
|
}
|
|
helm.Deleted = append(helm.Deleted, Release{Name: name, Flags: flags})
|
|
return nil
|
|
}
|
|
func (helm *Helm) List(context helmexec.HelmContext, filter string, flags ...string) (string, error) {
|
|
key := ListKey{Filter: filter, Flags: strings.Join(flags, "")}
|
|
|
|
if helm.Lists == nil {
|
|
return "dummy non-empty helm-list output", nil
|
|
}
|
|
|
|
res, ok := helm.Lists[key]
|
|
if !ok && helm.FailOnUnexpectedList {
|
|
var keys []string
|
|
for k := range helm.Lists {
|
|
keys = append(keys, k.String())
|
|
}
|
|
return "", fmt.Errorf("unexpected list key: %v not found in %v", key, strings.Join(keys, ", "))
|
|
}
|
|
return res, nil
|
|
}
|
|
func (helm *Helm) DecryptSecret(context helmexec.HelmContext, name string, flags ...string) (string, error) {
|
|
return "", nil
|
|
}
|
|
func (helm *Helm) TestRelease(context helmexec.HelmContext, name string, flags ...string) error {
|
|
if strings.Contains(name, "error") {
|
|
return errors.New("error")
|
|
}
|
|
helm.Releases = append(helm.Releases, Release{Name: name, Flags: flags})
|
|
return nil
|
|
}
|
|
func (helm *Helm) Fetch(chart string, flags ...string) error {
|
|
return nil
|
|
}
|
|
func (helm *Helm) Lint(name, chart string, flags ...string) error {
|
|
if strings.Contains(name, "error") {
|
|
return errors.New("error")
|
|
}
|
|
helm.Linted = append(helm.Linted, Release{Name: name, Flags: flags})
|
|
return nil
|
|
}
|
|
func (helm *Helm) TemplateRelease(name, chart string, flags ...string) error {
|
|
if strings.Contains(name, "error") {
|
|
return errors.New("error")
|
|
}
|
|
helm.Templated = append(helm.Templated, Release{Name: name, Flags: flags})
|
|
return nil
|
|
}
|
|
func (helm *Helm) ChartPull(chart string, path string, flags ...string) error {
|
|
return nil
|
|
}
|
|
func (helm *Helm) ChartExport(chart string, path string, flags ...string) error {
|
|
return nil
|
|
}
|
|
func (helm *Helm) IsHelm3() bool {
|
|
if helm.Version == nil {
|
|
return helm.Helm3
|
|
}
|
|
return helm.Version.Major() == 3
|
|
}
|
|
|
|
func (helm *Helm) GetVersion() helmexec.Version {
|
|
return helmexec.Version{
|
|
Major: int(helm.Version.Major()),
|
|
Minor: int(helm.Version.Minor()),
|
|
Patch: int(helm.Version.Patch()),
|
|
}
|
|
}
|
|
|
|
func (helm *Helm) IsVersionAtLeast(versionStr string) bool {
|
|
if helm.Version == nil {
|
|
return false
|
|
}
|
|
|
|
ver := semver.MustParse(versionStr)
|
|
return helm.Version.Equal(ver) || helm.Version.GreaterThan(ver)
|
|
}
|
|
|
|
func (helm *Helm) sync(m *sync.Mutex, f func()) {
|
|
if m != nil {
|
|
m.Lock()
|
|
defer m.Unlock()
|
|
}
|
|
|
|
f()
|
|
}
|
|
|
|
func (helm *Helm) ShowChart(chartPath string) (chart.Metadata, error) {
|
|
switch chartPath {
|
|
case "../../foo-bar":
|
|
return chart.Metadata{Version: "3.2.0"}, nil
|
|
default:
|
|
return chart.Metadata{}, errors.New("fake test error")
|
|
}
|
|
}
|