forked from beloglazov/couchdb-scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QueryViewSpec.scala
155 lines (138 loc) · 6.38 KB
/
QueryViewSpec.scala
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
* Copyright 2015 IBM Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.ibm.couchdb.api
import com.ibm.couchdb.spec.CouchDbSpecification
import com.ibm.couchdb.{CouchDocs, CouchKeyVals, CouchReducedKeyVals}
import org.specs2.matcher.MatchResult
import scalaz.concurrent.Task
class QueryViewSpec extends CouchDbSpecification {
val db = "couchdb-scala-query-view-spec"
val databases = new Databases(client)
val design = new Design(client, db)
val documents = new Documents(client, db, typeMapping)
val query = new Query(client, db)
val namesView = query.view[String, String](fixDesign.name, FixViews.names).get
val compoundView = query.view[(Int, String), FixPerson](fixDesign.name, FixViews.compound).get
val aggregateView = query.view[String, String](fixDesign.name, FixViews.reduced).get
recreateDb(databases, db)
val createdDesign = awaitRight(design.create(fixDesign))
val createdAlice = awaitRight(documents.create(fixAlice))
val createdBob = awaitRight(documents.create(fixBob))
val createdCarl = awaitRight(documents.create(fixCarl))
"Query View API" >> {
"Query a view" >> {
def verify(task: Task[CouchKeyVals[String, String]]): MatchResult[Any] = {
val docs = awaitRight(task)
docs.offset mustEqual 0
docs.total_rows mustEqual 3
docs.rows must haveLength(3)
docs.rows.map(_.id) mustEqual Seq(createdAlice.id, createdBob.id, createdCarl.id)
docs.rows.map(_.key) mustEqual Seq(fixAlice.name, fixBob.name, fixCarl.name)
docs.rows.map(_.value) mustEqual Seq(fixAlice.name, fixBob.name, fixCarl.name)
}
verify(namesView.build.query)
verify(namesView.noReduce.excludeDocs.build.query)
}
"Query a view with reducer" >> {
def verify(task: Task[CouchReducedKeyVals[String, Int]]): MatchResult[Any] = {
val docs = awaitRight(task)
docs.rows must haveLength(1)
docs.rows.head.value mustEqual Seq(fixCarl.age, fixBob.age, fixAlice.age).sum
}
verify(aggregateView.reduce[Int].build.query)
verify(aggregateView.noReduce.reduce[Int].build.query)
}
"Query a view with reducer given keys" >> {
def verify(task: Task[CouchReducedKeyVals[String, Int]]): MatchResult[Any] = {
val docs = awaitRight(task)
docs.rows must haveLength(2)
docs.rows.map(_.value).sum mustEqual Seq(fixCarl.age, fixAlice.age).sum
docs.rows.map(_.key) mustEqual Seq(createdCarl.id, createdAlice.id)
}
verify(aggregateView.reduce[Int].withIds(Seq(createdCarl.id, createdAlice.id)).build.query)
}
"Query a view in the descending order" >> {
def verify(task: Task[CouchKeyVals[String, String]]): MatchResult[Any] = {
val docs = awaitRight(task)
docs.offset mustEqual 0
docs.total_rows mustEqual 3
docs.rows must haveLength(3)
docs.rows.map(_.id) mustEqual Seq(createdCarl.id, createdBob.id, createdAlice.id)
docs.rows.map(_.key) mustEqual Seq(fixCarl.name, fixBob.name, fixAlice.name)
docs.rows.map(_.value) mustEqual Seq(fixCarl.name, fixBob.name, fixAlice.name)
}
verify(namesView.descending().build.query)
}
"Query a view with compound keys and values" >> {
def verify(
task: Task[CouchKeyVals[(Int, String), FixPerson]]): MatchResult[Seq[FixPerson]] = {
val docs = awaitRight(task)
docs.offset mustEqual 0
docs.total_rows mustEqual 3
docs.rows must haveLength(3)
docs.rows.map(_.key) mustEqual Seq((20, "Carl"), (25, "Alice"), (30, "Bob"))
docs.rows.map(_.value) must contain(allOf(fixAlice, fixBob, fixCarl))
}
verify(compoundView.build.query)
}
"Query a view and select by key" >> {
def verify[K, V, I](
task: Task[CouchKeyVals[K, V]], expected: Seq[I], total: Int): MatchResult[Any] = {
val docs = awaitRight(task)
docs.total_rows mustEqual total
docs.rows must haveLength(expected.length)
docs.rows.map(_.key) must containTheSameElementsAs(expected)
}
verify(namesView.key("Alice").build.query, Seq("Alice"), 3)
verify(compoundView.key((30, "Bob")).build.query, Seq((30, "Bob")), 3)
}
"Query a view and include documents" >> {
def verify(task: Task[CouchDocs[String, String, FixPerson]]): MatchResult[Any] = {
val docs = awaitRight(task)
docs.offset mustEqual 0
docs.total_rows mustEqual 3
docs.rows must haveLength(3)
docs.rows.map(_.key) mustEqual Seq(fixAlice.name, fixBob.name, fixCarl.name)
docs.rows.map(_.value) mustEqual Seq(fixAlice.name, fixBob.name, fixCarl.name)
docs.rows.map(_.doc.doc) mustEqual Seq(fixAlice, fixBob, fixCarl)
}
verify(namesView.includeDocs[FixPerson].build.query)
}
"Query a view with a set of keys" >> {
def verify(task: Task[CouchKeyVals[String, String]]): MatchResult[Any] = {
val docs = awaitRight(task)
docs.offset mustEqual 0
docs.total_rows mustEqual 3
docs.rows must haveLength(2)
docs.rows.map(_.key) mustEqual Seq(fixAlice.name, fixBob.name)
docs.rows.map(_.value) mustEqual Seq(fixAlice.name, fixBob.name)
}
verify(namesView.withIds(Seq(fixAlice.name, fixBob.name)).build.query)
}
"Query a view with a set of keys and include documents" >> {
def verify(task: Task[CouchDocs[String, String, FixPerson]]): MatchResult[Any] = {
val docs = awaitRight(task)
docs.offset mustEqual 0
docs.total_rows mustEqual 3
docs.rows must haveLength(2)
docs.rows.map(_.key) mustEqual Seq(fixAlice.name, fixBob.name)
docs.rows.map(_.value) mustEqual Seq(fixAlice.name, fixBob.name)
docs.rows.map(_.doc.doc) mustEqual Seq(fixAlice, fixBob)
}
verify(namesView.includeDocs[FixPerson].withIds(Seq(fixAlice.name, fixBob.name)).build.query)
}
}
}