summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/gomega/matchers/be_a_directory_test.go
blob: bc8742763b34f319beb94a54eb9aa1fdf05a0bae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package matchers_test

import (
	"io/ioutil"
	"os"

	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"
	. "github.com/onsi/gomega/matchers"
)

var _ = Describe("BeADirectoryMatcher", func() {
	Context("when passed a string", func() {
		It("should do the right thing", func() {
			Expect("/dne/test").ShouldNot(BeADirectory())

			tmpFile, err := ioutil.TempFile("", "gomega-test-tempfile")
			Expect(err).ShouldNot(HaveOccurred())
			defer os.Remove(tmpFile.Name())
			Expect(tmpFile.Name()).ShouldNot(BeADirectory())

			tmpDir, err := ioutil.TempDir("", "gomega-test-tempdir")
			Expect(err).ShouldNot(HaveOccurred())
			defer os.Remove(tmpDir)
			Expect(tmpDir).Should(BeADirectory())
		})
	})

	Context("when passed something else", func() {
		It("should error", func() {
			success, err := (&BeADirectoryMatcher{}).Match(nil)
			Expect(success).Should(BeFalse())
			Expect(err).Should(HaveOccurred())

			success, err = (&BeADirectoryMatcher{}).Match(true)
			Expect(success).Should(BeFalse())
			Expect(err).Should(HaveOccurred())
		})
	})
})