Skip to content

Commit

Permalink
OVA: Change the scanning for ova and ovf files inside the NFS directory
Browse files Browse the repository at this point in the history
Signed-off-by: Bella Khizgiyaev <bkhizgiy@redhat.com>
  • Loading branch information
bkhizgiy committed Sep 10, 2023
1 parent a1671ed commit a44754b
Show file tree
Hide file tree
Showing 3 changed files with 163 additions and 23 deletions.
9 changes: 8 additions & 1 deletion cmd/ova-provider-server/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")

go_library(
name = "ova-provider-server_lib",
Expand All @@ -24,3 +24,10 @@ container_image(
base = "@ova-provider-server-image-dockerfile//image:dockerfile_image.tar",
visibility = ["//visibility:public"],
)

go_test(
name = "ova-provider-server_test",
srcs = ["nfs_test.go"],
embed = [":ova-provider-server_lib"],
deps = ["//vendor/github.com/onsi/gomega"],
)
114 changes: 114 additions & 0 deletions cmd/ova-provider-server/nfs_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
package main

import (
"io/ioutil"
"os"
"path/filepath"
"testing"

"github.com/onsi/gomega"
)

func TestFindOVAFiles(t *testing.T) {
g := gomega.NewGomegaWithT(t)

tests := []struct {
name string
setup func(directory string)
expectedOVAs []string
expectedOVFs []string
expectError bool
}{
{
name: "basic structure",
setup: func(directory string) {
ioutil.WriteFile(filepath.Join(directory, "test.ova"), []byte{}, 0644)
ioutil.WriteFile(filepath.Join(directory, "test.ovf"), []byte{}, 0644)
os.MkdirAll(filepath.Join(directory, "subdir1"), 0755)
ioutil.WriteFile(filepath.Join(directory, "subdir1", "test1.ova"), []byte{}, 0644)
ioutil.WriteFile(filepath.Join(directory, "subdir1", "test1.ovf"), []byte{}, 0644)
os.MkdirAll(filepath.Join(directory, "subdir1", "subdir2"), 0755)
ioutil.WriteFile(filepath.Join(directory, "subdir1", "subdir2", "test2.ovf"), []byte{}, 0644)
},
expectedOVAs: []string{"test.ova", "subdir1/test1.ova"},
expectedOVFs: []string{"test.ovf", "subdir1/test1.ovf", "subdir1/subdir2/test2.ovf"},
expectError: false,
},
{
name: "non-existent directory",
setup: func(directory string) {
os.RemoveAll(directory)
},
expectedOVAs: nil,
expectedOVFs: nil,
expectError: true,
},
{
name: "non-ova/ovf files",
setup: func(directory string) {
ioutil.WriteFile(filepath.Join(directory, "test.txt"), []byte{}, 0644)
},
expectedOVAs: nil,
expectedOVFs: nil,
expectError: false,
},
{
name: "incorrect depth",
setup: func(directory string) {
os.MkdirAll(filepath.Join(directory, "subdir1", "subdir2"), 0755)
ioutil.WriteFile(filepath.Join(directory, "subdir1", "subdir2", "test3.ova"), []byte{}, 0644)
},
expectedOVAs: nil,
expectedOVFs: nil,
expectError: false,
},
{
name: "folder with extension",
setup: func(directory string) {
os.MkdirAll(filepath.Join(directory, "subdir1.ova"), 0755)
os.MkdirAll(filepath.Join(directory, "subdir2.ovf"), 0755)
},
expectedOVAs: nil,
expectedOVFs: nil,
expectError: false,
},
{
name: "files inside folders with extension",
setup: func(directory string) {
os.MkdirAll(filepath.Join(directory, "subdir1.ova"), 0755)
os.MkdirAll(filepath.Join(directory, "subdir2.ovf"), 0755)
ioutil.WriteFile(filepath.Join(directory, "subdir1.ova", "test.ova"), []byte{}, 0644)
ioutil.WriteFile(filepath.Join(directory, "subdir2.ovf", "test.ovf"), []byte{}, 0644)
},
expectedOVAs: []string{"subdir1.ova/test.ova"},
expectedOVFs: []string{"subdir2.ovf/test.ovf"},
expectError: false,
},
}

for _, testCase := range tests {
t.Run(testCase.name, func(t *testing.T) {
testDir, err := ioutil.TempDir("", "ova_test")
g.Expect(err).NotTo(gomega.HaveOccurred())

testCase.setup(testDir)

for i, relPath := range testCase.expectedOVAs {
testCase.expectedOVAs[i] = filepath.Join(testDir, relPath)
}
for i, relPath := range testCase.expectedOVFs {
testCase.expectedOVFs[i] = filepath.Join(testDir, relPath)
}

ovaFiles, ovfFiles, err := findOVAFiles(testDir)
if testCase.expectError {
g.Expect(err).To(gomega.HaveOccurred())
} else {
g.Expect(err).To(gomega.BeNil())
g.Expect(ovaFiles).To(gomega.ConsistOf(testCase.expectedOVAs))
g.Expect(ovfFiles).To(gomega.ConsistOf(testCase.expectedOVFs))
}
_ = os.RemoveAll(testDir)
})
}
}
63 changes: 41 additions & 22 deletions cmd/ova-provider-server/ova-provider-server.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ import (
const (
invalidRequestMethodMsg = "Invalid request method"
errorProcessingOvfMsg = "Error processing OVF file"
OvaExt = ".ova"
OvfExt = ".ovf"
)

// xml struct
Expand Down Expand Up @@ -292,33 +294,50 @@ func scanOVAsOnNFS() (envelopes []Envelope, ovaPaths []string) {
return envelopes, filesPath
}

func findOVAFiles(directory string) ([]string, []string, error) {
childs, err := os.ReadDir(directory)
if err != nil {
return nil, nil, err
}
func findOVAFiles(directory string) (ovaFiles []string, ovfFiles []string, err error) {
var ovaMaxDepth = 2

var ovaFiles, ovfFiles []string
for _, child := range childs {
if !child.IsDir() {
continue
}
newDir := directory + "/" + child.Name()
files, err := os.ReadDir(newDir)
err = filepath.WalkDir(directory, func(path string, info os.DirEntry, err error) error {
if err != nil {
return nil, nil, err
return err
}
for _, file := range files {
path := filepath.Join(directory, child.Name(), file.Name())
switch {
case strings.HasSuffix(strings.ToLower(file.Name()), ".ova"):
ovaFiles = append(ovaFiles, path)
case strings.HasSuffix(strings.ToLower(file.Name()), ".ovf"):
ovfFiles = append(ovfFiles, path)
}

if info.IsDir() {
return nil
}

relativePath, _ := filepath.Rel(directory, path)
depth := len(strings.Split(relativePath, string(filepath.Separator)))

switch {
case (depth <= ovaMaxDepth) && isOva(info.Name()):
ovaFiles = append(ovaFiles, path)

case (depth <= ovaMaxDepth+1) && isOvf(info.Name()):
ovfFiles = append(ovfFiles, path)
}

return nil
})

if err != nil {
fmt.Println("Error scanning OVA and OVF files: ", err)
return nil, nil, err
}
return ovaFiles, ovfFiles, nil
return
}

func isOva(filename string) bool {
return hasSuffixIgnoreCase(filename, OvaExt)
}

func isOvf(filename string) bool {
return hasSuffixIgnoreCase(filename, OvfExt)
}

// Checks if the given file has the desired extension
func hasSuffixIgnoreCase(fileName, suffix string) bool {
return strings.HasSuffix(strings.ToLower(fileName), strings.ToLower(suffix))
}

func readOVFFromOVA(ovaFile string) (*Envelope, error) {
Expand Down

0 comments on commit a44754b

Please sign in to comment.