mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 18:08:51 +08:00 
			
		
		
		
	 1f64ae10f6
			
		
	
	1f64ae10f6
	
	
	
		
			
			Given the switch to pulling oci artifacts for podman, we no longer need a fair bit of fedora coreos code for automatically downloading images. [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
		
			
				
	
	
		
			80 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package e2e_test
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"fmt"
 | |
| 	"io"
 | |
| 	"net/http"
 | |
| 	"runtime"
 | |
| 
 | |
| 	"github.com/containers/podman/v5/pkg/machine/define"
 | |
| 	"github.com/containers/podman/v5/pkg/machine/vmconfigs"
 | |
| 	"github.com/coreos/stream-metadata-go/fedoracoreos"
 | |
| 	"github.com/coreos/stream-metadata-go/stream"
 | |
| 	"github.com/sirupsen/logrus"
 | |
| )
 | |
| 
 | |
| func GetDownload(vmType define.VMType) (string, error) {
 | |
| 	var (
 | |
| 		fcosstable           stream.Stream
 | |
| 		artifactType, format string
 | |
| 	)
 | |
| 	url := fedoracoreos.GetStreamURL("testing")
 | |
| 	resp, err := http.Get(url.String())
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 	body, err := io.ReadAll(resp.Body)
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 	defer func() {
 | |
| 		if err := resp.Body.Close(); err != nil {
 | |
| 			logrus.Error(err)
 | |
| 		}
 | |
| 	}()
 | |
| 
 | |
| 	if err := json.Unmarshal(body, &fcosstable); err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 
 | |
| 	switch vmType {
 | |
| 	case define.AppleHvVirt:
 | |
| 		artifactType = "applehv"
 | |
| 		format = "raw.gz"
 | |
| 	case define.HyperVVirt:
 | |
| 		artifactType = "hyperv"
 | |
| 		format = "vhdx.zip"
 | |
| 	default:
 | |
| 		artifactType = "qemu"
 | |
| 		format = "qcow2.xz"
 | |
| 	}
 | |
| 
 | |
| 	arch, err := vmconfigs.NormalizeMachineArch(runtime.GOARCH)
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 	fcosArch, ok := fcosstable.Architectures[arch]
 | |
| 	if !ok {
 | |
| 		return "", fmt.Errorf("unable to pull VM image: no targetArch in stream")
 | |
| 	}
 | |
| 	upstreamArtifacts := fcosArch.Artifacts
 | |
| 	if upstreamArtifacts == nil {
 | |
| 		return "", fmt.Errorf("unable to pull VM image: no artifact in stream")
 | |
| 	}
 | |
| 	upstreamArtifact, ok := upstreamArtifacts[artifactType]
 | |
| 	if !ok {
 | |
| 		return "", fmt.Errorf("unable to pull VM image: no %s artifact in stream", artifactType)
 | |
| 	}
 | |
| 	formats := upstreamArtifact.Formats
 | |
| 	if formats == nil {
 | |
| 		return "", fmt.Errorf("unable to pull VM image: no formats in stream")
 | |
| 	}
 | |
| 	formatType, ok := formats[format]
 | |
| 	if !ok {
 | |
| 		return "", fmt.Errorf("unable to pull VM image: no %s format in stream", format)
 | |
| 	}
 | |
| 	disk := formatType.Disk
 | |
| 	return disk.Location, nil
 | |
| }
 |