. "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) func TestDeploy(t *testing.T) { RegisterFailHandler(Fail) RunSpecs(t, "Deploy Suite") } var ( goPath string config helpers.Config bosh *helpers.Bosh consulManifestGeneration string directorUUIDStub string consulRelease = fmt.Sprintf("consul-%s", generator.RandomName()) consulDeployment = consulRelease consulNameOverrideStub string ) var _ = BeforeSuite(func() { goPath = helpers.SetupGoPath() gemfilePath := helpers.SetupFastBosh() config = helpers.LoadConfig() boshOperationTimeout := helpers.GetBoshOperationTimeout(config) bosh = helpers.NewBosh(gemfilePath, goPath, config.BoshTarget, boshOperationTimeout) consulManifestGeneration = filepath.Join(goPath, "src", "acceptance-tests", "scripts", "generate-consul-deployment-manifest")
"testing" ) func TestTurbulence(t *testing.T) { RegisterFailHandler(Fail) RunSpecs(t, "Turbulence Suite") } var ( goPath string config helpers.Config bosh *helpers.Bosh turbulenceManifest *helpers.Manifest etcdRelease = fmt.Sprintf("etcd-%s", generator.RandomName()) etcdDeployment = etcdRelease turbulenceDeployment = fmt.Sprintf("turb-%s", generator.RandomName()) directorUUIDStub, etcdNameOverrideStub, turbulenceNameOverrideStub string turbulenceManifestGeneration string etcdManifestGeneration string ) var _ = BeforeSuite(func() { goPath = helpers.SetupGoPath() gemfilePath := helpers.SetupFastBosh() config = helpers.LoadConfig() boshOperationTimeout := helpers.GetBoshOperationTimeout(config) bosh = helpers.NewBosh(gemfilePath, goPath, config.BoshTarget, boshOperationTimeout)