Implement pure UUID suffix Functionality into namespace, without implementing randomSuffix() (yet).

This commit is contained in:
jayunit100 2015-04-21 09:27:39 -04:00
parent e548c16f7b
commit 4b43a6a979

View File

@ -33,6 +33,8 @@ import (
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
"code.google.com/p/go-uuid/uuid"
) )
const ( const (
@ -85,7 +87,7 @@ func waitForPodCondition(c *client.Client, ns, podName, desc string, condition p
func createTestingNS(baseName string, c *client.Client) (*api.Namespace, error) { func createTestingNS(baseName string, c *client.Client) (*api.Namespace, error) {
namespaceObj := &api.Namespace{ namespaceObj := &api.Namespace{
ObjectMeta: api.ObjectMeta{ ObjectMeta: api.ObjectMeta{
Name: fmt.Sprintf("e2e-tests-%v-%v", baseName, randomSuffix()), Name: fmt.Sprintf("e2e-tests-%v-%v", baseName, uuid.New()),
Namespace: "", Namespace: "",
}, },
Status: api.NamespaceStatus{}, Status: api.NamespaceStatus{},
@ -193,7 +195,6 @@ func loadClient() (*client.Client, error) {
} }
// randomSuffix provides a random string to append to pods,services,rcs. // randomSuffix provides a random string to append to pods,services,rcs.
// NOTE: For test's namespaces, instead use createGinkgoNS(..).
// TODO: Allow service names to have the same form as names // TODO: Allow service names to have the same form as names
// for pods and replication controllers so we don't // for pods and replication controllers so we don't
// need to use such a function and can instead // need to use such a function and can instead