. "github.com/onsi/gomega" ) const ( ConcourseExampleManifestURL = "https://raw.githubusercontent.com/concourse/concourse/master/manifests/concourse.yml" ConcourseReleaseURL = "https://bosh.io/d/github.com/concourse/concourse" GardenReleaseURL = "https://bosh.io/d/github.com/cloudfoundry-incubator/garden-runc-release" GardenReleaseName = "garden-runc" StemcellURL = "https://bosh.io/d/stemcells/bosh-aws-xen-hvm-ubuntu-trusty-go_agent" StemcellName = "bosh-aws-xen-hvm-ubuntu-trusty-go_agent" ) var _ = Describe("bosh deployment tests", func() { var ( bbl actors.BBL aws actors.AWS state integration.State ) BeforeEach(func() { var err error configuration, err := integration.LoadConfig() Expect(err).NotTo(HaveOccurred()) bbl = actors.NewBBL(configuration.StateFileDir, pathToBBL, configuration) aws = actors.NewAWS(configuration) state = integration.NewState(configuration.StateFileDir) }) It("is able to deploy concourse", func() { bbl.Up()
import ( "fmt" "strings" "github.com/pivotal-cf-experimental/bosh-bootloader/integration-test" "github.com/pivotal-cf-experimental/bosh-bootloader/integration-test/actors" "github.com/pivotal-cf-experimental/bosh-bootloader/testhelpers" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("load balancer tests", func() { var ( bbl actors.BBL aws actors.AWS bosh actors.BOSH state integration.State ) BeforeEach(func() { var err error configuration, err := integration.LoadConfig() Expect(err).NotTo(HaveOccurred()) bbl = actors.NewBBL(configuration.StateFileDir, pathToBBL, configuration) aws = actors.NewAWS(configuration) bosh = actors.NewBOSH() state = integration.NewState(configuration.StateFileDir) })