forked from goadesign/goa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_test.go
122 lines (102 loc) · 2.83 KB
/
api_test.go
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package design_test
import (
"github.com/goadesign/goa/design"
"github.com/goadesign/goa/dslengine"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("CanonicalIdentifier", func() {
var id string
var canonical string
JustBeforeEach(func() {
canonical = design.CanonicalIdentifier(id)
})
Context("with a canonical identifier", func() {
BeforeEach(func() {
id = "application/json"
})
It("returns it", func() {
Ω(canonical).Should(Equal(id))
})
})
Context("with a non canonical identifier", func() {
BeforeEach(func() {
id = "application/json+xml; foo=bar"
})
It("canonicalizes it", func() {
Ω(canonical).Should(Equal("application/json; foo=bar"))
})
})
})
var _ = Describe("ExtractWildcards", func() {
var path string
var wcs []string
JustBeforeEach(func() {
wcs = design.ExtractWildcards(path)
})
Context("with a path with no wildcard", func() {
BeforeEach(func() {
path = "/foo"
})
It("returns the empty slice", func() {
Ω(wcs).Should(HaveLen(0))
})
})
Context("with a path with wildcards", func() {
BeforeEach(func() {
path = "/a/:foo/:bar/b/:baz/c"
})
It("extracts them", func() {
Ω(wcs).Should(Equal([]string{"foo", "bar", "baz"}))
})
})
})
var _ = Describe("MediaTypeRoot", func() {
var root design.MediaTypeRoot
BeforeEach(func() {
design.Design.MediaTypes = make(map[string]*design.MediaTypeDefinition)
root = design.MediaTypeRoot{}
})
It("has a non empty DSL name", func() {
Ω(root.DSLName()).ShouldNot(BeEmpty())
})
It("depends on the goa API design root", func() {
Ω(root.DependsOn()).Should(Equal([]dslengine.Root{design.Design}))
})
It("iterates over the generated media types when it's empty", func() {
var sets []dslengine.DefinitionSet
it := func(s dslengine.DefinitionSet) error {
sets = append(sets, s)
return nil
}
root.IterateSets(it)
Ω(sets).Should(HaveLen(1))
Ω(sets[0]).Should(BeEmpty())
})
It("iterates over the generated media types", func() {
var sets []dslengine.DefinitionSet
it := func(s dslengine.DefinitionSet) error {
sets = append(sets, s)
return nil
}
root["foo"] = &design.MediaTypeDefinition{Identifier: "application/json"}
root.IterateSets(it)
Ω(sets).Should(HaveLen(1))
Ω(sets[0]).Should(HaveLen(1))
Ω(sets[0][0]).Should(Equal(root["foo"]))
})
It("iterates over the generated media types in order", func() {
var sets []dslengine.DefinitionSet
it := func(s dslengine.DefinitionSet) error {
sets = append(sets, s)
return nil
}
root["foo"] = &design.MediaTypeDefinition{Identifier: "application/json"}
root["bar"] = &design.MediaTypeDefinition{Identifier: "application/xml"}
root.IterateSets(it)
Ω(sets).Should(HaveLen(1))
Ω(sets[0]).Should(HaveLen(2))
Ω(sets[0][0]).Should(Equal(root["foo"]))
Ω(sets[0][1]).Should(Equal(root["bar"]))
})
})