Compare commits
	
		
			1 Commits
		
	
	
		
			0.9.0-beta
			...
			env-modifi
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| ea0c052c1e | 
| @ -29,7 +29,7 @@ steps: | |||||||
|       event: tag |       event: tag | ||||||
|  |  | ||||||
|   - name: release |   - name: release | ||||||
|     image: goreleaser/goreleaser:v1.24.0 |     image: goreleaser/goreleaser:v1.18.2 | ||||||
|     environment: |     environment: | ||||||
|       GITEA_TOKEN: |       GITEA_TOKEN: | ||||||
|         from_secret: goreleaser_gitea_token |         from_secret: goreleaser_gitea_token | ||||||
|  | |||||||
| @ -51,6 +51,12 @@ builds: | |||||||
|       - "-X 'main.Commit={{ .Commit }}'" |       - "-X 'main.Commit={{ .Commit }}'" | ||||||
|       - "-X 'main.Version={{ .Version }}'" |       - "-X 'main.Version={{ .Version }}'" | ||||||
|  |  | ||||||
|  | archives: | ||||||
|  |   - replacements: | ||||||
|  |       386: i386 | ||||||
|  |       amd64: x86_64 | ||||||
|  |     format: binary | ||||||
|  |  | ||||||
| checksum: | checksum: | ||||||
|   name_template: "checksums.txt" |   name_template: "checksums.txt" | ||||||
|  |  | ||||||
|  | |||||||
							
								
								
									
										360
									
								
								cli/app/cp.go
									
									
									
									
									
								
							
							
						
						
									
										360
									
								
								cli/app/cp.go
									
									
									
									
									
								
							| @ -2,24 +2,19 @@ package app | |||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| 	"errors" |  | ||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"io" |  | ||||||
