summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/integration/_fixtures/synchronized_setup_tests/synchronized_setup_tests_suite_test.go
blob: b734854ee0e09d072b2a56d8be7bf4084f336f8e (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
41
42
43
package synchronized_setup_tests_test

import (
	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"

	"fmt"
	"testing"
	"time"
)

func TestSynchronized_setup_tests(t *testing.T) {
	RegisterFailHandler(Fail)
	RunSpecs(t, "Synchronized_setup_tests Suite")
}

var beforeData string

var _ = SynchronizedBeforeSuite(func() []byte {
	fmt.Printf("BEFORE_A_%d\n", GinkgoParallelNode())
	time.Sleep(100 * time.Millisecond)
	return []byte("DATA")
}, func(data []byte) {
	fmt.Printf("BEFORE_B_%d: %s\n", GinkgoParallelNode(), string(data))
	beforeData += string(data) + "OTHER"
})

var _ = SynchronizedAfterSuite(func() {
	fmt.Printf("\nAFTER_A_%d\n", GinkgoParallelNode())
	time.Sleep(100 * time.Millisecond)
}, func() {
	fmt.Printf("AFTER_B_%d\n", GinkgoParallelNode())
})

var _ = Describe("Synchronized Setup", func() {
	It("should run the before suite once", func() {
		Ω(beforeData).Should(Equal("DATAOTHER"))
	})

	It("should run the before suite once", func() {
		Ω(beforeData).Should(Equal("DATAOTHER"))
	})
})