Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clean up configuration handling #233

Merged
merged 2 commits into from
Nov 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 53 additions & 28 deletions cmd/csi-sanity/sanity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
"fmt"
"os"
"testing"
"time"

"github.com/kubernetes-csi/csi-test/v3/pkg/sanity"
)
Expand All @@ -30,39 +31,63 @@ const (

var (
VERSION = "(dev)"
version bool
config sanity.Config
config = sanity.NewTestConfig()
)

func init() {
flag.StringVar(&config.Address, prefix+"endpoint", "", "CSI endpoint")
flag.StringVar(&config.ControllerAddress, prefix+"controllerendpoint", "", "CSI controller endpoint")
flag.BoolVar(&version, prefix+"version", false, "Version of this program")
flag.StringVar(&config.TargetPath, prefix+"mountdir", os.TempDir()+"/csi-mount", "Mount point for NodePublish")
flag.StringVar(&config.StagingPath, prefix+"stagingdir", os.TempDir()+"/csi-staging", "Mount point for NodeStage if staging is supported")
flag.StringVar(&config.CreateTargetPathCmd, prefix+"createmountpathcmd", "", "Command to run for target path creation")
flag.StringVar(&config.CreateStagingPathCmd, prefix+"createstagingpathcmd", "", "Command to run for staging path creation")
flag.IntVar(&config.CreatePathCmdTimeout, prefix+"createpathcmdtimeout", 10, "Timeout for the commands to create target and staging paths, in seconds")
flag.StringVar(&config.RemoveTargetPathCmd, prefix+"removemountpathcmd", "", "Command to run for target path removal")
flag.StringVar(&config.RemoveStagingPathCmd, prefix+"removestagingpathcmd", "", "Command to run for staging path removal")
flag.IntVar(&config.RemovePathCmdTimeout, prefix+"removepathcmdtimeout", 10, "Timeout for the commands to remove target and staging paths, in seconds")
flag.StringVar(&config.SecretsFile, prefix+"secrets", "", "CSI secrets file")
flag.Int64Var(&config.TestVolumeSize, prefix+"testvolumesize", sanity.DefTestVolumeSize, "Base volume size used for provisioned volumes")
flag.Int64Var(&config.TestVolumeExpandSize, prefix+"testvolumeexpandsize", 0, "Target size for expanded volumes")
flag.StringVar(&config.TestVolumeParametersFile, prefix+"testvolumeparameters", "", "YAML file of volume parameters for provisioned volumes")
flag.StringVar(&config.TestSnapshotParametersFile, prefix+"testsnapshotparameters", "", "YAML file of snapshot parameters for provisioned snapshots")
flag.BoolVar(&config.TestNodeVolumeAttachLimit, prefix+"testnodevolumeattachlimit", false, "Test node volume attach limit")
flag.StringVar(&config.JUnitFile, prefix+"junitfile", "", "JUnit XML output file where test results will be written")
flag.Parse()
func stringVar(p *string, name string, usage string) {
flag.StringVar(p, prefix+name, *p, usage)
}

func TestSanity(t *testing.T) {
if version {
func boolVar(p *bool, name string, usage string) {
flag.BoolVar(p, prefix+name, *p, usage)
}

func intVar(p *int, name string, usage string) {
flag.IntVar(p, prefix+name, *p, usage)
}

func int64Var(p *int64, name string, usage string) {
flag.Int64Var(p, prefix+name, *p, usage)
}

func durationVar(p *time.Duration, name string, usage string) {
flag.DurationVar(p, prefix+name, *p, usage)
}

func TestMain(m *testing.M) {
version := flag.Bool("version", false, "print version of this program")

// Support overriding the default configuration via flags.
stringVar(&config.Address, "endpoint", "CSI endpoint")
stringVar(&config.ControllerAddress, "controllerendpoint", "CSI controller endpoint")
stringVar(&config.TargetPath, "mountdir", "Mount point for NodePublish")
stringVar(&config.StagingPath, "stagingdir", "Mount point for NodeStage if staging is supported")
stringVar(&config.CreateTargetPathCmd, "createmountpathcmd", "Command to run for target path creation")
stringVar(&config.CreateStagingPathCmd, "createstagingpathcmd", "Command to run for staging path creation")
durationVar(&config.CreatePathCmdTimeout, "createpathcmdtimeout", "Timeout for the commands to create target and staging paths, in seconds")
stringVar(&config.RemoveTargetPathCmd, "removemountpathcmd", "Command to run for target path removal")
stringVar(&config.RemoveStagingPathCmd, "removestagingpathcmd", "Command to run for staging path removal")
durationVar(&config.RemovePathCmdTimeout, "removepathcmdtimeout", "Timeout for the commands to remove target and staging paths, in seconds")
stringVar(&config.SecretsFile, "secrets", "CSI secrets file")
int64Var(&config.TestVolumeSize, "testvolumesize", "Base volume size used for provisioned volumes")
int64Var(&config.TestVolumeExpandSize, "testvolumeexpandsize", "Target size for expanded volumes")
stringVar(&config.TestVolumeParametersFile, "testvolumeparameters", "YAML file of volume parameters for provisioned volumes")
stringVar(&config.TestSnapshotParametersFile, "testsnapshotparameters", "YAML file of snapshot parameters for provisioned snapshots")
boolVar(&config.TestNodeVolumeAttachLimit, "testnodevolumeattachlimit", "Test node volume attach limit")
stringVar(&config.JUnitFile, "junitfile", "JUnit XML output file where test results will be written")

flag.Parse()
if *version {
fmt.Printf("Version = %s\n", VERSION)
return
os.Exit(0)
}
if len(config.Address) == 0 {
t.Fatalf("--%sendpoint must be provided with an CSI endpoint", prefix)
if config.Address == "" {
fmt.Printf("--%sendpoint must be provided with an CSI endpoint\n", prefix)
os.Exit(1)
}
sanity.Test(t, &config)
os.Exit(m.Run())
}

func TestSanity(t *testing.T) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am wondering whether we need this special hack with csi-sanity being a go test program. It prevents using "go get" to build it. I might still change that as part of this PR...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that was pretty simple.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #234.

sanity.Test(t, config)
}
10 changes: 3 additions & 7 deletions hack/_apitest/api_test.go
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
package apitest

import (
"os"
"testing"

"github.com/kubernetes-csi/csi-test/pkg/sanity"
)

func TestMyDriver(t *testing.T) {
config := &sanity.Config{
TargetPath: os.TempDir() + "/csi-target",
StagingPath: os.TempDir() + "/csi-staging",
Address: "/tmp/e2e-csi-sanity.sock",
TestNodeVolumeAttachLimit: true,
}
config := sanity.NewTestConfig()
config.Address = "/tmp/e2e-csi-sanity.sock"
config.TestNodeVolumeAttachLimit = true

sanity.Test(t, config)
}
43 changes: 21 additions & 22 deletions hack/_apitest2/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,27 @@ func TestMyDriverWithCustomTargetPaths(t *testing.T) {
// are created. For k8s, it could be /var/lib/kubelet/pods under which the
// mount directories could be created.
tmpPath := path.Join(os.TempDir(), "csi")
config := &sanity.Config{
TargetPath: "foo/target/mount",
StagingPath: "foo/staging/mount",
Address: "/tmp/e2e-csi-sanity.sock",
CreateTargetDir: func(targetPath string) (string, error) {
createTargetDirCalls++
targetPath = path.Join(tmpPath, targetPath)
return targetPath, createTargetDir(targetPath)
},
CreateStagingDir: func(targetPath string) (string, error) {
createStagingDirCalls++
targetPath = path.Join(tmpPath, targetPath)
return targetPath, createTargetDir(targetPath)
},
RemoveTargetPath: func(targetPath string) error {
removeTargetDirCalls++
return os.RemoveAll(targetPath)
},
RemoveStagingPath: func(targetPath string) error {
removeStagingDirCalls++
return os.RemoveAll(targetPath)
},
config := sanity.NewTestConfig()
config.TargetPath = "foo/target/mount"
config.StagingPath = "foo/staging/mount"
config.Address = "/tmp/e2e-csi-sanity.sock"
config.CreateTargetDir = func(targetPath string) (string, error) {
createTargetDirCalls++
targetPath = path.Join(tmpPath, targetPath)
return targetPath, createTargetDir(targetPath)
}
config.CreateStagingDir = func(targetPath string) (string, error) {
createStagingDirCalls++
targetPath = path.Join(tmpPath, targetPath)
return targetPath, createTargetDir(targetPath)
}
config.RemoveTargetPath = func(targetPath string) error {
removeTargetDirCalls++
return os.RemoveAll(targetPath)
}
config.RemoveStagingPath = func(targetPath string) error {
removeStagingDirCalls++
return os.RemoveAll(targetPath)
}

sanity.Test(t, config)
Expand Down
21 changes: 11 additions & 10 deletions hack/_embedded/embedded_test.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
package embedded

import (
"os"
"testing"

"github.com/kubernetes-csi/csi-test/pkg/sanity"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)

var context *sanity.TestContext

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems like a global is the best way to do this within Ginkgo. Oh well.


func TestMyDriverGinkgo(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "CSI Sanity Test Suite")
Expand All @@ -21,24 +22,24 @@ func TestMyDriverGinkgo(t *testing.T) {
// in hack/e2e.sh if a PR adds back such functions in the sanity test
// code.
var _ = BeforeSuite(func() {})
var _ = AfterSuite(func() {})
var _ = AfterSuite(func() {
if context != nil {
context.Finalize()
}
})

var _ = Describe("MyCSIDriver", func() {
Context("Config A", func() {
config := &sanity.Config{
TargetPath: os.TempDir() + "/csi-target",
StagingPath: os.TempDir() + "/csi-staging",
Address: "/tmp/e2e-csi-sanity.sock",
TestNodeVolumeAttachLimit: true,
IDGen: &sanity.DefaultIDGenerator{},
}
config := sanity.NewTestConfig()
config.Address = "/tmp/e2e-csi-sanity.sock"
config.TestNodeVolumeAttachLimit = true

BeforeEach(func() {})

AfterEach(func() {})

Describe("CSI Driver Test Suite", func() {
sanity.GinkgoTest(config)
context = sanity.GinkgoTest(&config)
})
})
})
2 changes: 1 addition & 1 deletion pkg/sanity/cleanup.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type VolumeInfo struct {
// Cleanup keeps track of resources, in particular volumes, which need
// to be freed when testing is done. All methods can be called concurrently.
type Cleanup struct {
Context *SanityContext
Context *TestContext
ControllerClient csi.ControllerClient
NodeClient csi.NodeClient
ControllerPublishSupported bool
Expand Down
40 changes: 16 additions & 24 deletions pkg/sanity/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ import (
)

const (
// DefTestVolumeSize defines the base size of dynamically
// provisioned volumes. 10GB by default, can be overridden by
// setting Config.TestVolumeSize.
DefTestVolumeSize int64 = 10 * 1024 * 1024 * 1024

// DefTestVolumeExpand defines the size increment for volume
// expansion. It can be overriden by setting an
// Config.TestVolumeExpandSize, which will be taken as absolute
Expand All @@ -45,14 +40,11 @@ const (
MaxNameLength int = 128
)

func TestVolumeSize(sc *SanityContext) int64 {
if sc.Config.TestVolumeSize > 0 {
return sc.Config.TestVolumeSize
}
return DefTestVolumeSize
func TestVolumeSize(sc *TestContext) int64 {
return sc.Config.TestVolumeSize
}

func TestVolumeExpandSize(sc *SanityContext) int64 {
func TestVolumeExpandSize(sc *TestContext) int64 {
if sc.Config.TestVolumeExpandSize > 0 {
return sc.Config.TestVolumeExpandSize
}
Expand Down Expand Up @@ -92,7 +84,7 @@ func isControllerCapabilitySupported(
return false
}

var _ = DescribeSanity("Controller Service [Controller Server]", func(sc *SanityContext) {
var _ = DescribeSanity("Controller Service [Controller Server]", func(sc *TestContext) {
var (
c csi.ControllerClient
n csi.NodeClient
Expand Down Expand Up @@ -1617,7 +1609,7 @@ var _ = DescribeSanity("Controller Service [Controller Server]", func(sc *Sanity
})
})

var _ = DescribeSanity("ListSnapshots [Controller Server]", func(sc *SanityContext) {
var _ = DescribeSanity("ListSnapshots [Controller Server]", func(sc *TestContext) {
var (
c csi.ControllerClient
)
Expand Down Expand Up @@ -1870,7 +1862,7 @@ var _ = DescribeSanity("ListSnapshots [Controller Server]", func(sc *SanityConte

})

var _ = DescribeSanity("DeleteSnapshot [Controller Server]", func(sc *SanityContext) {
var _ = DescribeSanity("DeleteSnapshot [Controller Server]", func(sc *TestContext) {
var (
c csi.ControllerClient
)
Expand Down Expand Up @@ -1933,7 +1925,7 @@ var _ = DescribeSanity("DeleteSnapshot [Controller Server]", func(sc *SanityCont
})
})

var _ = DescribeSanity("CreateSnapshot [Controller Server]", func(sc *SanityContext) {
var _ = DescribeSanity("CreateSnapshot [Controller Server]", func(sc *TestContext) {
var (
c csi.ControllerClient
)
Expand Down Expand Up @@ -2082,7 +2074,7 @@ var _ = DescribeSanity("CreateSnapshot [Controller Server]", func(sc *SanityCont
})
})

var _ = DescribeSanity("ExpandVolume [Controller Server]", func(sc *SanityContext) {
var _ = DescribeSanity("ExpandVolume [Controller Server]", func(sc *TestContext) {
var (
c csi.ControllerClient
cl *Cleanup
Expand Down Expand Up @@ -2188,7 +2180,7 @@ var _ = DescribeSanity("ExpandVolume [Controller Server]", func(sc *SanityContex
})
})

func MakeCreateVolumeReq(sc *SanityContext, name string) *csi.CreateVolumeRequest {
func MakeCreateVolumeReq(sc *TestContext, name string) *csi.CreateVolumeRequest {
size1 := TestVolumeSize(sc)

req := &csi.CreateVolumeRequest{
Expand Down Expand Up @@ -2217,7 +2209,7 @@ func MakeCreateVolumeReq(sc *SanityContext, name string) *csi.CreateVolumeReques
return req
}

func MakeCreateSnapshotReq(sc *SanityContext, name, sourceVolumeId string) *csi.CreateSnapshotRequest {
func MakeCreateSnapshotReq(sc *TestContext, name, sourceVolumeId string) *csi.CreateSnapshotRequest {
req := &csi.CreateSnapshotRequest{
Name: name,
SourceVolumeId: sourceVolumeId,
Expand All @@ -2231,7 +2223,7 @@ func MakeCreateSnapshotReq(sc *SanityContext, name, sourceVolumeId string) *csi.
return req
}

func MakeDeleteSnapshotReq(sc *SanityContext, id string) *csi.DeleteSnapshotRequest {
func MakeDeleteSnapshotReq(sc *TestContext, id string) *csi.DeleteSnapshotRequest {
delSnapReq := &csi.DeleteSnapshotRequest{
SnapshotId: id,
}
Expand All @@ -2243,7 +2235,7 @@ func MakeDeleteSnapshotReq(sc *SanityContext, id string) *csi.DeleteSnapshotRequ
return delSnapReq
}

func MakeDeleteVolumeReq(sc *SanityContext, id string) *csi.DeleteVolumeRequest {
func MakeDeleteVolumeReq(sc *TestContext, id string) *csi.DeleteVolumeRequest {
delVolReq := &csi.DeleteVolumeRequest{
VolumeId: id,
}
Expand All @@ -2256,7 +2248,7 @@ func MakeDeleteVolumeReq(sc *SanityContext, id string) *csi.DeleteVolumeRequest
}

// MakeControllerPublishVolumeReq creates and returns a ControllerPublishVolumeRequest.
func MakeControllerPublishVolumeReq(sc *SanityContext, volID, nodeID string) *csi.ControllerPublishVolumeRequest {
func MakeControllerPublishVolumeReq(sc *TestContext, volID, nodeID string) *csi.ControllerPublishVolumeRequest {
return &csi.ControllerPublishVolumeRequest{
VolumeId: volID,
NodeId: nodeID,
Expand All @@ -2274,7 +2266,7 @@ func MakeControllerPublishVolumeReq(sc *SanityContext, volID, nodeID string) *cs
}

// MakeControllerUnpublishVolumeReq creates and returns a ControllerUnpublishVolumeRequest.
func MakeControllerUnpublishVolumeReq(sc *SanityContext, volID, nodeID string) *csi.ControllerUnpublishVolumeRequest {
func MakeControllerUnpublishVolumeReq(sc *TestContext, volID, nodeID string) *csi.ControllerUnpublishVolumeRequest {
return &csi.ControllerUnpublishVolumeRequest{
VolumeId: volID,
NodeId: nodeID,
Expand All @@ -2283,7 +2275,7 @@ func MakeControllerUnpublishVolumeReq(sc *SanityContext, volID, nodeID string) *
}

// CreateAndControllerPublishVolume creates and controller publishes a volume given a volume name and node ID.
func CreateAndControllerPublishVolume(sc *SanityContext, c csi.ControllerClient, volName, nodeID string) (volID string, err error) {
func CreateAndControllerPublishVolume(sc *TestContext, c csi.ControllerClient, volName, nodeID string) (volID string, err error) {
vol, err := c.CreateVolume(context.Background(), MakeCreateVolumeReq(sc, volName))
Expect(err).NotTo(HaveOccurred())
Expect(vol).NotTo(BeNil())
Expand All @@ -2298,7 +2290,7 @@ func CreateAndControllerPublishVolume(sc *SanityContext, c csi.ControllerClient,
}

// ControllerUnpublishAndDeleteVolume controller unpublishes and deletes a volume, given volume ID and node ID.
func ControllerUnpublishAndDeleteVolume(sc *SanityContext, c csi.ControllerClient, volID, nodeID string) error {
func ControllerUnpublishAndDeleteVolume(sc *TestContext, c csi.ControllerClient, volID, nodeID string) error {
_, err := c.ControllerUnpublishVolume(
context.Background(),
MakeControllerUnpublishVolumeReq(sc, volID, nodeID),
Expand Down
2 changes: 1 addition & 1 deletion pkg/sanity/identity.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
. "github.com/onsi/gomega"
)

var _ = DescribeSanity("Identity Service", func(sc *SanityContext) {
var _ = DescribeSanity("Identity Service", func(sc *TestContext) {
var (
c csi.IdentityClient
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/sanity/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func isPluginCapabilitySupported(c csi.IdentityClient,
return false
}

var _ = DescribeSanity("Node Service", func(sc *SanityContext) {
var _ = DescribeSanity("Node Service", func(sc *TestContext) {
var (
cl *Cleanup
c csi.NodeClient
Expand Down
Loading