| 	"os" | 	"os" | ||||||
| 	"path" |  | ||||||
| 	"path/filepath" |  | ||||||
| 	"strings" | 	"strings" | ||||||
|  |  | ||||||
| 	"coopcloud.tech/abra/cli/internal" | 	"coopcloud.tech/abra/cli/internal" | ||||||
| 	"coopcloud.tech/abra/pkg/autocomplete" | 	"coopcloud.tech/abra/pkg/autocomplete" | ||||||
| 	"coopcloud.tech/abra/pkg/client" | 	"coopcloud.tech/abra/pkg/client" | ||||||
| 	containerPkg "coopcloud.tech/abra/pkg/container" | 	"coopcloud.tech/abra/pkg/config" | ||||||
|  | 	"coopcloud.tech/abra/pkg/container" | ||||||
| 	"coopcloud.tech/abra/pkg/formatter" | 	"coopcloud.tech/abra/pkg/formatter" | ||||||
| 	"coopcloud.tech/abra/pkg/upstream/container" |  | ||||||
| 	"github.com/docker/cli/cli/command" |  | ||||||
| 	"github.com/docker/docker/api/types" | 	"github.com/docker/docker/api/types" | ||||||
|  | 	"github.com/docker/docker/api/types/filters" | ||||||
| 	dockerClient "github.com/docker/docker/client" | 	dockerClient "github.com/docker/docker/client" | ||||||
| 	"github.com/docker/docker/errdefs" |  | ||||||
| 	"github.com/docker/docker/pkg/archive" | 	"github.com/docker/docker/pkg/archive" | ||||||
| 	"github.com/sirupsen/logrus" | 	"github.com/sirupsen/logrus" | ||||||
| 	"github.com/urfave/cli" | 	"github.com/urfave/cli" | ||||||
| @ -54,14 +49,46 @@ And if you want to copy that file back to your current working directory locally | |||||||
| 		dst := c.Args().Get(2) | 		dst := c.Args().Get(2) | ||||||
| 		if src == "" { | 		if src == "" { | ||||||
| 			logrus.Fatal("missing <src> argument") | 			logrus.Fatal("missing <src> argument") | ||||||
| 		} | 		} else if dst == "" { | ||||||
| 		if dst == "" { |  | ||||||
| 			logrus.Fatal("missing <dest> argument") | 			logrus.Fatal("missing <dest> argument") | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		srcPath, dstPath, service, toContainer, err := parseSrcAndDst(src, dst) | 		parsedSrc := strings.SplitN(src, ":", 2) | ||||||
| 		if err != nil { | 		parsedDst := strings.SplitN(dst, ":", 2) | ||||||
| 			logrus.Fatal(err) | 		errorMsg := "one of <src>/<dest> arguments must take $SERVICE:$PATH form" | ||||||
|  | 		if len(parsedSrc) == 2 && len(parsedDst) == 2 { | ||||||
|  | 			logrus.Fatal(errorMsg) | ||||||
|  | 		} else if len(parsedSrc) != 2 { | ||||||
|  | 			if len(parsedDst) != 2 { | ||||||
|  | 				logrus.Fatal(errorMsg) | ||||||
|  | 			} | ||||||
|  | 		} else if len(parsedDst) != 2 { | ||||||
|  | 			if len(parsedSrc) != 2 { | ||||||
|  | 				logrus.Fatal(errorMsg) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		var service string | ||||||
|  | 		var srcPath string | ||||||
|  | 		var dstPath string | ||||||
|  | 		isToContainer := false // <container:src> <dst> | ||||||
|  | 		if len(parsedSrc) == 2 { | ||||||
|  | 			service = parsedSrc[0] | ||||||
|  | 			srcPath = parsedSrc[1] | ||||||
|  | 			dstPath = dst | ||||||
|  | 			logrus.Debugf("assuming transfer is coming FROM the container") | ||||||
|  | 		} else if len(parsedDst) == 2 { | ||||||
|  | 			service = parsedDst[0] | ||||||
|  | 			dstPath = parsedDst[1] | ||||||
|  | 			srcPath = src | ||||||
|  | 			isToContainer = true // <src> <container:dst> | ||||||
|  | 			logrus.Debugf("assuming transfer is going TO the container") | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		if isToContainer { | ||||||
|  | 			if _, err := os.Stat(srcPath); os.IsNotExist(err) { | ||||||
|  | 				logrus.Fatalf("%s does not exist locally?", srcPath) | ||||||
|  | 			} | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		cl, err := client.New(app.Server) | 		cl, err := client.New(app.Server) | ||||||
| @ -69,18 +96,7 @@ And if you want to copy that file back to your current working directory locally | |||||||
| 			logrus.Fatal(err) | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		container, err := containerPkg.GetContainerFromStackAndService(cl, app.StackName(), service) | 		if err := configureAndCp(c, cl, app, srcPath, dstPath, service, isToContainer); err != nil { | ||||||
| 		if err != nil { |  | ||||||
| 			logrus.Fatal(err) |  | ||||||
| 		} |  | ||||||
| 		logrus.Debugf("retrieved %s as target container on %s", formatter.ShortenID(container.ID), app.Server) |  | ||||||
|  |  | ||||||
| 		if toContainer { |  | ||||||
| 			err = copyToContainer(cl, container.ID, srcPath, dstPath) |  | ||||||
| 		} else { |  | ||||||
| 			err = copyFromContainer(cl, container.ID, srcPath, dstPath) |  | ||||||
| 		} |  | ||||||
| 		if err != nil { |  | ||||||
| 			logrus.Fatal(err) | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| @ -88,292 +104,46 @@ And if you want to copy that file back to your current working directory locally | |||||||
| 	}, | 	}, | ||||||
| } | } | ||||||
|  |  | ||||||
| var errServiceMissing = errors.New("one of <src>/<dest> arguments must take $SERVICE:$PATH form") | func configureAndCp( | ||||||
|  | 	c *cli.Context, | ||||||
|  | 	cl *dockerClient.Client, | ||||||
|  | 	app config.App, | ||||||
|  | 	srcPath string, | ||||||
|  | 	dstPath string, | ||||||
|  | 	service string, | ||||||
|  | 	isToContainer bool) error { | ||||||
|  | 	filters := filters.NewArgs() | ||||||
|  | 	filters.Add("name", fmt.Sprintf("^%s_%s", app.StackName(), service)) | ||||||
|  |  | ||||||
| // parseSrcAndDst parses src and dest string. One of src or dst must be of the form $SERVICE:$PATH | 	container, err := container.GetContainer(context.Background(), cl, filters, internal.NoInput) | ||||||
| func parseSrcAndDst(src, dst string) (srcPath string, dstPath string, service string, toContainer bool, err error) { |  | ||||||
| 	parsedSrc := strings.SplitN(src, ":", 2) |  | ||||||
| 	parsedDst := strings.SplitN(dst, ":", 2) |  | ||||||
| 	if len(parsedSrc)+len(parsedDst) != 3 { |  | ||||||
| 		return "", "", "", false, errServiceMissing |  | ||||||
| 	} |  | ||||||
| 	if len(parsedSrc) == 2 { |  | ||||||
| 		return parsedSrc[1], dst, parsedSrc[0], false, nil |  | ||||||
| 	} |  | ||||||
| 	if len(parsedDst) == 2 { |  | ||||||
| 		return src, parsedDst[1], parsedDst[0], true, nil |  | ||||||
| 	} |  | ||||||
| 	return "", "", "", false, errServiceMissing |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // copyToContainer copies a file or directory from the local file system to the container. |  | ||||||
| // See the possible copy modes and their documentation. |  | ||||||
| func copyToContainer(cl *dockerClient.Client, containerID, srcPath, dstPath string) error { |  | ||||||
| 	srcStat, err := os.Stat(srcPath) |  | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return fmt.Errorf("local %s ", err) | 		logrus.Fatal(err) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	dstStat, err := cl.ContainerStatPath(context.Background(), containerID, dstPath) | 	logrus.Debugf("retrieved %s as target container on %s", formatter.ShortenID(container.ID), app.Server) | ||||||
| 	dstExists := true |  | ||||||
| 	if err != nil { |  | ||||||
| 		if errdefs.IsNotFound(err) { |  | ||||||
| 			dstExists = false |  | ||||||
| 		} else { |  | ||||||
| 			return fmt.Errorf("remote path: %s", err) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	mode, err := copyMode(srcPath, dstPath, srcStat.Mode(), dstStat.Mode, dstExists) | 	if isToContainer { | ||||||
| 	if err != nil { | 		toTarOpts := &archive.TarOptions{NoOverwriteDirNonDir: true, Compression: archive.Gzip} | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
| 	movePath := "" |  | ||||||
| 	switch mode { |  | ||||||
| 	case CopyModeDirToDir: |  | ||||||
| 		// Add the src directory to the destination path |  | ||||||
| 		_, srcDir := path.Split(srcPath) |  | ||||||
| 		dstPath = path.Join(dstPath, srcDir) |  | ||||||
|  |  | ||||||
| 		// Make sure the dst directory exits. |  | ||||||
| 		dcli, err := command.NewDockerCli() |  | ||||||
| 		if err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 		if err := container.RunExec(dcli, cl, containerID, &types.ExecConfig{ |  | ||||||
| 			AttachStderr: true, |  | ||||||
| 			AttachStdin:  true, |  | ||||||
| 			AttachStdout: true, |  | ||||||
| 			Cmd:          []string{"mkdir", "-p", dstPath}, |  | ||||||
| 			Detach:       false, |  | ||||||
| 			Tty:          true, |  | ||||||
| 		}); err != nil { |  | ||||||
| 			return fmt.Errorf("create remote directory: %s", err) |  | ||||||
| 		} |  | ||||||
| 	case CopyModeFileToFile: |  | ||||||
| 		// Remove the file component from the path, since docker can only copy |  | ||||||
| 		// to a directory. |  | ||||||
| 		dstPath, _ = path.Split(dstPath) |  | ||||||
| 	case CopyModeFileToFileRename: |  | ||||||
| 		// Copy the file to the temp directory and move it to its dstPath |  | ||||||
| 		// afterwards. |  | ||||||
| 		movePath = dstPath |  | ||||||
| 		dstPath = "/tmp" |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	toTarOpts := &archive.TarOptions{IncludeSourceDir: true, NoOverwriteDirNonDir: true, Compression: archive.Gzip} |  | ||||||
| 		content, err := archive.TarWithOptions(srcPath, toTarOpts) | 		content, err := archive.TarWithOptions(srcPath, toTarOpts) | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 		return err | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 	logrus.Debugf("copy %s from local to %s on container", srcPath, dstPath) |  | ||||||
| 		copyOpts := types.CopyToContainerOptions{AllowOverwriteDirWithFile: false, CopyUIDGID: false} | 		copyOpts := types.CopyToContainerOptions{AllowOverwriteDirWithFile: false, CopyUIDGID: false} | ||||||
| 	if err := cl.CopyToContainer(context.Background(), containerID, dstPath, content, copyOpts); err != nil { | 		if err := cl.CopyToContainer(context.Background(), container.ID, dstPath, content, copyOpts); err != nil { | ||||||
| 		return err | 			logrus.Fatal(err) | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if movePath != "" { |  | ||||||
| 		_, srcFile := path.Split(srcPath) |  | ||||||
| 		dcli, err := command.NewDockerCli() |  | ||||||
| 		if err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 		if err := container.RunExec(dcli, cl, containerID, &types.ExecConfig{ |  | ||||||
| 			AttachStderr: true, |  | ||||||
| 			AttachStdin:  true, |  | ||||||
| 			AttachStdout: true, |  | ||||||
| 			Cmd:          []string{"mv", path.Join("/tmp", srcFile), movePath}, |  | ||||||
| 			Detach:       false, |  | ||||||
| 			Tty:          true, |  | ||||||
| 		}); err != nil { |  | ||||||
| 			return fmt.Errorf("create remote directory: %s", err) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // copyFromContainer copies a file or directory from the given container to the local file system. |  | ||||||
| // See the possible copy modes and their documentation. |  | ||||||
| func copyFromContainer(cl *dockerClient.Client, containerID, srcPath, dstPath string) error { |  | ||||||
| 	srcStat, err := cl.ContainerStatPath(context.Background(), containerID, srcPath) |  | ||||||
| 	if err != nil { |  | ||||||
| 		if errdefs.IsNotFound(err) { |  | ||||||
| 			return fmt.Errorf("remote: %s does not exist", srcPath) |  | ||||||
| 		} else { |  | ||||||
| 			return fmt.Errorf("remote path: %s", err) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	dstStat, err := os.Stat(dstPath) |  | ||||||
| 	dstExists := true |  | ||||||
| 	var dstMode os.FileMode |  | ||||||
| 	if err != nil { |  | ||||||
| 		if os.IsNotExist(err) { |  | ||||||
| 			dstExists = false |  | ||||||
| 		} else { |  | ||||||
| 			return fmt.Errorf("remote path: %s", err) |  | ||||||
| 		} | 		} | ||||||
| 	} else { | 	} else { | ||||||
| 		dstMode = dstStat.Mode() | 		content, _, err := cl.CopyFromContainer(context.Background(), container.ID, srcPath) | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	mode, err := copyMode(srcPath, dstPath, srcStat.Mode, dstMode, dstExists) |  | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 		return err | 			logrus.Fatal(err) | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	moveDstDir := "" |  | ||||||
| 	moveDstFile := "" |  | ||||||
| 	switch mode { |  | ||||||
| 	case CopyModeFileToFile: |  | ||||||
| 		// Remove the file component from the path, since docker can only copy |  | ||||||
| 		// to a directory. |  | ||||||
| 		dstPath, _ = path.Split(dstPath) |  | ||||||
| 	case CopyModeFileToFileRename: |  | ||||||
| 		// Copy the file to the temp directory and move it to its dstPath |  | ||||||
| 		// afterwards. |  | ||||||
| 		moveDstFile = dstPath |  | ||||||
| 		dstPath = "/tmp" |  | ||||||
| 	case CopyModeFilesToDir: |  | ||||||
| 		// Copy the directory to the temp directory and move it to its |  | ||||||
| 		// dstPath afterwards. |  | ||||||
| 		moveDstDir = path.Join(dstPath, "/") |  | ||||||
| 		dstPath = "/tmp" |  | ||||||
|  |  | ||||||
| 		// Make sure the temp directory always gets removed |  | ||||||
| 		defer os.Remove(path.Join("/tmp")) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	content, _, err := cl.CopyFromContainer(context.Background(), containerID, srcPath) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return fmt.Errorf("copy: %s", err) |  | ||||||
| 		} | 		} | ||||||
| 		defer content.Close() | 		defer content.Close() | ||||||
| 	if err := archive.Untar(content, dstPath, &archive.TarOptions{ | 		fromTarOpts := &archive.TarOptions{NoOverwriteDirNonDir: true, Compression: archive.Gzip} | ||||||
| 		NoOverwriteDirNonDir: true, | 		if err := archive.Untar(content, dstPath, fromTarOpts); err != nil { | ||||||
| 		Compression:          archive.Gzip, | 			logrus.Fatal(err) | ||||||
| 		NoLchown:             true, | 		} | ||||||
| 	}); err != nil { |  | ||||||
| 		return fmt.Errorf("untar: %s", err) |  | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if moveDstFile != "" { |  | ||||||
| 		_, srcFile := path.Split(strings.TrimSuffix(srcPath, "/")) |  | ||||||
| 		if err := moveFile(path.Join("/tmp", srcFile), moveDstFile); err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	if moveDstDir != "" { |  | ||||||
| 		_, srcDir := path.Split(strings.TrimSuffix(srcPath, "/")) |  | ||||||
| 		if err := moveDir(path.Join("/tmp", srcDir), moveDstDir); err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| var ( |  | ||||||
| 	ErrCopyDirToFile  = fmt.Errorf("can't copy dir to file") |  | ||||||
| 	ErrDstDirNotExist = fmt.Errorf("destination directory does not exist") |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type CopyMode int |  | ||||||
|  |  | ||||||
| const ( |  | ||||||
| 	// Copy a src file to a dest file. The src and dest file names are the same. |  | ||||||
| 	//  <dir_src>/<file> + <dir_dst>/<file> -> <dir_dst>/<file> |  | ||||||
| 	CopyModeFileToFile = CopyMode(iota) |  | ||||||
| 	// Copy a src file to a dest file. The src and dest file names are  not the same. |  | ||||||
| 	//  <dir_src>/<file_src> + <dir_dst>/<file_dst> -> <dir_dst>/<file_dst> |  | ||||||
| 	CopyModeFileToFileRename |  | ||||||
| 	// Copy a src file to dest directory. The dest file gets created in the dest |  | ||||||
| 	// folder with the src filename. |  | ||||||
| 	//  <dir_src>/<file> + <dir_dst> -> <dir_dst>/<file> |  | ||||||
| 	CopyModeFileToDir |  | ||||||
| 	// Copy a src directory to dest directory. |  | ||||||
| 	//  <dir_src> + <dir_dst> -> <dir_dst>/<dir_src> |  | ||||||
| 	CopyModeDirToDir |  | ||||||
| 	// Copy all files in the src directory to the dest directory. This works recursively. |  | ||||||
| 	//  <dir_src>/ + <dir_dst> -> <dir_dst>/<files_from_dir_src> |  | ||||||
| 	CopyModeFilesToDir |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // copyMode takes a src and dest path and file mode to determine the copy mode. |  | ||||||
| // See the possible copy modes and their documentation. |  | ||||||
| func copyMode(srcPath, dstPath string, srcMode os.FileMode, dstMode os.FileMode, dstExists bool) (CopyMode, error) { |  | ||||||
| 	_, srcFile := path.Split(srcPath) |  | ||||||
| 	_, dstFile := path.Split(dstPath) |  | ||||||
| 	if srcMode.IsDir() { |  | ||||||
| 		if !dstExists { |  | ||||||
| 			return -1, ErrDstDirNotExist |  | ||||||
| 		} |  | ||||||
| 		if dstMode.IsDir() { |  | ||||||
| 			if strings.HasSuffix(srcPath, "/") { |  | ||||||
| 				return CopyModeFilesToDir, nil |  | ||||||
| 			} |  | ||||||
| 			return CopyModeDirToDir, nil |  | ||||||
| 		} |  | ||||||
| 		return -1, ErrCopyDirToFile |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if dstMode.IsDir() { |  | ||||||
| 		return CopyModeFileToDir, nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if srcFile != dstFile { |  | ||||||
| 		return CopyModeFileToFileRename, nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return CopyModeFileToFile, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // moveDir moves all files from a source path to the destination path recursively. |  | ||||||
| func moveDir(sourcePath, destPath string) error { |  | ||||||
| 	return filepath.Walk(sourcePath, func(p string, info os.FileInfo, err error) error { |  | ||||||
| 		if err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 		newPath := path.Join(destPath, strings.TrimPrefix(p, sourcePath)) |  | ||||||
| 		if info.IsDir() { |  | ||||||
| 			err := os.Mkdir(newPath, info.Mode()) |  | ||||||
| 			if err != nil { |  | ||||||
| 				if os.IsExist(err) { |  | ||||||
| 					return nil |  | ||||||
| 				} |  | ||||||
| 				return err |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
| 		if info.Mode().IsRegular() { |  | ||||||
| 			return moveFile(p, newPath) |  | ||||||
| 		} |  | ||||||
| 		return nil |  | ||||||
| 	}) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // moveFile moves a file from a source path to a destination path. |  | ||||||
| func moveFile(sourcePath, destPath string) error { |  | ||||||
| 	inputFile, err := os.Open(sourcePath) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
| 	outputFile, err := os.Create(destPath) |  | ||||||
| 	if err != nil { |  | ||||||
| 		inputFile.Close() |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
| 	defer outputFile.Close() |  | ||||||
| 	_, err = io.Copy(outputFile, inputFile) |  | ||||||
| 	inputFile.Close() |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// Remove file after succesfull copy. |  | ||||||
| 	err = os.Remove(sourcePath) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  | |||||||
| @ -1,113 +0,0 @@ | |||||||
| package app |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"os" |  | ||||||
| 	"testing" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func TestParse(t *testing.T) { |  | ||||||
| 	tests := []struct { |  | ||||||
| 		src         string |  | ||||||
| 		dst         string |  | ||||||
| 		srcPath     string |  | ||||||
| 		dstPath     string |  | ||||||
| 		service     string |  | ||||||
| 		toContainer bool |  | ||||||
| 		err         error |  | ||||||
| 	}{ |  | ||||||
| 		{src: "foo", dst: "bar", err: errServiceMissing}, |  | ||||||
| 		{src: "app:foo", dst: "app:bar", err: errServiceMissing}, |  | ||||||
| 		{src: "app:foo", dst: "bar", srcPath: "foo", dstPath: "bar", service: "app", toContainer: false}, |  | ||||||
| 		{src: "foo", dst: "app:bar", srcPath: "foo", dstPath: "bar", service: "app", toContainer: true}, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for i, tc := range tests { |  | ||||||
| 		srcPath, dstPath, service, toContainer, err := parseSrcAndDst(tc.src, tc.dst) |  | ||||||
| 		if srcPath != tc.srcPath { |  | ||||||
| 			t.Errorf("[%d] srcPath: want (%s), got(%s)", i, tc.srcPath, srcPath) |  | ||||||
| 		} |  | ||||||
| 		if dstPath != tc.dstPath { |  | ||||||
| 			t.Errorf("[%d] dstPath: want (%s), got(%s)", i, tc.dstPath, dstPath) |  | ||||||
| 		} |  | ||||||
| 		if service != tc.service { |  | ||||||
| 			t.Errorf("[%d] service: want (%s), got(%s)", i, tc.service, service) |  | ||||||
| 		} |  | ||||||
| 		if toContainer != tc.toContainer { |  | ||||||
| 			t.Errorf("[%d] toConainer: want (%t), got(%t)", i, tc.toContainer, toContainer) |  | ||||||
| 		} |  | ||||||
| 		if err == nil && tc.err != nil && err.Error() != tc.err.Error() { |  | ||||||
| 			t.Errorf("[%d] err: want (%s), got(%s)", i, tc.err, err) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestCopyMode(t *testing.T) { |  | ||||||
| 	tests := []struct { |  | ||||||
| 		srcPath   string |  | ||||||
| 		dstPath   string |  | ||||||
| 		srcMode   os.FileMode |  | ||||||
| 		dstMode   os.FileMode |  | ||||||
| 		dstExists bool |  | ||||||
| 		mode      CopyMode |  | ||||||
| 		err       error |  | ||||||
| 	}{ |  | ||||||
| 		{ |  | ||||||
| 			srcPath:   "foo.txt", |  | ||||||
| 			dstPath:   "foo.txt", |  | ||||||
| 			srcMode:   os.ModePerm, |  | ||||||
| 			dstMode:   os.ModePerm, |  | ||||||
| 			dstExists: true, |  | ||||||
| 			mode:      CopyModeFileToFile, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			srcPath:   "foo.txt", |  | ||||||
| 			dstPath:   "bar.txt", |  | ||||||
| 			srcMode:   os.ModePerm, |  | ||||||
| 			dstExists: true, |  | ||||||
| 			mode:      CopyModeFileToFileRename, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			srcPath:   "foo", |  | ||||||
| 			dstPath:   "foo", |  | ||||||
| 			srcMode:   os.ModeDir, |  | ||||||
| 			dstMode:   os.ModeDir, |  | ||||||
| 			dstExists: true, |  | ||||||
| 			mode:      CopyModeDirToDir, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			srcPath:   "foo/", |  | ||||||
| 			dstPath:   "foo", |  | ||||||
| 			srcMode:   os.ModeDir, |  | ||||||
| 			dstMode:   os.ModeDir, |  | ||||||
| 			dstExists: true, |  | ||||||
| 			mode:      CopyModeFilesToDir, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			srcPath:   "foo", |  | ||||||
| 			dstPath:   "foo", |  | ||||||
| 			srcMode:   os.ModeDir, |  | ||||||
| 			dstExists: false, |  | ||||||
| 			mode:      -1, |  | ||||||
| 			err:       ErrDstDirNotExist, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			srcPath:   "foo", |  | ||||||
| 			dstPath:   "foo", |  | ||||||
| 			srcMode:   os.ModeDir, |  | ||||||
| 			dstMode:   os.ModePerm, |  | ||||||
| 			dstExists: true, |  | ||||||
| 			mode:      -1, |  | ||||||
| 			err:       ErrCopyDirToFile, |  | ||||||
| 		}, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for i, tc := range tests { |  | ||||||
| 		mode, err := copyMode(tc.srcPath, tc.dstPath, tc.srcMode, tc.dstMode, tc.dstExists) |  | ||||||
| 		if mode != tc.mode { |  | ||||||
| 			t.Errorf("[%d] mode: want (%d), got(%d)", i, tc.mode, mode) |  | ||||||
| 		} |  | ||||||
| 		if err != tc.err { |  | ||||||
| 			t.Errorf("[%d] err: want (%s), got(%s)", i, tc.err, err) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
							
								
								
									
										131
									
								
								cli/app/logs.go
									
									
									
									
									
								
							
							
						
						
									
										131
									
								
								cli/app/logs.go
									
									
									
									
									
								
							| @ -2,26 +2,75 @@ package app | |||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
|  | 	"fmt" | ||||||
| 	"io" | 	"io" | ||||||
| 	"os" | 	"os" | ||||||
| 	"slices" |  | ||||||
| 	"sync" | 	"sync" | ||||||
| 	"time" |  | ||||||
|  |  | ||||||
| 	"coopcloud.tech/abra/cli/internal" | 	"coopcloud.tech/abra/cli/internal" | ||||||
| 	"coopcloud.tech/abra/pkg/autocomplete" | 	"coopcloud.tech/abra/pkg/autocomplete" | ||||||
| 	"coopcloud.tech/abra/pkg/client" | 	"coopcloud.tech/abra/pkg/client" | ||||||
| 	"coopcloud.tech/abra/pkg/config" | 	"coopcloud.tech/abra/pkg/config" | ||||||
| 	"coopcloud.tech/abra/pkg/recipe" | 	"coopcloud.tech/abra/pkg/recipe" | ||||||
|  | 	"coopcloud.tech/abra/pkg/service" | ||||||
| 	"coopcloud.tech/abra/pkg/upstream/stack" | 	"coopcloud.tech/abra/pkg/upstream/stack" | ||||||
| 	"github.com/docker/docker/api/types" | 	"github.com/docker/docker/api/types" | ||||||
| 	"github.com/docker/docker/api/types/filters" | 	"github.com/docker/docker/api/types/filters" | ||||||
| 	"github.com/docker/docker/api/types/swarm" |  | ||||||
| 	dockerClient "github.com/docker/docker/client" | 	dockerClient "github.com/docker/docker/client" | ||||||
| 	"github.com/sirupsen/logrus" | 	"github.com/sirupsen/logrus" | ||||||
| 	"github.com/urfave/cli" | 	"github.com/urfave/cli" | ||||||
| ) | ) | ||||||
|  |  | ||||||
|  | var logOpts = types.ContainerLogsOptions{ | ||||||
|  | 	ShowStderr: true, | ||||||
|  | 	ShowStdout: true, | ||||||
|  | 	Since:      "", | ||||||
|  | 	Until:      "", | ||||||
|  | 	Timestamps: true, | ||||||
|  | 	Follow:     true, | ||||||
|  | 	Tail:       "20", | ||||||
|  | 	Details:    false, | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // stackLogs lists logs for all stack services | ||||||
|  | func stackLogs(c *cli.Context, app config.App, client *dockerClient.Client) { | ||||||
|  | 	filters, err := app.Filters(true, false) | ||||||
|  | 	if err != nil { | ||||||
|  | 		logrus.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	serviceOpts := types.ServiceListOptions{Filters: filters} | ||||||
|  | 	services, err := client.ServiceList(context.Background(), serviceOpts) | ||||||
|  | 	if err != nil { | ||||||
|  | 		logrus.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	var wg sync.WaitGroup | ||||||
|  | 	for _, service := range services { | ||||||
|  | 		wg.Add(1) | ||||||
|  | 		go func(s string) { | ||||||
|  | 			if internal.StdErrOnly { | ||||||
|  | 				logOpts.ShowStdout = false | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			logs, err := client.ServiceLogs(context.Background(), s, logOpts) | ||||||
|  | 			if err != nil { | ||||||
|  | 				logrus.Fatal(err) | ||||||
|  | 			} | ||||||
|  | 			defer logs.Close() | ||||||
|  |  | ||||||
|  | 			_, err = io.Copy(os.Stdout, logs) | ||||||
|  | 			if err != nil && err != io.EOF { | ||||||
|  | 				logrus.Fatal(err) | ||||||
|  | 			} | ||||||
|  | 		}(service.ID) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	wg.Wait() | ||||||
|  |  | ||||||
|  | 	os.Exit(0) | ||||||
|  | } | ||||||
|  |  | ||||||
| var appLogsCommand = cli.Command{ | var appLogsCommand = cli.Command{ | ||||||
| 	Name:      "logs", | 	Name:      "logs", | ||||||
| 	Aliases:   []string{"l"}, | 	Aliases:   []string{"l"}, | ||||||
| @ -56,70 +105,37 @@ var appLogsCommand = cli.Command{ | |||||||
| 			logrus.Fatalf("%s is not deployed?", app.Name) | 			logrus.Fatalf("%s is not deployed?", app.Name) | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
|  | 		logOpts.Since = internal.SinceLogs | ||||||
|  |  | ||||||
| 		serviceName := c.Args().Get(1) | 		serviceName := c.Args().Get(1) | ||||||
| 		serviceNames := []string{} | 		if serviceName == "" { | ||||||
| 		if serviceName != "" { | 			logrus.Debugf("tailing logs for all %s services", app.Recipe) | ||||||
| 			serviceNames = []string{serviceName} | 			stackLogs(c, app, cl) | ||||||
| 		} | 		} else { | ||||||
| 		err = tailLogs(cl, app, serviceNames) | 			logrus.Debugf("tailing logs for %s", serviceName) | ||||||
| 		if err != nil { | 			if err := tailServiceLogs(c, cl, app, serviceName); err != nil { | ||||||
| 				logrus.Fatal(err) | 				logrus.Fatal(err) | ||||||
| 			} | 			} | ||||||
|  | 		} | ||||||
|  |  | ||||||
| 		return nil | 		return nil | ||||||
| 	}, | 	}, | ||||||
| } | } | ||||||
|  |  | ||||||
| // tailLogs prints logs for the given app with optional service names to be | func tailServiceLogs(c *cli.Context, cl *dockerClient.Client, app config.App, serviceName string) error { | ||||||
| // filtered on. It also checks if the latest task is not runnning and then |  | ||||||
| // prints the past tasks. |  | ||||||
| func tailLogs(cl *dockerClient.Client, app config.App, serviceNames []string) error { |  | ||||||
| 	f, err := app.Filters(true, false, serviceNames...) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	services, err := cl.ServiceList(context.Background(), types.ServiceListOptions{Filters: f}) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	var wg sync.WaitGroup |  | ||||||
| 	for _, service := range services { |  | ||||||
| 	filters := filters.NewArgs() | 	filters := filters.NewArgs() | ||||||
| 		filters.Add("name", service.Spec.Name) | 	filters.Add("name", fmt.Sprintf("%s_%s", app.StackName(), serviceName)) | ||||||
| 		tasks, err := cl.TaskList(context.Background(), types.TaskListOptions{Filters: f}) |  | ||||||
|  | 	chosenService, err := service.GetService(context.Background(), cl, filters, internal.NoInput) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 			return err | 		logrus.Fatal(err) | ||||||
| 		} |  | ||||||
| 		if len(tasks) > 0 { |  | ||||||
| 			// Need to sort the tasks by the CreatedAt field in the inverse order. |  | ||||||
| 			// Otherwise they are in the reversed order and not sorted properly. |  | ||||||
| 			slices.SortFunc[[]swarm.Task](tasks, func(t1, t2 swarm.Task) int { |  | ||||||
| 				return int(t2.Meta.CreatedAt.Unix() - t1.Meta.CreatedAt.Unix()) |  | ||||||
| 			}) |  | ||||||
| 			lastTask := tasks[0].Status |  | ||||||
| 			if lastTask.State != swarm.TaskStateRunning { |  | ||||||
| 				for _, task := range tasks { |  | ||||||
| 					logrus.Errorf("[%s] %s State %s: %s", service.Spec.Name, task.Meta.CreatedAt.Format(time.RFC3339), task.Status.State, task.Status.Err) |  | ||||||
| 				} |  | ||||||
| 			} |  | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 		// Collect the logs in a go routine, so the logs from all services are | 	if internal.StdErrOnly { | ||||||
| 		// collected in parallel. | 		logOpts.ShowStdout = false | ||||||
| 		wg.Add(1) | 	} | ||||||
| 		go func(serviceID string) { |  | ||||||
| 			logs, err := cl.ServiceLogs(context.Background(), serviceID, types.ContainerLogsOptions{ | 	logs, err := cl.ServiceLogs(context.Background(), chosenService.ID, logOpts) | ||||||
| 				ShowStderr: true, |  | ||||||
| 				ShowStdout: !internal.StdErrOnly, |  | ||||||
| 				Since:      internal.SinceLogs, |  | ||||||
| 				Until:      "", |  | ||||||
| 				Timestamps: true, |  | ||||||
| 				Follow:     true, |  | ||||||
| 				Tail:       "20", |  | ||||||
| 				Details:    false, |  | ||||||
| 			}) |  | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		logrus.Fatal(err) | 		logrus.Fatal(err) | ||||||
| 	} | 	} | ||||||
| @ -129,11 +145,6 @@ func tailLogs(cl *dockerClient.Client, app config.App, serviceNames []string) er | |||||||
| 	if err != nil && err != io.EOF { | 	if err != nil && err != io.EOF { | ||||||
| 		logrus.Fatal(err) | 		logrus.Fatal(err) | ||||||
| 	} | 	} | ||||||
| 		}(service.ID) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// Wait for all log streams to be closed. |  | ||||||
| 	wg.Wait() |  | ||||||
|  |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  | |||||||
| @ -55,16 +55,8 @@ var appNewCommand = cli.Command{ | |||||||
| 		internal.ChaosFlag, | 		internal.ChaosFlag, | ||||||
| 	}, | 	}, | ||||||
| 	Before:       internal.SubCommandBefore, | 	Before:       internal.SubCommandBefore, | ||||||
| 	ArgsUsage: "[<recipe>] [<version>]", | 	ArgsUsage:    "[<recipe>]", | ||||||
| 	BashComplete: func(ctx *cli.Context) { | 	BashComplete: autocomplete.RecipeNameComplete, | ||||||
| 		args := ctx.Args() |  | ||||||
| 		switch len(args) { |  | ||||||
| 		case 0: |  | ||||||
| 			autocomplete.RecipeNameComplete(ctx) |  | ||||||
| 		case 1: |  | ||||||
| 			autocomplete.RecipeVersionComplete(ctx.Args().Get(0)) |  | ||||||
| 		} |  | ||||||
| 	}, |  | ||||||
| 	Action: func(c *cli.Context) error { | 	Action: func(c *cli.Context) error { | ||||||
| 		recipe := internal.ValidateRecipe(c) | 		recipe := internal.ValidateRecipe(c) | ||||||
|  |  | ||||||
| @ -77,15 +69,9 @@ var appNewCommand = cli.Command{ | |||||||
| 					logrus.Fatal(err) | 					logrus.Fatal(err) | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
| 			if c.Args().Get(1) == "" { |  | ||||||
| 			if err := recipePkg.EnsureLatest(recipe.Name); err != nil { | 			if err := recipePkg.EnsureLatest(recipe.Name); err != nil { | ||||||
| 				logrus.Fatal(err) | 				logrus.Fatal(err) | ||||||
| 			} | 			} | ||||||
| 			} else { |  | ||||||
| 				if err := recipePkg.EnsureVersion(recipe.Name, c.Args().Get(1)); err != nil { |  | ||||||
| 					logrus.Fatal(err) |  | ||||||
| 				} |  | ||||||
| 			} |  | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		if err := ensureServerFlag(); err != nil { | 		if err := ensureServerFlag(); err != nil { | ||||||
| @ -122,7 +108,7 @@ var appNewCommand = cli.Command{ | |||||||
| 			} | 			} | ||||||
|  |  | ||||||
| 			envSamplePath := path.Join(config.RECIPES_DIR, recipe.Name, ".env.sample") | 			envSamplePath := path.Join(config.RECIPES_DIR, recipe.Name, ".env.sample") | ||||||
| 			secretsConfig, err := secret.ReadSecretsConfig(envSamplePath, composeFiles, config.StackName(internal.Domain)) | 			secretsConfig, err := secret.ReadSecretsConfig(envSamplePath, composeFiles, recipe.Name) | ||||||
| 			if err != nil { | 			if err != nil { | ||||||
| 				return err | 				return err | ||||||
| 			} | 			} | ||||||
| @ -182,8 +168,14 @@ var appNewCommand = cli.Command{ | |||||||
| type AppSecrets map[string]string | type AppSecrets map[string]string | ||||||
|  |  | ||||||
| // createSecrets creates all secrets for a new app. | // createSecrets creates all secrets for a new app. | ||||||
| func createSecrets(cl *dockerClient.Client, secretsConfig map[string]secret.Secret, sanitisedAppName string) (AppSecrets, error) { | func createSecrets(cl *dockerClient.Client, secretsConfig map[string]secret.SecretValue, sanitisedAppName string) (AppSecrets, error) { | ||||||
| 	secrets, err := secret.GenerateSecrets(cl, secretsConfig, internal.NewAppServer) | 	// NOTE(d1): trim to match app.StackName() implementation | ||||||
|  | 	if len(sanitisedAppName) > 45 { | ||||||
|  | 		logrus.Debugf("trimming %s to %s to avoid runtime limits", sanitisedAppName, sanitisedAppName[:45]) | ||||||
|  | 		sanitisedAppName = sanitisedAppName[:45] | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	secrets, err := secret.GenerateSecrets(cl, secretsConfig, sanitisedAppName, internal.NewAppServer) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return nil, err | 		return nil, err | ||||||
| 	} | 	} | ||||||
| @ -225,7 +217,7 @@ func ensureDomainFlag(recipe recipe.Recipe, server string) error { | |||||||
| } | } | ||||||
|  |  | ||||||
| // promptForSecrets asks if we should generate secrets for a new app. | // promptForSecrets asks if we should generate secrets for a new app. | ||||||
| func promptForSecrets(recipeName string, secretsConfig map[string]secret.Secret) error { | func promptForSecrets(recipeName string, secretsConfig map[string]secret.SecretValue) error { | ||||||
| 	if len(secretsConfig) == 0 { | 	if len(secretsConfig) == 0 { | ||||||
| 		logrus.Debugf("%s has no secrets to generate, skipping...", recipeName) | 		logrus.Debugf("%s has no secrets to generate, skipping...", recipeName) | ||||||
| 		return nil | 		return nil | ||||||
|  | |||||||
| @ -3,9 +3,7 @@ package app | |||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"log" |  | ||||||
| 	"os" | 	"os" | ||||||
| 	"time" |  | ||||||
|  |  | ||||||
| 	"coopcloud.tech/abra/cli/internal" | 	"coopcloud.tech/abra/cli/internal" | ||||||
| 	"coopcloud.tech/abra/pkg/autocomplete" | 	"coopcloud.tech/abra/pkg/autocomplete" | ||||||
| @ -126,11 +124,9 @@ flag. | |||||||
|  |  | ||||||
| 		if len(vols) > 0 { | 		if len(vols) > 0 { | ||||||
| 			for _, vol := range vols { | 			for _, vol := range vols { | ||||||
| 				err = retryFunc(5, func() error { | 				err := cl.VolumeRemove(context.Background(), vol, internal.Force) // last argument is for force removing | ||||||
| 					return cl.VolumeRemove(context.Background(), vol, internal.Force) // last argument is for force removing |  | ||||||
| 				}) |  | ||||||
| 				if err != nil { | 				if err != nil { | ||||||
| 					log.Fatalf("removing volumes failed: %s", err) | 					logrus.Fatal(err) | ||||||
| 				} | 				} | ||||||
| 				logrus.Info(fmt.Sprintf("volume %s removed", vol)) | 				logrus.Info(fmt.Sprintf("volume %s removed", vol)) | ||||||
| 			} | 			} | ||||||
| @ -147,21 +143,3 @@ flag. | |||||||
| 		return nil | 		return nil | ||||||
| 	}, | 	}, | ||||||
| } | } | ||||||
|  |  | ||||||
| // retryFunc retries the given function for the given retries. After the nth |  | ||||||
| // retry it waits (n + 1)^2 seconds before the next retry (starting with n=0). |  | ||||||
| // It returns an error if the function still failed after the last retry. |  | ||||||
| func retryFunc(retries int, fn func() error) error { |  | ||||||
| 	for i := 0; i < retries; i++ { |  | ||||||
| 		err := fn() |  | ||||||
| 		if err == nil { |  | ||||||
| 			return nil |  | ||||||
| 		} |  | ||||||
| 		if i+1 < retries { |  | ||||||
| 			sleep := time.Duration(i+1) * time.Duration(i+1) |  | ||||||
| 			logrus.Infof("%s: waiting %d seconds before next retry", err, sleep) |  | ||||||
| 			time.Sleep(sleep * time.Second) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	return fmt.Errorf("%d retries failed", retries) |  | ||||||
| } |  | ||||||
|  | |||||||
| @ -1,26 +0,0 @@ | |||||||
| package app |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"fmt" |  | ||||||
| 	"testing" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func TestRetryFunc(t *testing.T) { |  | ||||||
| 	err := retryFunc(1, func() error { return nil }) |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Errorf("should not return an error: %s", err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	i := 0 |  | ||||||
| 	fn := func() error { |  | ||||||
| 		i++ |  | ||||||
| 		return fmt.Errorf("oh no, something went wrong!") |  | ||||||
| 	} |  | ||||||
| 	err = retryFunc(2, fn) |  | ||||||
| 	if err == nil { |  | ||||||
| 		t.Error("should return an error") |  | ||||||
| 	} |  | ||||||
| 	if i != 2 { |  | ||||||
| 		t.Errorf("The function should have been called 1 times, got %d", i) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @ -91,7 +91,7 @@ var appSecretGenerateCommand = cli.Command{ | |||||||
| 			logrus.Fatal(err) | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		secrets, err := secret.ReadSecretsConfig(app.Path, composeFiles, app.StackName()) | 		secrets, err := secret.ReadSecretsConfig(app.Path, composeFiles, app.Recipe) | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			logrus.Fatal(err) | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
| @ -104,7 +104,7 @@ var appSecretGenerateCommand = cli.Command{ | |||||||
| 				logrus.Fatalf("%s doesn't exist in the env config?", secretName) | 				logrus.Fatalf("%s doesn't exist in the env config?", secretName) | ||||||
| 			} | 			} | ||||||
| 			s.Version = secretVersion | 			s.Version = secretVersion | ||||||
| 			secrets = map[string]secret.Secret{ | 			secrets = map[string]secret.SecretValue{ | ||||||
| 				secretName: s, | 				secretName: s, | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| @ -114,7 +114,7 @@ var appSecretGenerateCommand = cli.Command{ | |||||||
| 			logrus.Fatal(err) | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		secretVals, err := secret.GenerateSecrets(cl, secrets, app.Server) | 		secretVals, err := secret.GenerateSecrets(cl, secrets, app.StackName(), app.Server) | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			logrus.Fatal(err) | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
| @ -274,7 +274,7 @@ Example: | |||||||
| 			logrus.Fatal(err) | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		secrets, err := secret.ReadSecretsConfig(app.Path, composeFiles, app.StackName()) | 		secrets, err := secret.ReadSecretsConfig(app.Path, composeFiles, app.Recipe) | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			logrus.Fatal(err) | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
|  | |||||||
| @ -3,7 +3,6 @@ package recipe | |||||||
| import ( | import ( | ||||||
| 	"coopcloud.tech/abra/cli/internal" | 	"coopcloud.tech/abra/cli/internal" | ||||||
| 	"coopcloud.tech/abra/pkg/autocomplete" | 	"coopcloud.tech/abra/pkg/autocomplete" | ||||||
| 	"coopcloud.tech/abra/pkg/formatter" |  | ||||||
| 	"coopcloud.tech/abra/pkg/recipe" | 	"coopcloud.tech/abra/pkg/recipe" | ||||||
| 	"github.com/sirupsen/logrus" | 	"github.com/sirupsen/logrus" | ||||||
| 	"github.com/urfave/cli" | 	"github.com/urfave/cli" | ||||||
| @ -18,31 +17,26 @@ var recipeFetchCommand = cli.Command{ | |||||||
| 	Flags: []cli.Flag{ | 	Flags: []cli.Flag{ | ||||||
| 		internal.DebugFlag, | 		internal.DebugFlag, | ||||||
| 		internal.NoInputFlag, | 		internal.NoInputFlag, | ||||||
| 		internal.OfflineFlag, |  | ||||||
| 	}, | 	}, | ||||||
| 	Before:       internal.SubCommandBefore, | 	Before:       internal.SubCommandBefore, | ||||||
| 	BashComplete: autocomplete.RecipeNameComplete, | 	BashComplete: autocomplete.RecipeNameComplete, | ||||||
| 	Action: func(c *cli.Context) error { | 	Action: func(c *cli.Context) error { | ||||||
| 		recipeName := c.Args().First() | 		recipeName := c.Args().First() | ||||||
|  |  | ||||||
| 		if recipeName != "" { | 		if recipeName != "" { | ||||||
| 			internal.ValidateRecipe(c) | 			internal.ValidateRecipe(c) | ||||||
| 			if err := recipe.Ensure(recipeName); err != nil { |  | ||||||
| 				logrus.Fatal(err) |  | ||||||
| 			} |  | ||||||
| 			return nil |  | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		catalogue, err := recipe.ReadRecipeCatalogue(internal.Offline) | 		if err := recipe.EnsureExists(recipeName); err != nil { | ||||||
| 		if err != nil { |  | ||||||
| 			logrus.Fatal(err) | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		catlBar := formatter.CreateProgressbar(len(catalogue), "fetching latest recipes...") | 		if err := recipe.EnsureUpToDate(recipeName); err != nil { | ||||||
| 		for recipeName := range catalogue { | 			logrus.Fatal(err) | ||||||
| 			if err := recipe.Ensure(recipeName); err != nil { |  | ||||||
| 				logrus.Error(err) |  | ||||||
| 		} | 		} | ||||||
| 			catlBar.Add(1) |  | ||||||
|  | 		if err := recipe.EnsureLatest(recipeName); err != nil { | ||||||
|  | 			logrus.Fatal(err) | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		return nil | 		return nil | ||||||
|  | |||||||
| @ -1,9 +1,7 @@ | |||||||
| package recipe | package recipe | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"errors" |  | ||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"os" |  | ||||||
| 	"path" | 	"path" | ||||||
| 	"strconv" | 	"strconv" | ||||||
| 	"strings" | 	"strings" | ||||||
| @ -142,7 +140,7 @@ your SSH keys configured on your account. | |||||||
|  |  | ||||||
| // getImageVersions retrieves image versions for a recipe | // getImageVersions retrieves image versions for a recipe | ||||||
| func getImageVersions(recipe recipe.Recipe) (map[string]string, error) { | func getImageVersions(recipe recipe.Recipe) (map[string]string, error) { | ||||||
| 	services := make(map[string]string) | 	var services = make(map[string]string) | ||||||
|  |  | ||||||
| 	missingTag := false | 	missingTag := false | ||||||
| 	for _, service := range recipe.Config.Services { | 	for _, service := range recipe.Config.Services { | ||||||
| @ -209,10 +207,6 @@ func createReleaseFromTag(recipe recipe.Recipe, tagString, mainAppVersion string | |||||||
| 		tagString = fmt.Sprintf("%s+%s", tag.String(), mainAppVersion) | 		tagString = fmt.Sprintf("%s+%s", tag.String(), mainAppVersion) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if err := addReleaseNotes(recipe, tagString); err != nil { |  | ||||||
| 		logrus.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := commitRelease(recipe, tagString); err != nil { | 	if err := commitRelease(recipe, tagString); err != nil { | ||||||
| 		logrus.Fatal(err) | 		logrus.Fatal(err) | ||||||
| 	} | 	} | ||||||
| @ -243,82 +237,6 @@ func getTagCreateOptions(tag string) (git.CreateTagOptions, error) { | |||||||
| 	return git.CreateTagOptions{Message: msg}, nil | 	return git.CreateTagOptions{Message: msg}, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| // addReleaseNotes checks if the release/next release note exists and moves the |  | ||||||
| // file to release/<tag>. |  | ||||||
| func addReleaseNotes(recipe recipe.Recipe, tag string) error { |  | ||||||
| 	repoPath := path.Join(config.RECIPES_DIR, recipe.Name) |  | ||||||
| 	tagReleaseNotePath := path.Join(repoPath, "release", tag) |  | ||||||
| 	if _, err := os.Stat(tagReleaseNotePath); err == nil { |  | ||||||
| 		// Release note for current tag already exist exists. |  | ||||||
| 		return nil |  | ||||||
| 	} else if !errors.Is(err, os.ErrNotExist) { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	nextReleaseNotePath := path.Join(repoPath, "release", "next") |  | ||||||
| 	if _, err := os.Stat(nextReleaseNotePath); err == nil { |  | ||||||
| 		// release/next note exists. Move it to release/<tag> |  | ||||||
| 		if internal.Dry { |  | ||||||
| 			logrus.Debugf("dry run: move release note from 'next' to %s", tag) |  | ||||||
| 			return nil |  | ||||||
| 		} |  | ||||||
| 		if !internal.NoInput { |  | ||||||
| 			prompt := &survey.Input{ |  | ||||||
| 				Message: "Use release note in release/next?", |  | ||||||
| 			} |  | ||||||
| 			var addReleaseNote bool |  | ||||||
| 			if err := survey.AskOne(prompt, &addReleaseNote); err != nil { |  | ||||||
| 				return err |  | ||||||
| 			} |  | ||||||
| 			if !addReleaseNote { |  | ||||||
| 				return nil |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
| 		err := os.Rename(nextReleaseNotePath, tagReleaseNotePath) |  | ||||||
| 		if err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 		err = gitPkg.Add(repoPath, path.Join("release", "next"), internal.Dry) |  | ||||||
| 		if err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 		err = gitPkg.Add(repoPath, path.Join("release", tag), internal.Dry) |  | ||||||
| 		if err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 	} else if !errors.Is(err, os.ErrNotExist) { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// No release note exists for the current release. |  | ||||||
| 	if internal.NoInput { |  | ||||||
| 		return nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	prompt := &survey.Input{ |  | ||||||
| 		Message: "Release Note (leave empty for no release note)", |  | ||||||
| 	} |  | ||||||
| 	var releaseNote string |  | ||||||
| 	if err := survey.AskOne(prompt, &releaseNote); err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if releaseNote == "" { |  | ||||||
| 		return nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	err := os.WriteFile(tagReleaseNotePath, []byte(releaseNote), 0o644) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
| 	err = gitPkg.Add(repoPath, path.Join("release", tag), internal.Dry) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func commitRelease(recipe recipe.Recipe, tag string) error { | func commitRelease(recipe recipe.Recipe, tag string) error { | ||||||
| 	if internal.Dry { | 	if internal.Dry { | ||||||
| 		logrus.Debugf("dry run: no changes committed") | 		logrus.Debugf("dry run: no changes committed") | ||||||
| @ -486,10 +404,6 @@ func createReleaseFromPreviousTag(tagString, mainAppVersion string, recipe recip | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if err := addReleaseNotes(recipe, tagString); err != nil { |  | ||||||
| 		logrus.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := commitRelease(recipe, tagString); err != nil { | 	if err := commitRelease(recipe, tagString); err != nil { | ||||||
| 		logrus.Fatalf("failed to commit changes: %s", err.Error()) | 		logrus.Fatalf("failed to commit changes: %s", err.Error()) | ||||||
| 	} | 	} | ||||||
|  | |||||||
							
								
								
									
										4
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								go.mod
									
									
									
									
									
								
							| @ -4,7 +4,7 @@ go 1.21 | |||||||
|  |  | ||||||
| require ( | require ( | ||||||
| 	coopcloud.tech/tagcmp v0.0.0-20211103052201-885b22f77d52 | 	coopcloud.tech/tagcmp v0.0.0-20211103052201-885b22f77d52 | ||||||
| 	git.coopcloud.tech/coop-cloud/godotenv v1.5.2-0.20231130100509-01bff8284355 | 	git.coopcloud.tech/coop-cloud/godotenv v1.5.2-0.20231130100106-7462d91acefd | ||||||
| 	github.com/AlecAivazis/survey/v2 v2.3.7 | 	github.com/AlecAivazis/survey/v2 v2.3.7 | ||||||
| 	github.com/Gurpartap/logrus-stack v0.0.0-20170710170904-89c00d8a28f4 | 	github.com/Gurpartap/logrus-stack v0.0.0-20170710170904-89c00d8a28f4 | ||||||
| 	github.com/docker/cli v24.0.7+incompatible | 	github.com/docker/cli v24.0.7+incompatible | ||||||
| @ -12,7 +12,6 @@ require ( | |||||||
| 	github.com/docker/docker v24.0.7+incompatible | 	github.com/docker/docker v24.0.7+incompatible | ||||||
| 	github.com/docker/go-units v0.5.0 | 	github.com/docker/go-units v0.5.0 | ||||||
| 	github.com/go-git/go-git/v5 v5.10.0 | 	github.com/go-git/go-git/v5 v5.10.0 | ||||||
| 	github.com/google/go-cmp v0.5.9 |  | ||||||
| 	github.com/moby/sys/signal v0.7.0 | 	github.com/moby/sys/signal v0.7.0 | ||||||
| 	github.com/moby/term v0.5.0 | 	github.com/moby/term v0.5.0 | ||||||
| 	github.com/olekukonko/tablewriter v0.0.5 | 	github.com/olekukonko/tablewriter v0.0.5 | ||||||
| @ -48,6 +47,7 @@ require ( | |||||||
| 	github.com/gogo/protobuf v1.3.2 // indirect | 	github.com/gogo/protobuf v1.3.2 // indirect | ||||||
| 	github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | 	github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||||||
| 	github.com/golang/protobuf v1.5.3 // indirect | 	github.com/golang/protobuf v1.5.3 // indirect | ||||||
|  | 	github.com/google/go-cmp v0.5.9 // indirect | ||||||
| 	github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | 	github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||||||
| 	github.com/imdario/mergo v0.3.12 // indirect | 	github.com/imdario/mergo v0.3.12 // indirect | ||||||
| 	github.com/inconshreveable/mousetrap v1.0.0 // indirect | 	github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||||||
|  | |||||||
							
								
								
									
										4
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								go.sum
									
									
									
									
									
								
							| @ -51,8 +51,8 @@ coopcloud.tech/tagcmp v0.0.0-20211103052201-885b22f77d52/go.mod h1:ESVm0wQKcbcFi | |||||||
| dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= | dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= | ||||||
| dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= | dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= | ||||||
| dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= | dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= | ||||||
| git.coopcloud.tech/coop-cloud/godotenv v1.5.2-0.20231130100509-01bff8284355 h1:tCv2B4qoN6RMheKDnCzIafOkWS5BB1h7hwhmo+9bVeE= | git.coopcloud.tech/coop-cloud/godotenv v1.5.2-0.20231130100106-7462d91acefd h1:dctCkMhcsgIWMrkB1Br8S0RJF17eG+LKiqcXXVr3mdU= | ||||||
| git.coopcloud.tech/coop-cloud/godotenv v1.5.2-0.20231130100509-01bff8284355/go.mod h1:Q8V1zbtPAlzYSr/Dvky3wS6x58IQAl3rot2me1oSO2Q= | git.coopcloud.tech/coop-cloud/godotenv v1.5.2-0.20231130100106-7462d91acefd/go.mod h1:Q8V1zbtPAlzYSr/Dvky3wS6x58IQAl3rot2me1oSO2Q= | ||||||
| github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1 h1:EKPd1INOIyr5hWOWhvpmQpY6tKjeG0hT1s3AMC/9fic= | github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1 h1:EKPd1INOIyr5hWOWhvpmQpY6tKjeG0hT1s3AMC/9fic= | ||||||
| github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1/go.mod h1:VzwV+t+dZ9j/H867F1M2ziD+yLHtB46oM35FxxMJ4d0= | github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1/go.mod h1:VzwV+t+dZ9j/H867F1M2ziD+yLHtB46oM35FxxMJ4d0= | ||||||
| github.com/AlecAivazis/survey/v2 v2.3.7 h1:6I/u8FvytdGsgonrYsVn2t8t4QiRnh6QSTqkkhIiSjQ= | github.com/AlecAivazis/survey/v2 v2.3.7 h1:6I/u8FvytdGsgonrYsVn2t8t4QiRnh6QSTqkkhIiSjQ= | ||||||
|  | |||||||
| @ -51,20 +51,6 @@ func RecipeNameComplete(c *cli.Context) { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // RecipeVersionComplete completes versions for the recipe. |  | ||||||
| func RecipeVersionComplete(recipeName string) { |  | ||||||
| 	catl, err := recipe.ReadRecipeCatalogue(false) |  | ||||||
| 	if err != nil { |  | ||||||
| 		logrus.Warn(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, v := range catl[recipeName].Versions { |  | ||||||
| 		for v2 := range v { |  | ||||||
| 			fmt.Println(v2) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ServerNameComplete completes server names. | // ServerNameComplete completes server names. | ||||||
| func ServerNameComplete(c *cli.Context) { | func ServerNameComplete(c *cli.Context) { | ||||||
| 	files, err := config.LoadAppFiles("") | 	files, err := config.LoadAppFiles("") | ||||||
|  | |||||||
| @ -50,61 +50,34 @@ type App struct { | |||||||
| 	Path   string | 	Path   string | ||||||
| } | } | ||||||
|  |  | ||||||
| // See documentation of config.StackName | // StackName gets whatever the docker safe (uses the right delimiting | ||||||
|  | // character, e.g. "_") stack name is for the app. In general, you don't want | ||||||
|  | // to use this to show anything to end-users, you want use a.Name instead. | ||||||
| func (a App) StackName() string { | func (a App) StackName() string { | ||||||
| 	if _, exists := a.Env["STACK_NAME"]; exists { | 	if _, exists := a.Env["STACK_NAME"]; exists { | ||||||
| 		return a.Env["STACK_NAME"] | 		return a.Env["STACK_NAME"] | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	stackName := StackName(a.Name) | 	stackName := SanitiseAppName(a.Name) | ||||||
|  |  | ||||||
| 	a.Env["STACK_NAME"] = stackName |  | ||||||
|  |  | ||||||
| 	return stackName |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // StackName gets whatever the docker safe (uses the right delimiting |  | ||||||
| // character, e.g. "_") stack name is for the app. In general, you don't want |  | ||||||
| // to use this to show anything to end-users, you want use a.Name instead. |  | ||||||
| func StackName(appName string) string { |  | ||||||
| 	stackName := SanitiseAppName(appName) |  | ||||||
|  |  | ||||||
| 	if len(stackName) > 45 { | 	if len(stackName) > 45 { | ||||||
| 		logrus.Debugf("trimming %s to %s to avoid runtime limits", stackName, stackName[:45]) | 		logrus.Debugf("trimming %s to %s to avoid runtime limits", stackName, stackName[:45]) | ||||||
| 		stackName = stackName[:45] | 		stackName = stackName[:45] | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|  | 	a.Env["STACK_NAME"] = stackName | ||||||
|  |  | ||||||
| 	return stackName | 	return stackName | ||||||
| } | } | ||||||
|  |  | ||||||
| // Filters retrieves app filters for querying the container runtime. By default | // Filters retrieves exact app filters for querying the container runtime. Due | ||||||
| // it filters on all services in the app. It is also possible to pass an | // to upstream issues, filtering works different depending on what you're | ||||||
| // otional list of service names, which get filtered instead. |  | ||||||
| // |  | ||||||
| // Due to upstream issues, filtering works different depending on what you're |  | ||||||
| // querying. So, for example, secrets don't work with regex! The caller needs | // querying. So, for example, secrets don't work with regex! The caller needs | ||||||
| // to implement their own validation that the right secrets are matched. In | // to implement their own validation that the right secrets are matched. In | ||||||
| // order to handle these cases, we provide the `appendServiceNames` / | // order to handle these cases, we provide the `appendServiceNames` / | ||||||
| // `exactMatch` modifiers. | // `exactMatch` modifiers. | ||||||
| func (a App) Filters(appendServiceNames, exactMatch bool, services ...string) (filters.Args, error) { | func (a App) Filters(appendServiceNames, exactMatch bool) (filters.Args, error) { | ||||||
| 	filters := filters.NewArgs() | 	filters := filters.NewArgs() | ||||||
| 	if len(services) > 0 { |  | ||||||
| 		for _, serviceName := range services { |  | ||||||
| 			filters.Add("name", ServiceFilter(a.StackName(), serviceName, exactMatch)) |  | ||||||
| 		} |  | ||||||
| 		return filters, nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// When not appending the service name, just add one filter for the whole |  | ||||||
| 	// stack. |  | ||||||
| 	if !appendServiceNames { |  | ||||||
| 		f := fmt.Sprintf("%s", a.StackName()) |  | ||||||
| 		if exactMatch { |  | ||||||
| 			f = fmt.Sprintf("^%s", f) |  | ||||||
| 		} |  | ||||||
| 		filters.Add("name", f) |  | ||||||
| 		return filters, nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	composeFiles, err := GetComposeFiles(a.Recipe, a.Env) | 	composeFiles, err := GetComposeFiles(a.Recipe, a.Env) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| @ -118,23 +91,28 @@ func (a App) Filters(appendServiceNames, exactMatch bool, services ...string) (f | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	for _, service := range compose.Services { | 	for _, service := range compose.Services { | ||||||
| 		f := ServiceFilter(a.StackName(), service.Name, exactMatch) | 		var filter string | ||||||
| 		filters.Add("name", f) |  | ||||||
|  | 		if appendServiceNames { | ||||||
|  | 			if exactMatch { | ||||||
|  | 				filter = fmt.Sprintf("^%s_%s", a.StackName(), service.Name) | ||||||
|  | 			} else { | ||||||
|  | 				filter = fmt.Sprintf("%s_%s", a.StackName(), service.Name) | ||||||
|  | 			} | ||||||
|  | 		} else { | ||||||
|  | 			if exactMatch { | ||||||
|  | 				filter = fmt.Sprintf("^%s", a.StackName()) | ||||||
|  | 			} else { | ||||||
|  | 				filter = fmt.Sprintf("%s", a.StackName()) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		filters.Add("name", filter) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	return filters, nil | 	return filters, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| // ServiceFilter creates a filter string for filtering a service in the docker |  | ||||||
| // container runtime. When exact match is true, it uses regex to match the |  | ||||||
| // string exactly. |  | ||||||
| func ServiceFilter(stack, service string, exact bool) string { |  | ||||||
| 	if exact { |  | ||||||
| 		return fmt.Sprintf("^%s_%s", stack, service) |  | ||||||
| 	} |  | ||||||
| 	return fmt.Sprintf("%s_%s", stack, service) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ByServer sort a slice of Apps | // ByServer sort a slice of Apps | ||||||
| type ByServer []App | type ByServer []App | ||||||
|  |  | ||||||
| @ -355,7 +333,7 @@ func TemplateAppEnvSample(recipeName, appName, server, domain string) error { | |||||||
| 		return fmt.Errorf("%s already exists?", appEnvPath) | 		return fmt.Errorf("%s already exists?", appEnvPath) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	err = ioutil.WriteFile(appEnvPath, envSample, 0o664) | 	err = ioutil.WriteFile(appEnvPath, envSample, 0664) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return err | 		return err | ||||||
| 	} | 	} | ||||||
| @ -617,7 +595,7 @@ func GetLabel(compose *composetypes.Config, stackName string, label string) stri | |||||||
|  |  | ||||||
| // GetTimeoutFromLabel reads the timeout value from docker label "coop-cloud.${STACK_NAME}.TIMEOUT" and returns 50 as default value | // GetTimeoutFromLabel reads the timeout value from docker label "coop-cloud.${STACK_NAME}.TIMEOUT" and returns 50 as default value | ||||||
| func GetTimeoutFromLabel(compose *composetypes.Config, stackName string) (int, error) { | func GetTimeoutFromLabel(compose *composetypes.Config, stackName string) (int, error) { | ||||||
| 	timeout := 50 // Default Timeout | 	var timeout = 50 // Default Timeout | ||||||
| 	var err error = nil | 	var err error = nil | ||||||
| 	if timeoutLabel := GetLabel(compose, stackName, "timeout"); timeoutLabel != "" { | 	if timeoutLabel := GetLabel(compose, stackName, "timeout"); timeoutLabel != "" { | ||||||
| 		logrus.Debugf("timeout label: %s", timeoutLabel) | 		logrus.Debugf("timeout label: %s", timeoutLabel) | ||||||
|  | |||||||
| @ -1,15 +1,12 @@ | |||||||
| package config_test | package config_test | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"encoding/json" |  | ||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"reflect" | 	"reflect" | ||||||
| 	"testing" | 	"testing" | ||||||
|  |  | ||||||
| 	"coopcloud.tech/abra/pkg/config" | 	"coopcloud.tech/abra/pkg/config" | ||||||
| 	"coopcloud.tech/abra/pkg/recipe" | 	"coopcloud.tech/abra/pkg/recipe" | ||||||
| 	"github.com/docker/docker/api/types/filters" |  | ||||||
| 	"github.com/google/go-cmp/cmp" |  | ||||||
| 	"github.com/stretchr/testify/assert" | 	"github.com/stretchr/testify/assert" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| @ -109,89 +106,3 @@ func TestGetComposeFilesError(t *testing.T) { | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func TestFilters(t *testing.T) { |  | ||||||
| 	oldDir := config.RECIPES_DIR |  | ||||||
| 	config.RECIPES_DIR = "./testdir" |  | ||||||
| 	defer func() { |  | ||||||
| 		config.RECIPES_DIR = oldDir |  | ||||||
| 	}() |  | ||||||
|  |  | ||||||
| 	app, err := config.NewApp(config.AppEnv{ |  | ||||||
| 		"DOMAIN": "test.example.com", |  | ||||||
| 		"RECIPE": "test-recipe", |  | ||||||
| 	}, "test_example_com", config.AppFile{ |  | ||||||
| 		Path:   "./testdir/filtertest.end", |  | ||||||
| 		Server: "local", |  | ||||||
| 	}) |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	f, err := app.Filters(false, false) |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Error(err) |  | ||||||
| 	} |  | ||||||
| 	compareFilter(t, f, map[string]map[string]bool{ |  | ||||||
| 		"name": { |  | ||||||
| 			"test_example_com": true, |  | ||||||
| 		}, |  | ||||||
| 	}) |  | ||||||
|  |  | ||||||
| 	f2, err := app.Filters(false, true) |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Error(err) |  | ||||||
| 	} |  | ||||||
| 	compareFilter(t, f2, map[string]map[string]bool{ |  | ||||||
| 		"name": { |  | ||||||
| 			"^test_example_com": true, |  | ||||||
| 		}, |  | ||||||
| 	}) |  | ||||||
|  |  | ||||||
| 	f3, err := app.Filters(true, false) |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Error(err) |  | ||||||
| 	} |  | ||||||
| 	compareFilter(t, f3, map[string]map[string]bool{ |  | ||||||
| 		"name": { |  | ||||||
| 			"test_example_com_bar": true, |  | ||||||
| 			"test_example_com_foo": true, |  | ||||||
| 		}, |  | ||||||
| 	}) |  | ||||||
|  |  | ||||||
| 	f4, err := app.Filters(true, true) |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Error(err) |  | ||||||
| 	} |  | ||||||
| 	compareFilter(t, f4, map[string]map[string]bool{ |  | ||||||
| 		"name": { |  | ||||||
| 			"^test_example_com_bar": true, |  | ||||||
| 			"^test_example_com_foo": true, |  | ||||||
| 		}, |  | ||||||
| 	}) |  | ||||||
|  |  | ||||||
| 	f5, err := app.Filters(false, false, "foo") |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Error(err) |  | ||||||
| 	} |  | ||||||
| 	compareFilter(t, f5, map[string]map[string]bool{ |  | ||||||
| 		"name": { |  | ||||||
| 			"test_example_com_foo": true, |  | ||||||
| 		}, |  | ||||||
| 	}) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func compareFilter(t *testing.T, f1 filters.Args, f2 map[string]map[string]bool) { |  | ||||||
| 	t.Helper() |  | ||||||
| 	j1, err := f1.MarshalJSON() |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Error(err) |  | ||||||
| 	} |  | ||||||
| 	j2, err := json.Marshal(f2) |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Error(err) |  | ||||||
| 	} |  | ||||||
| 	if diff := cmp.Diff(string(j2), string(j1)); diff != "" { |  | ||||||
| 		t.Errorf("filters mismatch (-want +got):\n%s", diff) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  | |||||||
| @ -1,2 +0,0 @@ | |||||||
| RECIPE=test-recipe |  | ||||||
| DOMAIN=test.example.com |  | ||||||
| @ -1,6 +0,0 @@ | |||||||
| version: "3.8" |  | ||||||
| services: |  | ||||||
|   foo: |  | ||||||
|     image: debian |  | ||||||
|   bar: |  | ||||||
|     image: debian |  | ||||||
| @ -68,15 +68,3 @@ func GetContainer(c context.Context, cl *client.Client, filters filters.Args, no | |||||||
|  |  | ||||||
| 	return containers[0], nil | 	return containers[0], nil | ||||||
| } | } | ||||||
|  |  | ||||||
| // GetContainerFromStackAndService retrieves the container for the given stack and service. |  | ||||||
| func GetContainerFromStackAndService(cl *client.Client, stack, service string) (types.Container, error) { |  | ||||||
| 	filters := filters.NewArgs() |  | ||||||
| 	filters.Add("name", fmt.Sprintf("^%s_%s", stack, service)) |  | ||||||
|  |  | ||||||
| 	container, err := GetContainer(context.Background(), cl, filters, true) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return types.Container{}, err |  | ||||||
| 	} |  | ||||||
| 	return container, nil |  | ||||||
| } |  | ||||||
|  | |||||||
| @ -1,27 +0,0 @@ | |||||||
| package git |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"github.com/go-git/go-git/v5" |  | ||||||
| 	"github.com/sirupsen/logrus" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // Add adds a file to the git index. |  | ||||||
| func Add(repoPath, path string, dryRun bool) error { |  | ||||||
| 	repo, err := git.PlainOpen(repoPath) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	worktree, err := repo.Worktree() |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if dryRun { |  | ||||||
| 		logrus.Debugf("dry run: adding %s", path) |  | ||||||
| 	} else { |  | ||||||
| 		worktree.Add(path) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
| @ -264,20 +264,6 @@ func (r Recipe) SampleEnv() (map[string]string, error) { | |||||||
| 	return sampleEnv, nil | 	return sampleEnv, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| // Ensure makes sure the recipe exists, is up to date and has the latest version checked out. |  | ||||||
| func Ensure(recipeName string) error { |  | ||||||
| 	if err := EnsureExists(recipeName); err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
| 	if err := EnsureUpToDate(recipeName); err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
| 	if err := EnsureLatest(recipeName); err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // EnsureExists ensures that a recipe is locally cloned | // EnsureExists ensures that a recipe is locally cloned | ||||||
| func EnsureExists(recipeName string) error { | func EnsureExists(recipeName string) error { | ||||||
| 	recipeDir := path.Join(config.RECIPES_DIR, recipeName) | 	recipeDir := path.Join(config.RECIPES_DIR, recipeName) | ||||||
|  | |||||||
| @ -21,24 +21,11 @@ import ( | |||||||
| 	"github.com/sirupsen/logrus" | 	"github.com/sirupsen/logrus" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Secret represents a secret. | // SecretValue represents a parsed `SECRET_FOO=v1 # length=bar` env var config | ||||||
| type Secret struct { | // secret definition. | ||||||
| 	// Version comes from the secret version environment variable. | type SecretValue struct { | ||||||
| 	// For example: |  | ||||||
| 	//  SECRET_FOO=v1 |  | ||||||
| 	Version string | 	Version string | ||||||
| 	// Length comes from the length modifier at the secret version environment |  | ||||||
| 	// variable. For Example: |  | ||||||
| 	//   SECRET_FOO=v1 # length=12 |  | ||||||
| 	Length  int | 	Length  int | ||||||
| 	// RemoteName is the name of the secret on the server. For example: |  | ||||||
| 	//   name: ${STACK_NAME}_test_pass_two_${SECRET_TEST_PASS_TWO_VERSION} |  | ||||||
| 	// With the following: |  | ||||||
| 	//   STACK_NAME=test_example_com |  | ||||||
| 	//   SECRET_TEST_PASS_TWO_VERSION=v2 |  | ||||||
| 	// Will have this remote name: |  | ||||||
| 	//   test_example_com_test_pass_two_v2 |  | ||||||
| 	RemoteName string |  | ||||||
| } | } | ||||||
|  |  | ||||||
| // GeneratePasswords generates passwords. | // GeneratePasswords generates passwords. | ||||||
| @ -80,20 +67,17 @@ func GeneratePassphrases(count uint) ([]string, error) { | |||||||
| // and some times you don't (as the caller). We need to be able to handle the | // and some times you don't (as the caller). We need to be able to handle the | ||||||
| // "app new" case where we pass in the .env.sample and the "secret generate" | // "app new" case where we pass in the .env.sample and the "secret generate" | ||||||
| // case where the app is created. | // case where the app is created. | ||||||
| func ReadSecretsConfig(appEnvPath string, composeFiles []string, stackName string) (map[string]Secret, error) { | func ReadSecretsConfig(appEnvPath string, composeFiles []string, recipeName string) (map[string]SecretValue, error) { | ||||||
| 	appEnv, appModifiers, err := config.ReadEnvWithModifiers(appEnvPath) | 	appEnv, appModifiers, err := config.ReadEnvWithModifiers(appEnvPath) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return nil, err | 		return nil, err | ||||||
| 	} | 	} | ||||||
| 	// Set the STACK_NAME to be able to generate the remote name correctly. |  | ||||||
| 	appEnv["STACK_NAME"] = stackName |  | ||||||
|  |  | ||||||
| 	opts := stack.Deploy{Composefiles: composeFiles} | 	opts := stack.Deploy{Composefiles: composeFiles} | ||||||
| 	config, err := loader.LoadComposefile(opts, appEnv) | 	config, err := loader.LoadComposefile(opts, appEnv) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return nil, err | 		return nil, err | ||||||
| 	} | 	} | ||||||
| 	// Read the compose files without injecting environment variables. |  | ||||||
| 	configWithoutEnv, err := loader.LoadComposefile(opts, map[string]string{}, loader.SkipInterpolation) | 	configWithoutEnv, err := loader.LoadComposefile(opts, map[string]string{}, loader.SkipInterpolation) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return nil, err | 		return nil, err | ||||||
| @ -111,7 +95,7 @@ func ReadSecretsConfig(appEnvPath string, composeFiles []string, stackName strin | |||||||
| 		return nil, nil | 		return nil, nil | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	secretValues := map[string]Secret{} | 	secretValues := map[string]SecretValue{} | ||||||
| 	for secretId, secretConfig := range config.Secrets { | 	for secretId, secretConfig := range config.Secrets { | ||||||
| 		if string(secretConfig.Name[len(secretConfig.Name)-1]) == "_" { | 		if string(secretConfig.Name[len(secretConfig.Name)-1]) == "_" { | ||||||
| 			return nil, fmt.Errorf("missing version for secret? (%s)", secretId) | 			return nil, fmt.Errorf("missing version for secret? (%s)", secretId) | ||||||
| @ -124,19 +108,15 @@ func ReadSecretsConfig(appEnvPath string, composeFiles []string, stackName strin | |||||||
|  |  | ||||||
| 		lastIdx := strings.LastIndex(secretConfig.Name, "_") | 		lastIdx := strings.LastIndex(secretConfig.Name, "_") | ||||||
| 		secretVersion := secretConfig.Name[lastIdx+1:] | 		secretVersion := secretConfig.Name[lastIdx+1:] | ||||||
| 		value := Secret{Version: secretVersion, RemoteName: secretConfig.Name} | 		value := SecretValue{Version: secretVersion} | ||||||
|  |  | ||||||
| 		// Check if the length modifier is set for this secret. | 		// Check if the length modifier is set for this secret. | ||||||
| 		for envName, modifierValues := range appModifiers { | 		for k, v := range appModifiers { | ||||||
| 			// configWithoutEnv contains the raw name as defined in the compose.yaml | 			// configWithoutEnv contains the raw name as defined in the compose.yaml | ||||||
| 			// The name will look something like this: | 			if !strings.Contains(configWithoutEnv.Secrets[secretId].Name, k) { | ||||||
| 			//   name: ${STACK_NAME}_test_pass_two_${SECRET_TEST_PASS_TWO_VERSION} |  | ||||||
| 			// To check if the current modifier is for the current secret we check |  | ||||||
| 			// if the raw name contains the env name (e.g. SECRET_TEST_PASS_TWO_VERSION). |  | ||||||
| 			if !strings.Contains(configWithoutEnv.Secrets[secretId].Name, envName) { |  | ||||||
| 				continue | 				continue | ||||||
| 			} | 			} | ||||||
| 			lengthRaw, ok := modifierValues["length"] | 			lengthRaw, ok := v["length"] | ||||||
| 			if ok { | 			if ok { | ||||||
| 				length, err := strconv.Atoi(lengthRaw) | 				length, err := strconv.Atoi(lengthRaw) | ||||||
| 				if err != nil { | 				if err != nil { | ||||||
| @ -153,7 +133,7 @@ func ReadSecretsConfig(appEnvPath string, composeFiles []string, stackName strin | |||||||
| } | } | ||||||
|  |  | ||||||
| // GenerateSecrets generates secrets locally and sends them to a remote server for storage. | // GenerateSecrets generates secrets locally and sends them to a remote server for storage. | ||||||
| func GenerateSecrets(cl *dockerClient.Client, secrets map[string]Secret, server string) (map[string]string, error) { | func GenerateSecrets(cl *dockerClient.Client, secrets map[string]SecretValue, appName, server string) (map[string]string, error) { | ||||||
| 	secretsGenerated := map[string]string{} | 	secretsGenerated := map[string]string{} | ||||||
| 	var mutex sync.Mutex | 	var mutex sync.Mutex | ||||||
| 	var wg sync.WaitGroup | 	var wg sync.WaitGroup | ||||||
| @ -161,10 +141,11 @@ func GenerateSecrets(cl *dockerClient.Client, secrets map[string]Secret, server | |||||||
| 	for n, v := range secrets { | 	for n, v := range secrets { | ||||||
| 		wg.Add(1) | 		wg.Add(1) | ||||||
|  |  | ||||||
| 		go func(secretName string, secret Secret) { | 		go func(secretName string, secret SecretValue) { | ||||||
| 			defer wg.Done() | 			defer wg.Done() | ||||||
|  |  | ||||||
| 			logrus.Debugf("attempting to generate and store %s on %s", secret.RemoteName, server) | 			secretRemoteName := fmt.Sprintf("%s_%s_%s", appName, secretName, secret.Version) | ||||||
|  | 			logrus.Debugf("attempting to generate and store %s on %s", secretRemoteName, server) | ||||||
|  |  | ||||||
| 			if secret.Length > 0 { | 			if secret.Length > 0 { | ||||||
| 				passwords, err := GeneratePasswords(1, uint(secret.Length)) | 				passwords, err := GeneratePasswords(1, uint(secret.Length)) | ||||||
| @ -173,9 +154,9 @@ func GenerateSecrets(cl *dockerClient.Client, secrets map[string]Secret, server | |||||||
| 					return | 					return | ||||||
| 				} | 				} | ||||||
|  |  | ||||||
| 				if err := client.StoreSecret(cl, secret.RemoteName, passwords[0], server); err != nil { | 				if err := client.StoreSecret(cl, secretRemoteName, passwords[0], server); err != nil { | ||||||
| 					if strings.Contains(err.Error(), "AlreadyExists") { | 					if strings.Contains(err.Error(), "AlreadyExists") { | ||||||
| 						logrus.Warnf("%s already exists, moving on...", secret.RemoteName) | 						logrus.Warnf("%s already exists, moving on...", secretRemoteName) | ||||||
| 						ch <- nil | 						ch <- nil | ||||||
| 					} else { | 					} else { | ||||||
| 						ch <- err | 						ch <- err | ||||||
| @ -193,9 +174,9 @@ func GenerateSecrets(cl *dockerClient.Client, secrets map[string]Secret, server | |||||||
| 					return | 					return | ||||||
| 				} | 				} | ||||||
|  |  | ||||||
| 				if err := client.StoreSecret(cl, secret.RemoteName, passphrases[0], server); err != nil { | 				if err := client.StoreSecret(cl, secretRemoteName, passphrases[0], server); err != nil { | ||||||
| 					if strings.Contains(err.Error(), "AlreadyExists") { | 					if strings.Contains(err.Error(), "AlreadyExists") { | ||||||
| 						logrus.Warnf("%s already exists, moving on...", secret.RemoteName) | 						logrus.Warnf("%s already exists, moving on...", secretRemoteName) | ||||||
| 						ch <- nil | 						ch <- nil | ||||||
| 					} else { | 					} else { | ||||||
| 						ch <- err | 						ch <- err | ||||||
| @ -244,7 +225,7 @@ func PollSecretsStatus(cl *dockerClient.Client, app config.App) (secretStatuses, | |||||||
| 		return secStats, err | 		return secStats, err | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	secretsConfig, err := ReadSecretsConfig(app.Path, composeFiles, app.StackName()) | 	secretsConfig, err := ReadSecretsConfig(app.Path, composeFiles, app.Recipe) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return secStats, err | 		return secStats, err | ||||||
| 	} | 	} | ||||||
|  | |||||||
| @ -1,30 +1,42 @@ | |||||||
| package secret | package secret | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
|  | 	"path" | ||||||
| 	"testing" | 	"testing" | ||||||
|  |  | ||||||
|  | 	"coopcloud.tech/abra/pkg/config" | ||||||
|  | 	"coopcloud.tech/abra/pkg/recipe" | ||||||
|  | 	"coopcloud.tech/abra/pkg/upstream/stack" | ||||||
|  | 	loader "coopcloud.tech/abra/pkg/upstream/stack" | ||||||
| 	"github.com/stretchr/testify/assert" | 	"github.com/stretchr/testify/assert" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| func TestReadSecretsConfig(t *testing.T) { | func TestReadSecretsConfig(t *testing.T) { | ||||||
| 	composeFiles := []string{"./testdir/compose.yaml"} | 	offline := true | ||||||
| 	secretsFromConfig, err := ReadSecretsConfig("./testdir/.env.sample", composeFiles, "test_example_com") | 	recipe, err := recipe.Get("matrix-synapse", offline) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		t.Fatal(err) | 		t.Fatal(err) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	// Simple secret | 	sampleEnv, err := recipe.SampleEnv() | ||||||
| 	assert.Equal(t, "test_example_com_test_pass_one_v2", secretsFromConfig["test_pass_one"].RemoteName) | 	if err != nil { | ||||||
| 	assert.Equal(t, "v2", secretsFromConfig["test_pass_one"].Version) | 		t.Fatal(err) | ||||||
| 	assert.Equal(t, 0, secretsFromConfig["test_pass_one"].Length) | 	} | ||||||
|  |  | ||||||
| 	// Has a length modifier | 	composeFiles := []string{path.Join(config.RECIPES_DIR, recipe.Name, "compose.yml")} | ||||||
| 	assert.Equal(t, "test_example_com_test_pass_two_v1", secretsFromConfig["test_pass_two"].RemoteName) | 	envSamplePath := path.Join(config.RECIPES_DIR, recipe.Name, ".env.sample") | ||||||
| 	assert.Equal(t, "v1", secretsFromConfig["test_pass_two"].Version) | 	secretsFromConfig, err := ReadSecretsConfig(envSamplePath, composeFiles, recipe.Name) | ||||||
| 	assert.Equal(t, 10, secretsFromConfig["test_pass_two"].Length) | 	if err != nil { | ||||||
|  | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	// Secret name does not include the secret id | 	opts := stack.Deploy{Composefiles: composeFiles} | ||||||
| 	assert.Equal(t, "test_example_com_pass_three_v2", secretsFromConfig["test_pass_three"].RemoteName) | 	config, err := loader.LoadComposefile(opts, sampleEnv) | ||||||
| 	assert.Equal(t, "v2", secretsFromConfig["test_pass_three"].Version) | 	if err != nil { | ||||||
| 	assert.Equal(t, 0, secretsFromConfig["test_pass_three"].Length) | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	for secretId := range config.Secrets { | ||||||
|  | 		assert.Contains(t, secretsFromConfig, secretId) | ||||||
|  | 	} | ||||||
| } | } | ||||||
|  | |||||||
| @ -1,3 +0,0 @@ | |||||||
| SECRET_TEST_PASS_ONE_VERSION=v2 |  | ||||||
| SECRET_TEST_PASS_TWO_VERSION=v1 # length=10 |  | ||||||
| SECRET_TEST_PASS_THREE_VERSION=v2 |  | ||||||
| @ -1,21 +0,0 @@ | |||||||
| --- |  | ||||||
| version: "3.8" |  | ||||||
|  |  | ||||||
| services: |  | ||||||
|   app: |  | ||||||
|     image: nginx:1.21.0 |  | ||||||
|     secrets: |  | ||||||
|       - test_pass_one |  | ||||||
|       - test_pass_two |  | ||||||
|       - test_pass_three |  | ||||||
|  |  | ||||||
| secrets: |  | ||||||
|   test_pass_one: |  | ||||||
|     external: true |  | ||||||
|     name: ${STACK_NAME}_test_pass_one_${SECRET_TEST_PASS_ONE_VERSION}  # should be removed |  | ||||||
|   test_pass_two: |  | ||||||
|     external: true |  | ||||||
|     name: ${STACK_NAME}_test_pass_two_${SECRET_TEST_PASS_TWO_VERSION} |  | ||||||
|   test_pass_three: |  | ||||||
|     external: true |  | ||||||
|     name: ${STACK_NAME}_pass_three_${SECRET_TEST_PASS_THREE_VERSION} # secretId and name don't match |  | ||||||
| @ -18,7 +18,7 @@ import ( | |||||||
| // | // | ||||||
| // ssh://<user>@<host> URL requires Docker 18.09 or later on the remote host. | // ssh://<user>@<host> URL requires Docker 18.09 or later on the remote host. | ||||||
| func GetConnectionHelper(daemonURL string) (*connhelper.ConnectionHelper, error) { | func GetConnectionHelper(daemonURL string) (*connhelper.ConnectionHelper, error) { | ||||||
| 	return getConnectionHelper(daemonURL, []string{"-o ConnectTimeout=60"}) | 	return getConnectionHelper(daemonURL, []string{"-o ConnectTimeout=5"}) | ||||||
| } | } | ||||||
|  |  | ||||||
| func getConnectionHelper(daemonURL string, sshFlags []string) (*connhelper.ConnectionHelper, error) { | func getConnectionHelper(daemonURL string, sshFlags []string) (*connhelper.ConnectionHelper, error) { | ||||||
|  | |||||||
| @ -1,8 +1,8 @@ | |||||||
| #!/usr/bin/env bash | #!/usr/bin/env bash | ||||||
|  |  | ||||||
| ABRA_VERSION="0.9.0-beta" | ABRA_VERSION="0.8.1-beta" | ||||||
| ABRA_RELEASE_URL="https://git.coopcloud.tech/api/v1/repos/coop-cloud/abra/releases/tags/$ABRA_VERSION" | ABRA_RELEASE_URL="https://git.coopcloud.tech/api/v1/repos/coop-cloud/abra/releases/tags/$ABRA_VERSION" | ||||||
| RC_VERSION="0.8.0-rc1-beta" | RC_VERSION="0.8.1-beta" | ||||||
| RC_VERSION_URL="https://git.coopcloud.tech/api/v1/repos/coop-cloud/abra/releases/tags/$RC_VERSION" | RC_VERSION_URL="https://git.coopcloud.tech/api/v1/repos/coop-cloud/abra/releases/tags/$RC_VERSION" | ||||||
|  |  | ||||||
| for arg in "$@"; do | for arg in "$@"; do | ||||||
| @ -65,19 +65,17 @@ function install_abra_release { | |||||||
|  |  | ||||||
|   checksums=$(wget -q -O- $checksums_url) |   checksums=$(wget -q -O- $checksums_url) | ||||||
|   checksum=$(echo "$checksums" | grep "$FILENAME" - | sed -En 's/([0-9a-f]{64})\s+'"$FILENAME"'.*/\1/p') |   checksum=$(echo "$checksums" | grep "$FILENAME" - | sed -En 's/([0-9a-f]{64})\s+'"$FILENAME"'.*/\1/p') | ||||||
|   abra_download="/tmp/abra-download" |  | ||||||
|  |  | ||||||
|   echo "downloading $ABRA_VERSION $PLATFORM binary release for abra..." |   echo "downloading $ABRA_VERSION $PLATFORM binary release for abra..." | ||||||
|  |   wget -q "$release_url" -O "$HOME/.local/bin/.abra-download" | ||||||
|   wget -q "$release_url" -O $abra_download  |   localsum=$(sha256sum $HOME/.local/bin/.abra-download | sed -En 's/([0-9a-f]{64})\s+.*/\1/p') | ||||||
|   localsum=$(sha256sum $abra_download | sed -En 's/([0-9a-f]{64})\s+.*/\1/p') |  | ||||||
|   echo "checking if checksums match..." |   echo "checking if checksums match..." | ||||||
|   if [[ "$localsum" != "$checksum" ]]; then |   if [[ "$localsum" != "$checksum" ]]; then | ||||||
|       print_checksum_error |       print_checksum_error | ||||||
|       exit 1 |       exit 1 | ||||||
|   fi |   fi | ||||||
|   echo "$(tput setaf 2)check successful!$(tput sgr0)" |   echo "$(tput setaf 2)check successful!$(tput sgr0)" | ||||||
|   mv "$abra_download" "$HOME/.local/bin/abra" |   mv "$HOME/.local/bin/.abra-download" "$HOME/.local/bin/abra" | ||||||
|   chmod +x "$HOME/.local/bin/abra" |   chmod +x "$HOME/.local/bin/abra" | ||||||
|  |  | ||||||
|   x=$(echo $PATH | grep $HOME/.local/bin) |   x=$(echo $PATH | grep $HOME/.local/bin) | ||||||
|  | |||||||
| @ -70,13 +70,13 @@ setup(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA app check "$TEST_APP_DOMAIN" |   run $ABRA app check "$TEST_APP_DOMAIN" | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   refute_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   _reset_recipe |   _reset_recipe | ||||||
| } | } | ||||||
| @ -86,7 +86,7 @@ setup(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --partial "Your branch is behind 'origin/main' by 1 commit" |   assert_output --partial 'behind 1' | ||||||
|  |  | ||||||
|   # NOTE(d1): we can't quite tell if this will fail or not in the future, so, |   # NOTE(d1): we can't quite tell if this will fail or not in the future, so, | ||||||
|   # since it isn't an important part of what we're testing here, we don't check |   # since it isn't an important part of what we're testing here, we don't check | ||||||
| @ -94,7 +94,7 @@ setup(){ | |||||||
|   run $ABRA app check "$TEST_APP_DOMAIN" --offline |   run $ABRA app check "$TEST_APP_DOMAIN" --offline | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --partial "Your branch is behind 'origin/main' by 1 commit" |   assert_output --partial 'behind 1' | ||||||
|  |  | ||||||
|   _reset_recipe |   _reset_recipe | ||||||
| } | } | ||||||
|  | |||||||
| @ -58,7 +58,7 @@ test_cmd_export" | |||||||
|   assert_success |   assert_success | ||||||
|   assert_not_exists "$ABRA_DIR/recipes/$TEST_RECIPE" |   assert_not_exists "$ABRA_DIR/recipes/$TEST_RECIPE" | ||||||
|  |  | ||||||
|   run $ABRA app cmd --local "$TEST_APP_DOMAIN" test_cmd |   run $ABRA app cmd "$TEST_APP_DOMAIN" test_cmd --local | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial 'baz' |   assert_output --partial 'baz' | ||||||
|  |  | ||||||
| @ -70,7 +70,7 @@ test_cmd_export" | |||||||
|   assert_success |   assert_success | ||||||
|   assert_exists "$ABRA_DIR/recipes/$TEST_RECIPE/foo" |   assert_exists "$ABRA_DIR/recipes/$TEST_RECIPE/foo" | ||||||
|  |  | ||||||
|   run $ABRA app cmd --local "$TEST_APP_DOMAIN" test_cmd |   run $ABRA app cmd "$TEST_APP_DOMAIN" test_cmd --local | ||||||
|   assert_failure |   assert_failure | ||||||
|   assert_output --partial 'locally unstaged changes' |   assert_output --partial 'locally unstaged changes' | ||||||
|  |  | ||||||
| @ -83,7 +83,7 @@ test_cmd_export" | |||||||
|   assert_success |   assert_success | ||||||
|   assert_exists "$ABRA_DIR/recipes/$TEST_RECIPE/foo" |   assert_exists "$ABRA_DIR/recipes/$TEST_RECIPE/foo" | ||||||
|  |  | ||||||
|   run $ABRA app cmd --local --chaos "$TEST_APP_DOMAIN" test_cmd |   run $ABRA app cmd "$TEST_APP_DOMAIN" test_cmd --local --chaos | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial 'baz' |   assert_output --partial 'baz' | ||||||
|  |  | ||||||
| @ -96,14 +96,14 @@ test_cmd_export" | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA app cmd --local "$TEST_APP_DOMAIN" test_cmd |   run $ABRA app cmd "$TEST_APP_DOMAIN" test_cmd --local | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial 'baz' |   assert_output --partial 'baz' | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --partial "up to date" |   refute_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   _reset_recipe "$TEST_RECIPE" |   _reset_recipe "$TEST_RECIPE" | ||||||
| } | } | ||||||
| @ -113,14 +113,14 @@ test_cmd_export" | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA app cmd --local --offline "$TEST_APP_DOMAIN" test_cmd |   run $ABRA app cmd "$TEST_APP_DOMAIN" test_cmd --local --offline | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial 'baz' |   assert_output --partial 'baz' | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   _reset_recipe "$TEST_RECIPE" |   _reset_recipe "$TEST_RECIPE" | ||||||
| } | } | ||||||
| @ -132,13 +132,13 @@ test_cmd_export" | |||||||
| } | } | ||||||
|  |  | ||||||
| @test "error if missing arguments when passing --local" { | @test "error if missing arguments when passing --local" { | ||||||
|   run $ABRA app cmd --local "$TEST_APP_DOMAIN" |   run $ABRA app cmd "$TEST_APP_DOMAIN" --local | ||||||
|   assert_failure |   assert_failure | ||||||
|   assert_output --partial 'missing arguments' |   assert_output --partial 'missing arguments' | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "cannot use --local and --user at same time" { | @test "cannot use --local and --user at same time" { | ||||||
|   run $ABRA app cmd --local --user root "$TEST_APP_DOMAIN" test_cmd |   run $ABRA app cmd "$TEST_APP_DOMAIN" test_cmd --local --user root | ||||||
|   assert_failure |   assert_failure | ||||||
|   assert_output --partial 'cannot use --local & --user together' |   assert_output --partial 'cannot use --local & --user together' | ||||||
| } | } | ||||||
| @ -147,7 +147,7 @@ test_cmd_export" | |||||||
|   run rm -rf "$ABRA_DIR/recipes/$TEST_RECIPE/abra.sh" |   run rm -rf "$ABRA_DIR/recipes/$TEST_RECIPE/abra.sh" | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run $ABRA app cmd --local --chaos "$TEST_APP_DOMAIN" test_cmd |   run $ABRA app cmd "$TEST_APP_DOMAIN" test_cmd --local --chaos | ||||||
|   assert_failure |   assert_failure | ||||||
|   assert_output --partial "$ABRA_DIR/recipes/$TEST_RECIPE/abra.sh does not exist" |   assert_output --partial "$ABRA_DIR/recipes/$TEST_RECIPE/abra.sh does not exist" | ||||||
|  |  | ||||||
| @ -155,25 +155,25 @@ test_cmd_export" | |||||||
| } | } | ||||||
|  |  | ||||||
| @test "error if missing command" { | @test "error if missing command" { | ||||||
|   run $ABRA app cmd --local "$TEST_APP_DOMAIN" doesnt_exist |   run $ABRA app cmd "$TEST_APP_DOMAIN" doesnt_exist --local | ||||||
|   assert_failure |   assert_failure | ||||||
|   assert_output --partial "doesn't have a doesnt_exist function" |   assert_output --partial "doesn't have a doesnt_exist function" | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "run --local command" { | @test "run --local command" { | ||||||
|   run $ABRA app cmd --local "$TEST_APP_DOMAIN" test_cmd |   run $ABRA app cmd "$TEST_APP_DOMAIN" test_cmd --local | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial 'baz' |   assert_output --partial 'baz' | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "run command with single arg" { | @test "run command with single arg" { | ||||||
|   run $ABRA app cmd --local "$TEST_APP_DOMAIN" test_cmd_arg -- bing |   run $ABRA app cmd "$TEST_APP_DOMAIN" test_cmd_arg --local -- bing | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial 'bing' |   assert_output --partial 'bing' | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "run command with several args" { | @test "run command with several args" { | ||||||
|   run $ABRA app cmd --local "$TEST_APP_DOMAIN" test_cmd_args -- bong bang |   run $ABRA app cmd "$TEST_APP_DOMAIN" test_cmd_args --local -- bong bang | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial 'bong bang' |   assert_output --partial 'bong bang' | ||||||
| } | } | ||||||
|  | |||||||
| @ -5,11 +5,9 @@ setup_file(){ | |||||||
|   _common_setup |   _common_setup | ||||||
|   _add_server |   _add_server | ||||||
|   _new_app |   _new_app | ||||||
|   _deploy_app |  | ||||||
| } | } | ||||||
|  |  | ||||||
| teardown_file(){ | teardown_file(){ | ||||||
|   _undeploy_app |  | ||||||
|   _rm_app |   _rm_app | ||||||
|   _rm_server |   _rm_server | ||||||
| } | } | ||||||
| @ -19,6 +17,13 @@ setup(){ | |||||||
|   _common_setup |   _common_setup | ||||||
| } | } | ||||||
|  |  | ||||||
|  | teardown(){ | ||||||
|  |   # https://github.com/bats-core/bats-core/issues/383#issuecomment-738628888 | ||||||
|  |   if [[ -z "${BATS_TEST_COMPLETED}" ]]; then | ||||||
|  |     _undeploy_app | ||||||
|  |   fi | ||||||
|  | } | ||||||
|  |  | ||||||
| @test "validate app argument" { | @test "validate app argument" { | ||||||
|   run $ABRA app cp |   run $ABRA app cp | ||||||
|   assert_failure |   assert_failure | ||||||
| @ -49,120 +54,68 @@ setup(){ | |||||||
|   assert_output --partial 'arguments must take $SERVICE:$PATH form' |   assert_output --partial 'arguments must take $SERVICE:$PATH form' | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "error if local file missing" { | @test "detect 'coming FROM' syntax" { | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" thisfileshouldnotexist.txt app:/somewhere |   run $ABRA app cp "$TEST_APP_DOMAIN" app:/myfile.txt . --debug | ||||||
|   assert_failure |   assert_failure | ||||||
|   assert_output --partial 'local stat thisfileshouldnotexist.txt: no such file or directory' |   assert_output --partial 'coming FROM the container' | ||||||
|  | } | ||||||
|  |  | ||||||
|  | @test "detect 'going TO' syntax" { | ||||||
|  |   run $ABRA app cp "$TEST_APP_DOMAIN" myfile.txt app:/somewhere --debug | ||||||
|  |   assert_failure | ||||||
|  |   assert_output --partial 'going TO the container' | ||||||
|  | } | ||||||
|  |  | ||||||
|  | @test "error if local file missing" { | ||||||
|  |   run $ABRA app cp "$TEST_APP_DOMAIN" myfile.txt app:/somewhere | ||||||
|  |   assert_failure | ||||||
|  |   assert_output --partial 'myfile.txt does not exist locally?' | ||||||
| } | } | ||||||
|  |  | ||||||
| # bats test_tags=slow | # bats test_tags=slow | ||||||
| @test "error if service doesn't exist" { | @test "error if service doesn't exist" { | ||||||
|   _mkfile "$BATS_TMPDIR/myfile.txt" "foo" |   _deploy_app | ||||||
|  |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" "$BATS_TMPDIR/myfile.txt" doesnt_exist:/ --debug |   run bash -c "echo foo >> $BATS_TMPDIR/myfile.txt" | ||||||
|  |   assert_success | ||||||
|  |  | ||||||
|  |   run $ABRA app cp "$TEST_APP_DOMAIN" "$BATS_TMPDIR/myfile.txt" doesnt_exist:/ | ||||||
|   assert_failure |   assert_failure | ||||||
|   assert_output --partial 'no containers matching' |   assert_output --partial 'no containers matching' | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/myfile.txt" |   run rm -rf "$BATS_TMPDIR/myfile.txt" | ||||||
|  |   assert_success | ||||||
|  |  | ||||||
|  |   _undeploy_app | ||||||
| } | } | ||||||
|  |  | ||||||
| # bats test_tags=slow | # bats test_tags=slow | ||||||
| @test "copy local file to container directory" { | @test "copy to container" { | ||||||
|   _mkfile "$BATS_TMPDIR/myfile.txt" "foo" |   _deploy_app | ||||||
|  |  | ||||||
|  |   run bash -c "echo foo >> $BATS_TMPDIR/myfile.txt" | ||||||
|  |   assert_success | ||||||
|  |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" "$BATS_TMPDIR/myfile.txt" app:/etc |   run $ABRA app cp "$TEST_APP_DOMAIN" "$BATS_TMPDIR/myfile.txt" app:/etc | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app cat /etc/myfile.txt |   run rm -rf "$BATS_TMPDIR/myfile.txt" | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial "foo" |  | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/myfile.txt" |   _undeploy_app | ||||||
|   _rm_remote "/etc/myfile.txt" |  | ||||||
| } | } | ||||||
|  |  | ||||||
| # bats test_tags=slow | # bats test_tags=slow | ||||||
| @test "copy local file to container file (and override on remote)" { | @test "copy from container" { | ||||||
|   _mkfile "$BATS_TMPDIR/myfile.txt" "foo" |   _deploy_app | ||||||
|  |  | ||||||
|   # create |   run bash -c "echo foo >> $BATS_TMPDIR/myfile.txt" | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" "$BATS_TMPDIR/myfile.txt" app:/etc/myfile.txt |  | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app cat /etc/myfile.txt |   run $ABRA app cp "$TEST_APP_DOMAIN" "$BATS_TMPDIR/myfile.txt" app:/etc | ||||||
|   assert_success |  | ||||||
|   assert_output --partial "foo" |  | ||||||
|  |  | ||||||
|   _mkfile "$BATS_TMPDIR/myfile.txt" "bar" |  | ||||||
|  |  | ||||||
|   # override |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" "$BATS_TMPDIR/myfile.txt" app:/etc/myfile.txt |  | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app cat /etc/myfile.txt |   run rm -rf "$BATS_TMPDIR/myfile.txt" | ||||||
|   assert_success |  | ||||||
|   assert_output --partial "bar" |  | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/myfile.txt" |  | ||||||
|   _rm_remote "/etc/myfile.txt" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| # bats test_tags=slow |  | ||||||
| @test "copy local file to container file (and rename)" { |  | ||||||
|   _mkfile "$BATS_TMPDIR/myfile.txt" "foo" |  | ||||||
|  |  | ||||||
|   # rename |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" "$BATS_TMPDIR/myfile.txt" app:/etc/myfile2.txt |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app cat /etc/myfile2.txt |  | ||||||
|   assert_success |  | ||||||
|   assert_output --partial "foo" |  | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/myfile.txt" |  | ||||||
|   _rm_remote "/etc/myfile2.txt" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| # bats test_tags=slow |  | ||||||
| @test "copy local directory to container directory (and creates missing directory)" { |  | ||||||
|   _mkdir "$BATS_TMPDIR/mydir" |  | ||||||
|   _mkfile "$BATS_TMPDIR/mydir/myfile.txt" "foo" |  | ||||||
|  |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" "$BATS_TMPDIR/mydir" app:/etc |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app ls /etc/mydir |  | ||||||
|   assert_success |  | ||||||
|   assert_output --partial "myfile.txt" |  | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/mydir" |  | ||||||
|   _rm_remote "/etc/mydir" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| # bats test_tags=slow |  | ||||||
| @test "copy local files to container directory" { |  | ||||||
|   _mkdir "$BATS_TMPDIR/mydir" |  | ||||||
|   _mkfile "$BATS_TMPDIR/mydir/myfile.txt" "foo" |  | ||||||
|   _mkfile "$BATS_TMPDIR/mydir/myfile2.txt" "foo" |  | ||||||
|  |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" "$BATS_TMPDIR/mydir/" app:/etc |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app ls /etc/myfile.txt |  | ||||||
|   assert_success |  | ||||||
|   assert_output --partial "myfile.txt" |  | ||||||
|  |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app ls /etc/myfile2.txt |  | ||||||
|   assert_success |  | ||||||
|   assert_output --partial "myfile2.txt" |  | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/mydir" |  | ||||||
|   _rm_remote "/etc/myfile*" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| # bats test_tags=slow |  | ||||||
| @test "copy container file to local directory" { |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app bash -c "echo foo > /etc/myfile.txt" |  | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" app:/etc/myfile.txt "$BATS_TMPDIR" |   run $ABRA app cp "$TEST_APP_DOMAIN" app:/etc/myfile.txt "$BATS_TMPDIR" | ||||||
| @ -170,76 +123,8 @@ setup(){ | |||||||
|   assert_exists "$BATS_TMPDIR/myfile.txt" |   assert_exists "$BATS_TMPDIR/myfile.txt" | ||||||
|   assert bash -c "cat $BATS_TMPDIR/myfile.txt | grep -q foo" |   assert bash -c "cat $BATS_TMPDIR/myfile.txt | grep -q foo" | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/myfile.txt" |   run rm -rf "$BATS_TMPDIR/myfile.txt" | ||||||
|   _rm_remote "/etc/myfile.txt" |   assert_success | ||||||
| } |  | ||||||
|  |   _undeploy_app | ||||||
| # bats test_tags=slow |  | ||||||
| @test "copy container file to local file" { |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app bash -c "echo foo > /etc/myfile.txt" |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" app:/etc/myfile.txt "$BATS_TMPDIR/myfile.txt" |  | ||||||
|   assert_success |  | ||||||
|   assert_exists "$BATS_TMPDIR/myfile.txt" |  | ||||||
|   assert bash -c "cat $BATS_TMPDIR/myfile.txt | grep -q foo" |  | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/myfile.txt" |  | ||||||
|   _rm_remote "/etc/myfile.txt" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| # bats test_tags=slow |  | ||||||
| @test "copy container file to local file and rename" { |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app bash -c "echo foo > /etc/myfile.txt" |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" app:/etc/myfile.txt "$BATS_TMPDIR/myfile2.txt" |  | ||||||
|   assert_success |  | ||||||
|   assert_exists "$BATS_TMPDIR/myfile2.txt" |  | ||||||
|   assert bash -c "cat $BATS_TMPDIR/myfile2.txt | grep -q foo" |  | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/myfile2.txt" |  | ||||||
|   _rm_remote "/etc/myfile.txt" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| # bats test_tags=slow |  | ||||||
| @test "copy container directory to local directory" { |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app bash -c "echo foo > /etc/myfile.txt" |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app bash -c "echo bar > /etc/myfile2.txt" |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   mkdir "$BATS_TMPDIR/mydir" |  | ||||||
|  |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" app:/etc "$BATS_TMPDIR/mydir" |  | ||||||
|   assert_success |  | ||||||
|   assert_exists "$BATS_TMPDIR/mydir/etc/myfile.txt" |  | ||||||
|   assert_success |  | ||||||
|   assert_exists "$BATS_TMPDIR/mydir/etc/myfile2.txt" |  | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/mydir" |  | ||||||
|   _rm_remote "/etc/myfile.txt" |  | ||||||
|   _rm_remote "/etc/myfile2.txt" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| # bats test_tags=slow |  | ||||||
| @test "copy container files to local directory" { |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app bash -c "echo foo > /etc/myfile.txt" |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app bash -c "echo bar > /etc/myfile2.txt" |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   mkdir "$BATS_TMPDIR/mydir" |  | ||||||
|  |  | ||||||
|   run $ABRA app cp "$TEST_APP_DOMAIN" app:/etc/ "$BATS_TMPDIR/mydir" |  | ||||||
|   assert_success |  | ||||||
|   assert_exists "$BATS_TMPDIR/mydir/myfile.txt" |  | ||||||
|   assert_success |  | ||||||
|   assert_exists "$BATS_TMPDIR/mydir/myfile2.txt" |  | ||||||
|  |  | ||||||
|   _rm "$BATS_TMPDIR/mydir" |  | ||||||
|   _rm_remote "/etc/myfile.txt" |  | ||||||
|   _rm_remote "/etc/myfile2.txt" |  | ||||||
| } | } | ||||||
|  | |||||||
| @ -16,7 +16,6 @@ teardown_file(){ | |||||||
| setup(){ | setup(){ | ||||||
|   load "$PWD/tests/integration/helpers/common" |   load "$PWD/tests/integration/helpers/common" | ||||||
|   _common_setup |   _common_setup | ||||||
|   _reset_recipe |  | ||||||
| } | } | ||||||
|  |  | ||||||
| teardown(){ | teardown(){ | ||||||
| @ -83,13 +82,13 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA app deploy "$TEST_APP_DOMAIN" --no-input --no-converge-checks |   run $ABRA app deploy "$TEST_APP_DOMAIN" --no-input --no-converge-checks | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   refute_output --regexp 'behind .* 3 commits' |   refute_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   _reset_recipe |   _reset_recipe | ||||||
|   _undeploy_app |   _undeploy_app | ||||||
| @ -101,7 +100,7 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   # NOTE(d1): need to use --chaos to force same commit |   # NOTE(d1): need to use --chaos to force same commit | ||||||
|   run $ABRA app deploy "$TEST_APP_DOMAIN" \ |   run $ABRA app deploy "$TEST_APP_DOMAIN" \ | ||||||
| @ -109,7 +108,7 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   _undeploy_app |   _undeploy_app | ||||||
|   _reset_recipe |   _reset_recipe | ||||||
| @ -117,9 +116,6 @@ teardown(){ | |||||||
|  |  | ||||||
| # bats test_tags=slow | # bats test_tags=slow | ||||||
| @test "deploy latest commit if no published versions and no --chaos" { | @test "deploy latest commit if no published versions and no --chaos" { | ||||||
|   # TODO(d1): fix with a new test recipe which has no published versions? |  | ||||||
|   skip "known issue, abra-test-recipe has published versions now" |  | ||||||
|  |  | ||||||
|   latestCommit="$(git -C "$ABRA_DIR/recipes/$TEST_RECIPE" rev-parse --short HEAD)" |   latestCommit="$(git -C "$ABRA_DIR/recipes/$TEST_RECIPE" rev-parse --short HEAD)" | ||||||
|  |  | ||||||
|   _remove_tags |   _remove_tags | ||||||
| @ -144,7 +140,7 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   threeCommitsBack="$(git -C "$ABRA_DIR/recipes/$TEST_RECIPE" rev-parse --short HEAD)" |   threeCommitsBack="$(git -C "$ABRA_DIR/recipes/$TEST_RECIPE" rev-parse --short HEAD)" | ||||||
|  |  | ||||||
| @ -277,10 +273,6 @@ teardown(){ | |||||||
| } | } | ||||||
|  |  | ||||||
| @test "ensure domain is checked" { | @test "ensure domain is checked" { | ||||||
|   if [[ "$TEST_SERVER" == "default" ]]; then |  | ||||||
|       skip "domain checks are disabled for local server" |  | ||||||
|   fi |  | ||||||
|  |  | ||||||
|   appDomain="custom-html.DOESNTEXIST" |   appDomain="custom-html.DOESNTEXIST" | ||||||
|  |  | ||||||
|   run $ABRA app new custom-html \ |   run $ABRA app new custom-html \ | ||||||
|  | |||||||
| @ -18,24 +18,9 @@ setup(){ | |||||||
| } | } | ||||||
|  |  | ||||||
| teardown(){ | teardown(){ | ||||||
|   load "$PWD/tests/integration/helpers/common" |  | ||||||
|   _rm_app |   _rm_app | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "autocomplete" { |  | ||||||
|   run $ABRA app new --generate-bash-completion |  | ||||||
|   assert_success |  | ||||||
|   assert_output --partial "traefik" |  | ||||||
|   assert_output --partial "abra-test-recipe" |  | ||||||
|  |  | ||||||
|   # Note: this test needs to be updated when a new version of the test recipe is published. |  | ||||||
|   run $ABRA app new abra-test-recipe --generate-bash-completion |  | ||||||
|   assert_success |  | ||||||
|   assert_output "0.1.0+1.20.0 |  | ||||||
| 0.1.1+1.20.2 |  | ||||||
| 0.2.0+1.21.0" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| @test "create new app" { | @test "create new app" { | ||||||
|   run $ABRA app new "$TEST_RECIPE" \ |   run $ABRA app new "$TEST_RECIPE" \ | ||||||
|     --no-input \ |     --no-input \ | ||||||
| @ -43,29 +28,10 @@ teardown(){ | |||||||
|     --domain "$TEST_APP_DOMAIN" |     --domain "$TEST_APP_DOMAIN" | ||||||
|   assert_success |   assert_success | ||||||
|   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" |   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |  | ||||||
|   assert_output --partial "up to date" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| @test "create new app with version" { |  | ||||||
|   run $ABRA app new "$TEST_RECIPE" 0.1.1+1.20.2 \ |  | ||||||
|     --no-input \ |  | ||||||
|     --server "$TEST_SERVER" \ |  | ||||||
|     --domain "$TEST_APP_DOMAIN" |  | ||||||
|   assert_success |  | ||||||
|   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" |  | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" log -1 |  | ||||||
|   assert_output --partial "453db7121c0a56a7a8f15378f18fe3bf21ccfdef" |  | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "does not overwrite existing env files" { | @test "does not overwrite existing env files" { | ||||||
|   run $ABRA app new "$TEST_RECIPE" \ |   _new_app | ||||||
|     --no-input \ |  | ||||||
|     --server "$TEST_SERVER" \ |  | ||||||
|     --domain "$TEST_APP_DOMAIN" |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   run $ABRA app new "$TEST_RECIPE" \ |   run $ABRA app new "$TEST_RECIPE" \ | ||||||
|     --no-input \ |     --no-input \ | ||||||
| @ -108,7 +74,8 @@ teardown(){ | |||||||
|     --no-input \ |     --no-input \ | ||||||
|     --chaos \ |     --chaos \ | ||||||
|     --server "$TEST_SERVER" \ |     --server "$TEST_SERVER" \ | ||||||
|     --domain "$TEST_APP_DOMAIN" |     --domain "$TEST_APP_DOMAIN" \ | ||||||
|  |     --secrets | ||||||
|   assert_success |   assert_success | ||||||
|   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" |   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" | ||||||
|  |  | ||||||
| @ -121,17 +88,18 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA app new "$TEST_RECIPE" \ |   run $ABRA app new "$TEST_RECIPE" \ | ||||||
|     --no-input \ |     --no-input \ | ||||||
|     --server "$TEST_SERVER" \ |     --server "$TEST_SERVER" \ | ||||||
|     --domain "$TEST_APP_DOMAIN" |     --domain "$TEST_APP_DOMAIN" \ | ||||||
|  |     --secrets | ||||||
|   assert_success |   assert_success | ||||||
|   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" |   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --partial "up to date" |   refute_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   _reset_recipe |   _reset_recipe | ||||||
| } | } | ||||||
| @ -141,7 +109,7 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   # NOTE(d1): need to use --chaos to force same commit |   # NOTE(d1): need to use --chaos to force same commit | ||||||
|   run $ABRA app new "$TEST_RECIPE" \ |   run $ABRA app new "$TEST_RECIPE" \ | ||||||
| @ -149,12 +117,13 @@ teardown(){ | |||||||
|     --offline \ |     --offline \ | ||||||
|     --chaos \ |     --chaos \ | ||||||
|     --server "$TEST_SERVER" \ |     --server "$TEST_SERVER" \ | ||||||
|     --domain "$TEST_APP_DOMAIN" |     --domain "$TEST_APP_DOMAIN" \ | ||||||
|  |     --secrets | ||||||
|   assert_success |   assert_success | ||||||
|   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" |   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   _reset_recipe |   _reset_recipe | ||||||
| } | } | ||||||
|  | |||||||
| @ -104,10 +104,10 @@ teardown(){ | |||||||
|  |  | ||||||
|   _undeploy_app |   _undeploy_app | ||||||
|  |  | ||||||
|   # TODO: should wait as long as volume is no longer in use |   # NOTE(d1): to let the stack come down before nuking volumes | ||||||
|   sleep 10 |   sleep 5 | ||||||
|  |  | ||||||
|   run $ABRA app volume rm "$TEST_APP_DOMAIN" --no-input |   run $ABRA app volume rm "$TEST_APP_DOMAIN" --force | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run $ABRA app volume ls "$TEST_APP_DOMAIN" |   run $ABRA app volume ls "$TEST_APP_DOMAIN" | ||||||
| @ -132,6 +132,9 @@ teardown(){ | |||||||
|  |  | ||||||
|   _undeploy_app |   _undeploy_app | ||||||
|  |  | ||||||
|  |   # NOTE(d1): to let the stack come down before nuking volumes | ||||||
|  |   sleep 5 | ||||||
|  |  | ||||||
|   run $ABRA app rm "$TEST_APP_DOMAIN" --no-input |   run $ABRA app rm "$TEST_APP_DOMAIN" --no-input | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial 'test-volume' |   assert_output --partial 'test-volume' | ||||||
|  | |||||||
| @ -109,13 +109,13 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA app restore "$TEST_APP_DOMAIN" app |   run $ABRA app restore "$TEST_APP_DOMAIN" app DOESNTEXIST | ||||||
|   assert_failure |   assert_failure | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --partial "up to date" |   refute_output --partial 'behind 3' | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "ensure recipe not up to date if --offline" { | @test "ensure recipe not up to date if --offline" { | ||||||
| @ -126,19 +126,19 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA app restore "$TEST_APP_DOMAIN" app --offline |   run $ABRA app restore "$TEST_APP_DOMAIN" app DOESNTEXIST --offline | ||||||
|   assert_failure |   assert_failure | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" checkout "$latestCommit" |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" checkout "$latestCommit" | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --partial "HEAD detached at $latestCommit" |   refute_output --partial 'behind 3' | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "error if missing service" { | @test "error if missing service" { | ||||||
|  | |||||||
| @ -50,13 +50,13 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA app rollback "$TEST_APP_DOMAIN" --no-input --no-converge-checks |   run $ABRA app rollback "$TEST_APP_DOMAIN" --no-input --no-converge-checks | ||||||
|   assert_failure |   assert_failure | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --partial "up to date" |   refute_output --partial 'behind 3' | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "ensure recipe not up to date if --offline" { | @test "ensure recipe not up to date if --offline" { | ||||||
| @ -67,14 +67,14 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA app rollback "$TEST_APP_DOMAIN" \ |   run $ABRA app rollback "$TEST_APP_DOMAIN" \ | ||||||
|     --no-input --no-converge-checks --offline |     --no-input --no-converge-checks --offline | ||||||
|   assert_failure |   assert_failure | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" checkout "$latestCommit" |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" checkout "$latestCommit" | ||||||
|   assert_success |   assert_success | ||||||
| @ -131,7 +131,7 @@ teardown(){ | |||||||
|   latestCommit="$(git -C "$ABRA_DIR/recipes/$TEST_RECIPE" rev-parse --short HEAD)" |   latestCommit="$(git -C "$ABRA_DIR/recipes/$TEST_RECIPE" rev-parse --short HEAD)" | ||||||
|  |  | ||||||
|   run $ABRA app deploy "$TEST_APP_DOMAIN" \ |   run $ABRA app deploy "$TEST_APP_DOMAIN" \ | ||||||
|     --no-input --chaos |     --no-input --no-converge-checks --chaos | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial "$latestCommit" |   assert_output --partial "$latestCommit" | ||||||
|   assert_output --partial 'chaos' |   assert_output --partial 'chaos' | ||||||
|  | |||||||
| @ -8,7 +8,7 @@ setup_file(){ | |||||||
|   run $ABRA app new "$TEST_RECIPE" \ |   run $ABRA app new "$TEST_RECIPE" \ | ||||||
|     --no-input \ |     --no-input \ | ||||||
|     --server "$TEST_SERVER" \ |     --server "$TEST_SERVER" \ | ||||||
|     --domain "$TEST_APP_DOMAIN" |     --domain "$TEST_APP_DOMAIN" \ | ||||||
|   assert_success |   assert_success | ||||||
|   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" |   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" | ||||||
| } | } | ||||||
| @ -19,6 +19,13 @@ teardown_file(){ | |||||||
|   _reset_recipe |   _reset_recipe | ||||||
| } | } | ||||||
|  |  | ||||||
|  | teardown(){ | ||||||
|  |   # https://github.com/bats-core/bats-core/issues/383#issuecomment-738628888 | ||||||
|  |   if [[ -z "${BATS_TEST_COMPLETED}" ]]; then | ||||||
|  |     _undeploy_app | ||||||
|  |   fi | ||||||
|  | } | ||||||
|  |  | ||||||
| setup(){ | setup(){ | ||||||
|   load "$PWD/tests/integration/helpers/common" |   load "$PWD/tests/integration/helpers/common" | ||||||
|   _common_setup |   _common_setup | ||||||
|  | |||||||
| @ -59,8 +59,6 @@ teardown(){ | |||||||
|  |  | ||||||
| # bats test_tags=slow | # bats test_tags=slow | ||||||
| @test "error if not in catalogue" { | @test "error if not in catalogue" { | ||||||
|   skip "known issue, see https://git.coopcloud.tech/coop-cloud/recipes-catalogue-json/issues/6" |  | ||||||
|  |  | ||||||
|   _deploy_app |   _deploy_app | ||||||
|  |  | ||||||
|   run $ABRA app version "$TEST_APP_DOMAIN" |   run $ABRA app version "$TEST_APP_DOMAIN" | ||||||
| @ -94,7 +92,7 @@ teardown(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|  # NOTE(d1): to let the stack come down before nuking volumes |  # NOTE(d1): to let the stack come down before nuking volumes | ||||||
|   sleep 5 |   sleep 3 | ||||||
|  |  | ||||||
|   run $ABRA app volume remove "$appDomain" --no-input |   run $ABRA app volume remove "$appDomain" --no-input | ||||||
|   assert_success |   assert_success | ||||||
|  | |||||||
| @ -79,7 +79,7 @@ teardown(){ | |||||||
|   _undeploy_app |   _undeploy_app | ||||||
|  |  | ||||||
|   # NOTE(d1): to let the stack come down before nuking volumes |   # NOTE(d1): to let the stack come down before nuking volumes | ||||||
|   sleep 10 |   sleep 5 | ||||||
|  |  | ||||||
|   run $ABRA app volume rm "$TEST_APP_DOMAIN" --force |   run $ABRA app volume rm "$TEST_APP_DOMAIN" --force | ||||||
|   assert_success |   assert_success | ||||||
| @ -93,7 +93,7 @@ teardown(){ | |||||||
|   _undeploy_app |   _undeploy_app | ||||||
|  |  | ||||||
|   # NOTE(d1): to let the stack come down before nuking volumes |   # NOTE(d1): to let the stack come down before nuking volumes | ||||||
|   sleep 10 |   sleep 5 | ||||||
|  |  | ||||||
|   run $ABRA app volume rm "$TEST_APP_DOMAIN" --force |   run $ABRA app volume rm "$TEST_APP_DOMAIN" --force | ||||||
|   assert_success |   assert_success | ||||||
|  | |||||||
| @ -49,7 +49,7 @@ _reset_app(){ | |||||||
|   run $ABRA app new "$TEST_RECIPE" \ |   run $ABRA app new "$TEST_RECIPE" \ | ||||||
|     --no-input \ |     --no-input \ | ||||||
|     --server "$TEST_SERVER" \ |     --server "$TEST_SERVER" \ | ||||||
|     --domain "$TEST_APP_DOMAIN" |     --domain "$TEST_APP_DOMAIN" \ | ||||||
|   assert_success |   assert_success | ||||||
|   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" |   assert_exists "$ABRA_DIR/servers/$TEST_SERVER/$TEST_APP_DOMAIN.env" | ||||||
| } | } | ||||||
|  | |||||||
| @ -5,7 +5,6 @@ _common_setup() { | |||||||
|   bats_load_library bats-assert |   bats_load_library bats-assert | ||||||
|   bats_load_library bats-file |   bats_load_library bats-file | ||||||
|  |  | ||||||
|   load "$PWD/tests/integration/helpers/file" |  | ||||||
|   load "$PWD/tests/integration/helpers/app" |   load "$PWD/tests/integration/helpers/app" | ||||||
|   load "$PWD/tests/integration/helpers/git" |   load "$PWD/tests/integration/helpers/git" | ||||||
|   load "$PWD/tests/integration/helpers/recipe" |   load "$PWD/tests/integration/helpers/recipe" | ||||||
|  | |||||||
| @ -1,24 +0,0 @@ | |||||||
| _mkfile() { |  | ||||||
|   run bash -c "echo $2 > $1" |  | ||||||
|   assert_success |  | ||||||
| } |  | ||||||
|  |  | ||||||
| _mkfile_remote() { |  | ||||||
|   run $ABRA app run "$TEST_APP_DOMAIN" app "bash -c \"echo $2 > $1\"" |  | ||||||
|   assert_success |  | ||||||
| } |  | ||||||
|  |  | ||||||
| _mkdir() { |  | ||||||
|   run bash -c "mkdir -p $1" |  | ||||||
|   assert_success |  | ||||||
| } |  | ||||||
|  |  | ||||||
| _rm() { |  | ||||||
|   run rm -rf "$1" |  | ||||||
|   assert_success |  | ||||||
| } |  | ||||||
|  |  | ||||||
| _rm_remote() { |  | ||||||
|   run "$ABRA" app run "$TEST_APP_DOMAIN" app rm -rf "$1" |  | ||||||
|   assert_success |  | ||||||
| } |  | ||||||
| @ -28,10 +28,3 @@ _reset_tags() { | |||||||
|   assert_success |   assert_success | ||||||
|   refute_output '0' |   refute_output '0' | ||||||
| } | } | ||||||
|  |  | ||||||
| _set_git_author() { |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" config --local user.email test@example.com |  | ||||||
|   assert_success |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" config --local user.name test |  | ||||||
|   assert_success |  | ||||||
| } |  | ||||||
|  | |||||||
| @ -11,11 +11,7 @@ _add_server() { | |||||||
| } | } | ||||||
|  |  | ||||||
| _rm_server() { | _rm_server() { | ||||||
|   if [[ "$TEST_SERVER" == "default" ]]; then |  | ||||||
|       run rm -rf "$ABRA_DIR/servers/default" |  | ||||||
|   else |  | ||||||
|   run $ABRA server remove --no-input "$TEST_SERVER" |   run $ABRA server remove --no-input "$TEST_SERVER" | ||||||
|   fi |  | ||||||
|   assert_success |   assert_success | ||||||
|   assert_not_exists "$ABRA_DIR/servers/$TEST_SERVER" |   assert_not_exists "$ABRA_DIR/servers/$TEST_SERVER" | ||||||
| } | } | ||||||
|  | |||||||
| @ -5,17 +5,7 @@ setup() { | |||||||
|   _common_setup |   _common_setup | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "recipe fetch all" { | @test "recipe fetch" { | ||||||
|   run rm -rf "$ABRA_DIR/recipes/matrix-synapse" |  | ||||||
|   assert_success |  | ||||||
|   assert_not_exists "$ABRA_DIR/recipes/matrix-synapse" |  | ||||||
|  |  | ||||||
|   run $ABRA recipe fetch |  | ||||||
|   assert_success |  | ||||||
|   assert_exists "$ABRA_DIR/recipes/matrix-synapse" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| @test "recipe fetch single recipe" { |  | ||||||
|   run rm -rf "$ABRA_DIR/recipes/matrix-synapse" |   run rm -rf "$ABRA_DIR/recipes/matrix-synapse" | ||||||
|   assert_success |   assert_success | ||||||
|   assert_not_exists "$ABRA_DIR/recipes/matrix-synapse" |   assert_not_exists "$ABRA_DIR/recipes/matrix-synapse" | ||||||
|  | |||||||
| @ -66,13 +66,13 @@ setup() { | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA recipe lint "$TEST_RECIPE" |   run $ABRA recipe lint "$TEST_RECIPE" | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   refute_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   _reset_recipe |   _reset_recipe | ||||||
| } | } | ||||||
| @ -82,13 +82,13 @@ setup() { | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA recipe lint "$TEST_RECIPE" --offline |   run $ABRA recipe lint "$TEST_RECIPE" --offline | ||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   _reset_recipe |   _reset_recipe | ||||||
| } | } | ||||||
|  | |||||||
| @ -15,11 +15,6 @@ teardown_file(){ | |||||||
| setup(){ | setup(){ | ||||||
|   load "$PWD/tests/integration/helpers/common" |   load "$PWD/tests/integration/helpers/common" | ||||||
|   _common_setup |   _common_setup | ||||||
|   _set_git_author |  | ||||||
| } |  | ||||||
|  |  | ||||||
| teardown() { |  | ||||||
|   _reset_recipe |  | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "validate recipe argument" { | @test "validate recipe argument" { | ||||||
| @ -56,6 +51,8 @@ teardown() { | |||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" tag --list |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" tag --list | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial '0.2.1+1.21.6' |   assert_output --partial '0.2.1+1.21.6' | ||||||
|  |  | ||||||
|  |   _reset_recipe | ||||||
| } | } | ||||||
|  |  | ||||||
| # NOTE(d1): this test can't assert hardcoded versions since we upgrade a minor | # NOTE(d1): this test can't assert hardcoded versions since we upgrade a minor | ||||||
| @ -84,6 +81,8 @@ teardown() { | |||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" tag --list |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" tag --list | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --regexp '0\.3\.0\+1\.2.*' |   assert_output --regexp '0\.3\.0\+1\.2.*' | ||||||
|  |  | ||||||
|  |   _reset_recipe "$TEST_RECIPE" | ||||||
| } | } | ||||||
|  |  | ||||||
| @test "unknown files not committed" { | @test "unknown files not committed" { | ||||||
| @ -101,21 +100,6 @@ teardown() { | |||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" rm foo |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" rm foo | ||||||
|   assert_failure |   assert_failure | ||||||
|   assert_output --partial "fatal: pathspec 'foo' did not match any files" |   assert_output --partial "fatal: pathspec 'foo' did not match any files" | ||||||
| } |  | ||||||
|  |   _reset_recipe | ||||||
| # NOTE: relies on 0.2.x being the last minor version |  | ||||||
| @test "release with next release note" { |  | ||||||
|   _mkfile "$ABRA_DIR/recipes/$TEST_RECIPE/release/next" "those are some release notes for the next release" |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" add release/next |  | ||||||
|   assert_success |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" commit -m "added some release notes" |  | ||||||
|   assert_success |  | ||||||
|  |  | ||||||
|   run $ABRA recipe release  "$TEST_RECIPE" --no-input  --minor |  | ||||||
|   assert_success |  | ||||||
|   assert_output --partial 'no -p/--publish passed, not publishing' |  | ||||||
|  |  | ||||||
|   assert_not_exists "$ABRA_DIR/recipes/$TEST_RECIPE/release/next" |  | ||||||
|   assert_exists "$ABRA_DIR/recipes/$TEST_RECIPE/release/0.3.0+1.21.0" |  | ||||||
|   assert_file_contains "$ABRA_DIR/recipes/$TEST_RECIPE/release/0.3.0+1.21.0" "those are some release notes for the next release" |  | ||||||
| } | } | ||||||
|  | |||||||
| @ -61,14 +61,14 @@ setup(){ | |||||||
|   assert_success |   assert_success | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   assert_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   run $ABRA recipe upgrade "$TEST_RECIPE" --no-input |   run $ABRA recipe upgrade "$TEST_RECIPE" --no-input | ||||||
|   assert_success |   assert_success | ||||||
|   assert_output --partial 'can upgrade service: app' |   assert_output --partial 'can upgrade service: app' | ||||||
|  |  | ||||||
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status |   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status | ||||||
|   assert_output --regexp 'behind .* 3 commits' |   refute_output --partial 'behind 3' | ||||||
|  |  | ||||||
|   _reset_recipe |   _reset_recipe | ||||||
| } | } | ||||||
|  | |||||||
| @ -12,8 +12,6 @@ setup() { | |||||||
| } | } | ||||||
|  |  | ||||||
| @test "error if not present in catalogue" { | @test "error if not present in catalogue" { | ||||||
|   skip "known issue, see https://git.coopcloud.tech/coop-cloud/recipes-catalogue-json/issues/6" |  | ||||||
|  |  | ||||||
|   run $ABRA recipe versions "$TEST_RECIPE" |   run $ABRA recipe versions "$TEST_RECIPE" | ||||||
|   assert_failure |   assert_failure | ||||||
|   assert_output --partial "is not published on the catalogue" |   assert_output --partial "is not published on the catalogue" | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user