containerized-data-importer/tools/cdi-func-test-file-host-init/main.go
Alexander Wels 70666e5946 Add source and contentType annotations
Signed-off-by: Alexander Wels <awels@redhat.com>
2018-11-14 12:20:26 -05:00

112 lines
2.6 KiB
Go

//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 main
import (
"flag"
"github.com/golang/glog"
"github.com/pkg/errors"
"kubevirt.io/containerized-data-importer/tests/utils"
"os"
"path/filepath"
"strings"
"sync"
)
func main() {
inFile := flag.String("inFile", "", "")
outDir := flag.String("outDir", "", "")
flag.Parse()
glog.Info("Generating test files")
ft := &formatTable{
[]string{""},
[]string{".tar"},
[]string{".gz"},
[]string{".xz"},
[]string{".tar", ".gz"},
[]string{".tar", ".xz"},
[]string{".qcow2"},
}
if err := os.MkdirAll(*outDir, 0777); err != nil {
glog.Fatal(errors.Wrapf(err, "'mkdir %s' errored: ", *outDir))
}
if err := ft.initializeTestFiles(*inFile, *outDir); err != nil {
glog.Fatal(err)
}
glog.Info("File initialization completed without error.")
}
type formatTable [][]string
func (ft formatTable) initializeTestFiles(inFile, outDir string) error {
var wg sync.WaitGroup
errChan := make(chan error, len(ft))
reportError := func(err error, msg string, format ...interface{}) {
e := errors.Wrapf(err, msg, format...)
glog.Error(e)
errChan <- e
return
}
for _, fList := range ft {
wg.Add(1)
go func(i, o string, f []string) {
defer wg.Done()
glog.Infof("Generating file %s\n", f)
ext := strings.Join(f, "")
tmpDir := filepath.Join(o, "tmp"+ext)
if err := os.Mkdir(tmpDir, 0777); err != nil {
reportError(err, "Error creating temp dir %s", tmpDir)
return
}
defer func() {
if err := os.RemoveAll(tmpDir); err != nil {
reportError(err, "Error deleting tmp dir %s", tmpDir)
}
}()
glog.Infof("Mkdir %s\n", tmpDir)
p, err := utils.FormatTestData(i, tmpDir, f...)
if err != nil {
reportError(err, "Error formatting files")
return
}
if err = os.Rename(p, filepath.Join(o, filepath.Base(p))); err != nil {
reportError(err, "Error moving file %s to %s", p, o)
return
}
glog.Infof("Generated file %q\n", p)
}(inFile, outDir, fList)
}
wg.Wait()
close(errChan)
if len(errChan) > 0 {
for err := range errChan {
glog.Error(err)
}
return errors.New("Error(s) occurred during file conversion")
}
return nil
}