"fmt" "github.com/cloudfoundry-incubator/consul-release/src/acceptance-tests/testing/helpers" "github.com/pivotal-cf-experimental/bosh-test/bosh" "github.com/pivotal-cf-experimental/destiny/consul" testconsumerclient "github.com/cloudfoundry-incubator/consul-release/src/acceptance-tests/testing/testconsumer/client" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("given large DNS response", func() { var ( consulManifest consul.ManifestV2 testConsumerClient testconsumerclient.Client err error ) BeforeEach(func() { consulManifest, _, err = helpers.DeployConsulWithFakeDNSServer("large-dns-response", 1, boshClient, config) Expect(err).NotTo(HaveOccurred()) Eventually(func() ([]bosh.VM, error) { return helpers.DeploymentVMs(boshClient, consulManifest.Name) }, "1m", "10s").Should(ConsistOf(helpers.GetVMsFromManifest(consulManifest))) testConsumerClient = testconsumerclient.New(fmt.Sprintf("http://%s:6769", consulManifest.InstanceGroups[1].Networks[0].StaticIPs[0])) }) AfterEach(func() { By("deleting consul deployment", func() {
import ( "fmt" "github.com/cloudfoundry-incubator/consul-release/src/acceptance-tests/testing/helpers" testconsumerclient "github.com/cloudfoundry-incubator/consul-release/src/acceptance-tests/testing/testconsumer/client" "github.com/pivotal-cf-experimental/bosh-test/bosh" "github.com/pivotal-cf-experimental/destiny/consul" "github.com/pivotal-cf-experimental/destiny/core" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("Single host multiple services", func() { var ( manifest consul.ManifestV2 tcClient testconsumerclient.Client ) BeforeEach(func() { var err error manifest, _, err = helpers.DeployConsulWithInstanceCount("single-host-multiple-services", 1, boshClient, config) Expect(err).NotTo(HaveOccurred()) Eventually(func() ([]bosh.VM, error) { return helpers.DeploymentVMs(boshClient, manifest.Name) }, "1m", "10s").Should(ConsistOf(helpers.GetVMsFromManifest(manifest))) tcClient = testconsumerclient.New(fmt.Sprintf("http://%s:6769", manifest.InstanceGroups[1].Networks[0].StaticIPs[0])) })
. "github.com/onsi/ginkgo" . "github.com/onsi/gomega" turbulenceclient "github.com/pivotal-cf-experimental/bosh-test/turbulence" ) const ( DELAY = 10 * time.Second TIMEOUT = 30 * time.Second ) var _ = Describe("recursor timeout", func() { var ( turbulenceClient turbulenceclient.Client turbulenceManifest turbulence.Manifest consulManifest consul.ManifestV2 delayIncidentID string tcClient testconsumerclient.Client ) BeforeEach(func() { By("deploying turbulence", func() { var err error turbulenceManifest, err = helpers.DeployTurbulence(boshClient, config) Expect(err).NotTo(HaveOccurred()) Eventually(func() ([]bosh.VM, error) { return helpers.DeploymentVMs(boshClient, turbulenceManifest.Name) }, "1m", "10s").Should(ConsistOf(helpers.GetTurbulenceVMsFromManifest(turbulenceManifest))) turbulenceClient = helpers.NewTurbulenceClient(turbulenceManifest)
import ( "fmt" "github.com/cloudfoundry-incubator/consul-release/src/acceptance-tests/testing/helpers" testconsumerclient "github.com/cloudfoundry-incubator/consul-release/src/acceptance-tests/testing/testconsumer/client" "github.com/pivotal-cf-experimental/bosh-test/bosh" "github.com/pivotal-cf-experimental/destiny/consul" "github.com/pivotal-cf-experimental/destiny/core" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("Multiple hosts multiple services", func() { var ( manifest consul.ManifestV2 tcClient testconsumerclient.Client ) BeforeEach(func() { var err error manifest, _, err = helpers.DeployConsulWithInstanceCount("multiple-host-multiple-services", 3, boshClient, config) Expect(err).NotTo(HaveOccurred()) Eventually(func() ([]bosh.VM, error) { return helpers.DeploymentVMs(boshClient, manifest.Name) }, "1m", "10s").Should(ConsistOf(helpers.GetVMsFromManifest(manifest))) tcClient = testconsumerclient.New(fmt.Sprintf("http://%s:6769", manifest.InstanceGroups[1].Networks[0].StaticIPs[0])) })
import ( "fmt" "github.com/cloudfoundry-incubator/consul-release/src/acceptance-tests/testing/helpers" testconsumerclient "github.com/cloudfoundry-incubator/consul-release/src/acceptance-tests/testing/testconsumer/client" "github.com/pivotal-cf-experimental/bosh-test/bosh" "github.com/pivotal-cf-experimental/destiny/consul" "github.com/pivotal-cf-experimental/destiny/core" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("Health Check", func() { var ( manifest consul.ManifestV2 tcClient testconsumerclient.Client ) BeforeEach(func() { var err error manifest, _, err = helpers.DeployConsulWithInstanceCount("health-check", 3, boshClient, config) Expect(err).NotTo(HaveOccurred()) Eventually(func() ([]bosh.VM, error) { return helpers.DeploymentVMs(boshClient, manifest.Name) }, "1m", "10s").Should(ConsistOf(helpers.GetVMsFromManifest(manifest))) tcClient = testconsumerclient.New(fmt.Sprintf("http://%s:6769", manifest.InstanceGroups[1].Networks[0].StaticIPs[0])) })