Skip to content

Commit

Permalink
pkg/plugin/utils: add tests to cover funcs
Browse files Browse the repository at this point in the history
  • Loading branch information
camilamacedo86 committed Aug 11, 2024
1 parent 85cb6a5 commit cb5646b
Showing 1 changed file with 67 additions and 29 deletions.
96 changes: 67 additions & 29 deletions pkg/plugin/util/util_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
/*
Copyright 2022 The Kubernetes Authors.
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.
Expand All @@ -21,42 +24,77 @@ import (
. "github.com/onsi/gomega"
)

var _ = Describe("InsertCode", Ordered, func() {
path := filepath.Join("testdata", "exampleFile.txt")
var content []byte
var _ = Describe("Cover plugin util helpers", func() {
Describe("InsertCode", Ordered, func() {
path := filepath.Join("testdata", "exampleFile.txt")
var content []byte

BeforeAll(func() {
err := os.MkdirAll("testdata", 0755)
Expect(err).NotTo(HaveOccurred())

if _, err := os.Stat(path); os.IsNotExist(err) {
err = os.WriteFile(path, []byte("exampleTarget"), 0644)
Expect(err).NotTo(HaveOccurred())
}

content, err = os.ReadFile(path)
Expect(err).NotTo(HaveOccurred())
})

BeforeAll(func() {
err := os.MkdirAll("testdata", 0755)
Expect(err).NotTo(HaveOccurred())
AfterAll(func() {
err := os.WriteFile(path, content, 0644)
Expect(err).NotTo(HaveOccurred())

if _, err := os.Stat(path); os.IsNotExist(err) {
err = os.WriteFile(path, []byte("exampleTarget"), 0644)
err = os.RemoveAll("testdata")
Expect(err).NotTo(HaveOccurred())
}
})

content, err = os.ReadFile(path)
Expect(err).NotTo(HaveOccurred())
DescribeTable("should not succeed",
func(target string) {
Expect(InsertCode(path, target, "exampleCode")).ShouldNot(Succeed())
},
Entry("target given is not present in file", "randomTarget"),
)

DescribeTable("should succeed",
func(target string) {
Expect(InsertCode(path, target, "exampleCode")).Should(Succeed())
},
Entry("target given is present in file", "exampleTarget"),
)
})

AfterAll(func() {
err := os.WriteFile(path, content, 0644)
Expect(err).NotTo(HaveOccurred())
Describe("RandomSuffix", func() {
It("should return a string with 4 caracteres", func() {
suffix, err := RandomSuffix()
Expect(err).NotTo(HaveOccurred())
Expect(suffix).To(HaveLen(4))
})

err = os.RemoveAll("testdata")
Expect(err).NotTo(HaveOccurred())
It("should return different values when call more than once", func() {
suffix1, _ := RandomSuffix()
suffix2, _ := RandomSuffix()
Expect(suffix1).NotTo(Equal(suffix2))
})
})

DescribeTable("should not succeed",
func(target string) {
Expect(InsertCode(path, target, "exampleCode")).ShouldNot(Succeed())
},
Entry("target given is not present in file", "randomTarget"),
)

DescribeTable("should succeed",
func(target string) {
Expect(InsertCode(path, target, "exampleCode")).Should(Succeed())
},
Entry("target given is present in file", "exampleTarget"),
)
Describe("GetNonEmptyLines", func() {
It("should return non-empty lines", func() {
output := "text1\n\ntext2\ntext3\n\n"
lines := GetNonEmptyLines(output)
Expect(lines).To(Equal([]string{"text1", "text2", "text3"}))
})

It("should return an empty when an empty value is passed", func() {
lines := GetNonEmptyLines("")
Expect(lines).To(BeEmpty())
})

It("should return same string without empty lines", func() {
output := "noemptylines"
lines := GetNonEmptyLines(output)
Expect(lines).To(Equal([]string{"noemptylines"}))
})
})
})

0 comments on commit cb5646b

Please sign in to comment.