/* Copyright 2020 the Velero contributors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package test import ( "archive/tar" "bytes" "compress/gzip" "encoding/json" "fmt" "testing" "time" "github.com/stretchr/testify/require" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "github.com/vmware-tanzu/velero/pkg/util/encode" ) type TarWriter struct { t *testing.T buf *bytes.Buffer gzw *gzip.Writer tw *tar.Writer } func NewTarWriter(t *testing.T) *TarWriter { tw := new(TarWriter) tw.t = t tw.buf = new(bytes.Buffer) tw.gzw = gzip.NewWriter(tw.buf) tw.tw = tar.NewWriter(tw.gzw) return tw } func (tw *TarWriter) AddItems(groupResource string, items ...metav1.Object) *TarWriter { tw.t.Helper() for _, obj := range items { var path string if obj.GetNamespace() == "" { path = fmt.Sprintf("resources/%s/cluster/%s.json", groupResource, obj.GetName()) } else { path = fmt.Sprintf("resources/%s/namespaces/%s/%s.json", groupResource, obj.GetNamespace(), obj.GetName()) } tw.Add(path, obj) } return tw } func (tw *TarWriter) Add(name string, obj interface{}) *TarWriter { tw.t.Helper() var data []byte var err error switch obj.(type) { case runtime.Object: data, err = encode.Encode(obj.(runtime.Object), "json") case []byte: data = obj.([]byte) default: data, err = json.Marshal(obj) } require.NoError(tw.t, err) require.NoError(tw.t, tw.tw.WriteHeader(&tar.Header{ Name: name, Size: int64(len(data)), Typeflag: tar.TypeReg, Mode: 0755, ModTime: time.Now(), })) _, err = tw.tw.Write(data) require.NoError(tw.t, err) return tw } func (tw *TarWriter) Done() *bytes.Buffer { require.NoError(tw.t, tw.tw.Close()) require.NoError(tw.t, tw.gzw.Close()) return tw.buf }