package matchers_test import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("ConsistOf", func() { Context("with a slice", func() { It("should do the right thing", func() { Expect([]string{"foo", "bar", "baz"}).Should(ConsistOf("foo", "bar", "baz")) Expect([]string{"foo", "bar", "baz"}).Should(ConsistOf("foo", "bar", "baz")) Expect([]string{"foo", "bar", "baz"}).Should(ConsistOf("baz", "bar", "foo")) Expect([]string{"foo", "bar", "baz"}).ShouldNot(ConsistOf("baz", "bar", "foo", "foo")) Expect([]string{"foo", "bar", "baz"}).ShouldNot(ConsistOf("baz", "foo")) }) }) Context("with an array", func() { It("should do the right thing", func() { Expect([3]string{"foo", "bar", "baz"}).Should(ConsistOf("foo", "bar", "baz")) Expect([3]string{"foo", "bar", "baz"}).Should(ConsistOf("baz", "bar", "foo")) Expect([3]string{"foo", "bar", "baz"}).ShouldNot(ConsistOf("baz", "bar", "foo", "foo")) Expect([3]string{"foo", "bar", "baz"}).ShouldNot(ConsistOf("baz", "foo")) }) }) Context("with a map", func() { It("should apply to the values", func() { Expect(map[int]string{1: "foo", 2: "bar", 3: "baz"}).Should(ConsistOf("foo", "bar", "baz")) Expect(map[int]string{1: "foo", 2: "bar", 3: "baz"}).Should(ConsistOf("baz", "bar", "foo")) Expect(map[int]string{1: "foo", 2: "bar", 3: "baz"}).ShouldNot(ConsistOf("baz", "bar", "foo", "foo")) Expect(map[int]string{1: "foo", 2: "bar", 3: "baz"}).ShouldNot(ConsistOf("baz", "foo")) }) }) Context("with anything else", func() { It("should error", func() { failures := InterceptGomegaFailures(func() { Expect("foo").Should(ConsistOf("f", "o", "o")) }) Expect(failures).Should(HaveLen(1)) }) }) Context("when passed matchers", func() { It("should pass if the matchers pass", func() { Expect([]string{"foo", "bar", "baz"}).Should(ConsistOf("foo", MatchRegexp("^ba"), "baz")) Expect([]string{"foo", "bar", "baz"}).ShouldNot(ConsistOf("foo", MatchRegexp("^ba"))) Expect([]string{"foo", "bar", "baz"}).ShouldNot(ConsistOf("foo", MatchRegexp("^ba"), MatchRegexp("foo"))) Expect([]string{"foo", "bar", "baz"}).Should(ConsistOf("foo", MatchRegexp("^ba"), MatchRegexp("^ba"))) Expect([]string{"foo", "bar", "baz"}).ShouldNot(ConsistOf("foo", MatchRegexp("^ba"), MatchRegexp("turducken"))) }) It("should not depend on the order of the matchers", func() { Expect([][]int{[]int{1, 2}, []int{2}}).Should(ConsistOf(ContainElement(1), ContainElement(2))) Expect([][]int{[]int{1, 2}, []int{2}}).Should(ConsistOf(ContainElement(2), ContainElement(1))) }) Context("when a matcher errors", func() { It("should soldier on", func() { Expect([]string{"foo", "bar", "baz"}).ShouldNot(ConsistOf(BeFalse(), "foo", "bar")) Expect([]interface{}{"foo", "bar", false}).Should(ConsistOf(BeFalse(), ContainSubstring("foo"), "bar")) }) }) }) Context("when passed exactly one argument, and that argument is a slice", func() { It("should match against the elements of that argument", func() { Expect([]string{"foo", "bar", "baz"}).Should(ConsistOf([]string{"foo", "bar", "baz"})) }) }) })