And it works with associations too:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.unnoware | |
class Book { | |
static belongsTo = ['author': Author] | |
String title | |
Integer pages | |
BigDecimal price | |
static constraints = { | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.unnoware | |
import grails.plugin.spock.IntegrationSpec | |
class BookSpec extends IntegrationSpec { | |
def "select a subset of Book and Author properties"() { | |
setup: | |
(1..3).collect { authorIdx -> | |
def author = Author.build(name : "author #$authorIdx", age : 30 + authorIdx) | |
(1..authorIdx).collect{ bookIdx -> | |
Book.build(author : author, title : "Book #$bookIdx from ${author.name}", pages : bookIdx * 100, price : bookIdx * 1000.0) | |
} | |
} | |
when: "querying for author name and age " | |
def results = Book.withCriteria{ | |
projections{ | |
author{ | |
property 'name', 'authorName' | |
property 'age', 'authorAge' | |
} | |
property 'title', 'title' | |
property 'price', 'price' | |
} | |
gt 'authorAge', 31 | |
le 'price', 2000.0 | |
} | |
then: "only the authors with age > 31 with books priced 2000 or less" | |
results.size() == 4 | |
and: "returned author name and age with book title and price properties" | |
results[i].size() == 4 | |
and: | |
results[i][0] == name | |
results[i][1] == age | |
results[i][2] == title | |
results[i][3] == price | |
where: | |
i | name | age | title | price | |
0 | 'author #2' | 32 | "Book #1 from author #2" | 1000.0 | |
1 | 'author #2' | 32 | "Book #2 from author #2" | 2000.0 | |
2 | 'author #3' | 33 | "Book #1 from author #3" | 1000.0 | |
3 | 'author #3' | 33 | "Book #2 from author #3" | 2000.0 | |
} | |
} |