SlideShare une entreprise Scribd logo
1  sur  45
Télécharger pour lire hors ligne
grails
                         build-test-data
                             plugin




                         created by Ted Naleid and Joe Hoover


Tuesday, July 14, 2009
creating test data with
                            groovy is easy!


Tuesday, July 14, 2009
iterators
                                     ["Alice", "Bob", "Carol", "Dave"].each {
                         closures    }
                                        new Author(name: it).save()




       syntactic sugar


Tuesday, July 14, 2009
modeling your domain in
                   grails is easy!


Tuesday, July 14, 2009
a book belongs        class Book {
                             String title
                             static belongsTo = [author: Author]
     to an author        }




       an author has     class Author {
                             String name
        many books       }
                             static hasMany = [books: Book]




Tuesday, July 14, 2009
class User {
                                   String login
                                    String password
                                   String email
                                   Date birthDate

                                    static constraints = {
                                       login(size: 5..15,
                 constraints                  blank: false,
                                              unique: true)
                                        password(size: 5..15,
                                                 blank: false)
                                        email(email: true,
                                              blank: false)
                                        birthDate(max: new Date())
                                   }
                               }




Tuesday, July 14, 2009
test data must pass constraints



 def user = new User(
   login: “tnaleid”,
   password: “sekrit1”,
   birthDate: new Date() - (365 * 36)
 ).save()




Tuesday, July 14, 2009
whoops! missed an attribute!



 def user = new User(
   login: “tnaleid”,
   password: “sekrit1”,
   email: “contact@naleid.com”,
   age: new Date() - (365 * 36)
 ).save()




Tuesday, July 14, 2009
constrained attributes are required
   even if your test doesn’t care about
                   them

 def user = new User(
   login: “tnaleid”,
   password: “sekrit”,
   email: “contact@naleid.com”,
   birthDate: new Date() - (365 * 36)
 ).save()

 // service looks up user in DB by username and deletes it
 assertTrue userService.deleteByUsername(“tnaleid”)


Tuesday, July 14, 2009
problem multiplied by
              complex domain models




Tuesday, July 14, 2009
agile + code coverage =
                       lots of tests


Tuesday, July 14, 2009
you need to add a new
                         constraint...
                    what happens to all the
                            tests?

Tuesday, July 14, 2009
Tuesday, July 14, 2009
creating maintainable test
                        data is hard!



Tuesday, July 14, 2009
existing test data
                         creation strategies


Tuesday, July 14, 2009
void testTenDollarPurchase() {
                             def author = new Author(
                                 name: “David Foster Wallace”
                             ).save()
                              Book book = new Book(
                                 author: author,
                                   title: "The Pale King",
                                   published: new Date(),
                                   price: 10.00 as BigDecimal
                             ).save()
                          
     copy/paste/         }
                             def ord = service.orderBook(book.id) 
                            //... test assertions

    modify for every     void testTwentyDollarPurchase() {

     test method             def author = new Author(
                                 name: “David Foster Wallace”
                             ).save()
                              Book book = new Book(
                                 author: author,
                                   title: "Infinite Jest",
                                   published: new Date(),
                                   price: 20.00 as BigDecimal
                             ).save()
                          
                             def ord = service.orderBook(book.id) 
                            //... test assertions
                         }


Tuesday, July 14, 2009
def author

                         void setUp() {
                             author = new Author(
                                 name: “David Foster Wallace”
                             ).save()
                         }

                         void testTenDollarPurchase() {
                             Book book = new Book(
                                 author: author,
                                 title: "The Pale King",
use setUp method                 published: new Date(),
                                 price: 10.00 as BigDecimal
                             ).save()
 to share objects         
                            def order = service.orderBook(book.id) 

   across tests          }
                            //... test assertions


                         void testTwentyDollarPurchase() {
                             Book book = new Book(
                                 author: author,
                                 title: "Infinite Jest",
                                 published: new Date(),
                                 price: 20.00 as BigDecimal
                             ).save()
                          
                            def result = service.orderBook(book.id) 
                            //... test assertions
                         }
Tuesday, July 14, 2009
class AuthorObjectMother {
                             static dfw() {
                                 return new Author(
                                     name: “David Foster Wallace”
                                 ).save()
                             }
                         }

                         class BookObjectMother {
                             static thePaleKing() {
                                 return new Book(
                                     author: AuthorObjectMother.dfw(),
                                     title: “The Pale King”,
                                     published: new Date(),
                                     price: 10.00 as BigDecimal
                                 ).save()

         object mother       }
                             static infiniteJest() {
                                 return new Book(
                                     author: AuthorObjectMother.dfw(),

            pattern                  title: “Infinite Jest”,
                                     published: new Date(),
                                     price: 20.00 as BigDecimal
                                 ).save()
                             }
                         }

                         testTenDollarPurchase() { 
                             Book book = BookObjectMother.thePaleKing()
                             def result = service.orderBook(book.id) 
                             //... test assertions
                         }

                         void testTwentyDollarPurchase() {
                             Book book = BookObjectMother.infiniteJest() 
                             def result = service.orderBook(book.id) 
                             //... test assertions
                         }
Tuesday, July 14, 2009
// fixtures/dfwBooks.groovy:
                         fixture {
                             davidFosterWallace(Author) {
                                 name = “David Foster Wallace”
                             }
                             thePaleKing(Book) {
                                    author = davidFosterWallace
                                    title = "The Pale King"
                                    published = new Date()
                                    price = 10.00 as BigDecimal
                             }
                             infiniteJest(Book) {
                                   author = davidFosterWallace
                                   title = "Infinite Jest"
                                   published = new Date()

  builder DSL / test     }
                             }
                                   price = 20.00 as BigDecimal



       fixtures          // test class ...
                         def fixtureLoader
                         void testTenDollarPurchase() {
                              fixtureLoader.load("dfwBooks")
                              Book book = Book.findByTitle(“The Pale King”)

                             def result = service.orderBook(book.id) 
                             //... test assertions
                         }

                         void testTenDollarPurchase() {
                              fixtureLoader.load("dfwBooks")
                              Book book = Book.findByTitle(“Infinite Jest”)
                              def result = service.orderBook(book.id) 
                            //... test assertions
                         }
Tuesday, July 14, 2009
all of these strategies strive
                      to DRY up your test data
                                creation




Tuesday, July 14, 2009
but all of them repeat the same
            rules specified in the constraints

Tuesday, July 14, 2009
void testTenDollarPurchase() {
                             Book book = new Book(
                                 price: 10.00 as BigDecimal
                             )
                             mockDomain(Book, [book])

grails does have             def order = service.orderBook(book.id)
                             //...test assertions
mocks ... but what       }


 are they really         void testTwentyDollarPurchase() {
                            Book book = new Book(
     testing?                )
                                 price: 20.00 as BigDecimal

                             mockDomain(Book, [book])
                          
                            def result = service.orderBook(book) 
                            //... test assertions
                         }




Tuesday, July 14, 2009
void testPurchaseBookService() {
                                        def author = new Author(
                                           name: "First Last",
                                        ).save()
                                        Book book = new Book(
   what if we could                        author: author,
                                           title: "title",
                                           published: new Date(),
      turn this                            price: 10.00 as BigDecimal
                                        ).save()
                                      
                                        def order = service.orderBook(book.id)
                                        //... test assertions
                                     }




                                     void testPurchaseBookService() {
                                       Book book = Book.build(
                                           price: 10.00 as BigDecimal
                         into this     )

                                         def result = service.orderBook(book)
                                         //... test assertions
                                     }
Tuesday, July 14, 2009
you can with the
                         build-test-data plugin


Tuesday, July 14, 2009
build-test-data
                          advantages


Tuesday, July 14, 2009
testing data documents
                      what’s being tested


Tuesday, July 14, 2009
only specify values the
                                test uses


Tuesday, July 14, 2009
test coupling is
                           eliminated


Tuesday, July 14, 2009
you’re executing real
                          GORM code paths


Tuesday, July 14, 2009
unrelated domain
                         changes won’t break
                              your tests


Tuesday, July 14, 2009
build-test-data usage



Tuesday, July 14, 2009
class Author {
                                String name
                                static hasMany = [books: Book]
                            }
               our domain   class Book {
                                String title
                                static belongsTo = [author: Author]
                            }




Tuesday, July 14, 2009
just give me a   def book = Book.build()

                           assertNotNull book.author
               book        assertNotNull book.title




Tuesday, July 14, 2009
give me a book,
  but let me set the     def book = Book.build(title:“Infinite Jest”)


          title



Tuesday, July 14, 2009
let me tweak the      def book = Book.build(author:

                         )
                             Author.build(name: “Charlie Stross”)

     book’s author



Tuesday, July 14, 2009
build-test-data features



Tuesday, July 14, 2009
‣   Domain objects (1..1, 1..N, N..N)
                         ‣   Embedded domain objects

     build-test-data     ‣
                         ‣
                             String
                             Boolean
       supports all      ‣
                         ‣
                             Number (Integer, Long, Float, etc)
                             Byte
     known attribute     ‣   Date

          types          ‣
                         ‣
                             Enum
                             JodaTime
                         ‣   Any other hibernate persistable class
                             with a zero-argument constructor




Tuesday, July 14, 2009
‣   nullable
                         ‣   blank
                         ‣   inList
                         ‣   max
                         ‣   maxSize

   automatic             ‣
                         ‣
                             min
                             minSize
constraint support       ‣
                         ‣
                             range
                             scale
                         ‣   size
                         ‣   url
                         ‣   creditCard
                         ‣   email




Tuesday, July 14, 2009
manual constraint        ‣
                         ‣
                             matches (regular expressions)
                             validator (user-defined constraint)
    support              ‣   unique




Tuesday, July 14, 2009
configuration file lets you customize
         static attribute values


 // grails-app/conf/TestDataConfig.groovy

 testDataConfig {
     sampleData = {
         Publisher {
             name = “Pragmatic Bookshelf” // default unless overridden
         }
     }
 }



Tuesday, July 14, 2009
configuration file lets you customize
       dynamic attribute values


 // grails-app/conf/TestDataConfig.groovy

 testDataConfig {
     sampleData = {
         ‘com.example.Hotel’ {
             def i = 1
             name = {-> “name${i++}” } // “name1”, “name2”, ... “nameN”
         }
     }
 }


Tuesday, July 14, 2009
build-test-data installation




                              grails install-plugin build-test-data




Tuesday, July 14, 2009
live coding demo



Tuesday, July 14, 2009
links
                                         build-test-data home
                         http://bitbucket.org/tednaleid/grails-test-data/wiki/Home

                                            intro blog post
        http://naleid.com/blog/2009/04/14/grails-build-test-data-01-plugin-released/




                                   photo credits
                http://www.flickr.com/photos/kaptainkobold/3406169798/in/set-1058884

                          http://commons.wikimedia.org/wiki/File:Domain_model.png

                http://www.flickr.com/photos/nickwheeleroz/2474196275/in/photostream




Tuesday, July 14, 2009
Questions?



Tuesday, July 14, 2009

Contenu connexe

Dernier

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 

Dernier (20)

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

En vedette

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

En vedette (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Grails build-test-data Plugin

  • 1. grails build-test-data plugin created by Ted Naleid and Joe Hoover Tuesday, July 14, 2009
  • 2. creating test data with groovy is easy! Tuesday, July 14, 2009
  • 3. iterators ["Alice", "Bob", "Carol", "Dave"].each { closures } new Author(name: it).save() syntactic sugar Tuesday, July 14, 2009
  • 4. modeling your domain in grails is easy! Tuesday, July 14, 2009
  • 5. a book belongs class Book { String title static belongsTo = [author: Author] to an author } an author has class Author { String name many books } static hasMany = [books: Book] Tuesday, July 14, 2009
  • 6. class User { String login String password String email Date birthDate static constraints = { login(size: 5..15, constraints blank: false, unique: true) password(size: 5..15, blank: false) email(email: true, blank: false) birthDate(max: new Date()) } } Tuesday, July 14, 2009
  • 7. test data must pass constraints def user = new User( login: “tnaleid”, password: “sekrit1”, birthDate: new Date() - (365 * 36) ).save() Tuesday, July 14, 2009
  • 8. whoops! missed an attribute! def user = new User( login: “tnaleid”, password: “sekrit1”, email: “contact@naleid.com”, age: new Date() - (365 * 36) ).save() Tuesday, July 14, 2009
  • 9. constrained attributes are required even if your test doesn’t care about them def user = new User( login: “tnaleid”, password: “sekrit”, email: “contact@naleid.com”, birthDate: new Date() - (365 * 36) ).save() // service looks up user in DB by username and deletes it assertTrue userService.deleteByUsername(“tnaleid”) Tuesday, July 14, 2009
  • 10. problem multiplied by complex domain models Tuesday, July 14, 2009
  • 11. agile + code coverage = lots of tests Tuesday, July 14, 2009
  • 12. you need to add a new constraint... what happens to all the tests? Tuesday, July 14, 2009
  • 14. creating maintainable test data is hard! Tuesday, July 14, 2009
  • 15. existing test data creation strategies Tuesday, July 14, 2009
  • 16. void testTenDollarPurchase() { def author = new Author( name: “David Foster Wallace” ).save() Book book = new Book( author: author, title: "The Pale King", published: new Date(), price: 10.00 as BigDecimal ).save()   copy/paste/ } def ord = service.orderBook(book.id)  //... test assertions modify for every void testTwentyDollarPurchase() { test method def author = new Author( name: “David Foster Wallace” ).save() Book book = new Book( author: author, title: "Infinite Jest", published: new Date(), price: 20.00 as BigDecimal ).save()   def ord = service.orderBook(book.id)  //... test assertions } Tuesday, July 14, 2009
  • 17. def author void setUp() { author = new Author( name: “David Foster Wallace” ).save() } void testTenDollarPurchase() { Book book = new Book( author: author, title: "The Pale King", use setUp method published: new Date(), price: 10.00 as BigDecimal ).save() to share objects   def order = service.orderBook(book.id)  across tests } //... test assertions void testTwentyDollarPurchase() { Book book = new Book( author: author, title: "Infinite Jest", published: new Date(), price: 20.00 as BigDecimal ).save()   def result = service.orderBook(book.id)  //... test assertions } Tuesday, July 14, 2009
  • 18. class AuthorObjectMother { static dfw() { return new Author( name: “David Foster Wallace” ).save() } } class BookObjectMother { static thePaleKing() { return new Book( author: AuthorObjectMother.dfw(), title: “The Pale King”, published: new Date(), price: 10.00 as BigDecimal ).save() object mother } static infiniteJest() { return new Book( author: AuthorObjectMother.dfw(), pattern title: “Infinite Jest”, published: new Date(), price: 20.00 as BigDecimal ).save() } } testTenDollarPurchase() {  Book book = BookObjectMother.thePaleKing() def result = service.orderBook(book.id)  //... test assertions } void testTwentyDollarPurchase() { Book book = BookObjectMother.infiniteJest()  def result = service.orderBook(book.id)  //... test assertions } Tuesday, July 14, 2009
  • 19. // fixtures/dfwBooks.groovy: fixture { davidFosterWallace(Author) { name = “David Foster Wallace” } thePaleKing(Book) { author = davidFosterWallace title = "The Pale King" published = new Date() price = 10.00 as BigDecimal } infiniteJest(Book) { author = davidFosterWallace title = "Infinite Jest" published = new Date() builder DSL / test } } price = 20.00 as BigDecimal fixtures // test class ... def fixtureLoader void testTenDollarPurchase() { fixtureLoader.load("dfwBooks") Book book = Book.findByTitle(“The Pale King”) def result = service.orderBook(book.id)  //... test assertions } void testTenDollarPurchase() { fixtureLoader.load("dfwBooks") Book book = Book.findByTitle(“Infinite Jest”) def result = service.orderBook(book.id)  //... test assertions } Tuesday, July 14, 2009
  • 20. all of these strategies strive to DRY up your test data creation Tuesday, July 14, 2009
  • 21. but all of them repeat the same rules specified in the constraints Tuesday, July 14, 2009
  • 22. void testTenDollarPurchase() { Book book = new Book( price: 10.00 as BigDecimal ) mockDomain(Book, [book]) grails does have def order = service.orderBook(book.id) //...test assertions mocks ... but what } are they really void testTwentyDollarPurchase() { Book book = new Book( testing? ) price: 20.00 as BigDecimal mockDomain(Book, [book])   def result = service.orderBook(book)  //... test assertions } Tuesday, July 14, 2009
  • 23. void testPurchaseBookService() { def author = new Author( name: "First Last", ).save() Book book = new Book( what if we could author: author, title: "title", published: new Date(), turn this price: 10.00 as BigDecimal ).save()   def order = service.orderBook(book.id) //... test assertions } void testPurchaseBookService() { Book book = Book.build( price: 10.00 as BigDecimal into this ) def result = service.orderBook(book) //... test assertions } Tuesday, July 14, 2009
  • 24. you can with the build-test-data plugin Tuesday, July 14, 2009
  • 25. build-test-data advantages Tuesday, July 14, 2009
  • 26. testing data documents what’s being tested Tuesday, July 14, 2009
  • 27. only specify values the test uses Tuesday, July 14, 2009
  • 28. test coupling is eliminated Tuesday, July 14, 2009
  • 29. you’re executing real GORM code paths Tuesday, July 14, 2009
  • 30. unrelated domain changes won’t break your tests Tuesday, July 14, 2009
  • 32. class Author { String name static hasMany = [books: Book] } our domain class Book { String title static belongsTo = [author: Author] } Tuesday, July 14, 2009
  • 33. just give me a def book = Book.build() assertNotNull book.author book assertNotNull book.title Tuesday, July 14, 2009
  • 34. give me a book, but let me set the def book = Book.build(title:“Infinite Jest”) title Tuesday, July 14, 2009
  • 35. let me tweak the def book = Book.build(author: ) Author.build(name: “Charlie Stross”) book’s author Tuesday, July 14, 2009
  • 37. Domain objects (1..1, 1..N, N..N) ‣ Embedded domain objects build-test-data ‣ ‣ String Boolean supports all ‣ ‣ Number (Integer, Long, Float, etc) Byte known attribute ‣ Date types ‣ ‣ Enum JodaTime ‣ Any other hibernate persistable class with a zero-argument constructor Tuesday, July 14, 2009
  • 38. nullable ‣ blank ‣ inList ‣ max ‣ maxSize automatic ‣ ‣ min minSize constraint support ‣ ‣ range scale ‣ size ‣ url ‣ creditCard ‣ email Tuesday, July 14, 2009
  • 39. manual constraint ‣ ‣ matches (regular expressions) validator (user-defined constraint) support ‣ unique Tuesday, July 14, 2009
  • 40. configuration file lets you customize static attribute values // grails-app/conf/TestDataConfig.groovy testDataConfig { sampleData = { Publisher { name = “Pragmatic Bookshelf” // default unless overridden } } } Tuesday, July 14, 2009
  • 41. configuration file lets you customize dynamic attribute values // grails-app/conf/TestDataConfig.groovy testDataConfig { sampleData = { ‘com.example.Hotel’ { def i = 1 name = {-> “name${i++}” } // “name1”, “name2”, ... “nameN” } } } Tuesday, July 14, 2009
  • 42. build-test-data installation grails install-plugin build-test-data Tuesday, July 14, 2009
  • 43. live coding demo Tuesday, July 14, 2009
  • 44. links build-test-data home http://bitbucket.org/tednaleid/grails-test-data/wiki/Home intro blog post http://naleid.com/blog/2009/04/14/grails-build-test-data-01-plugin-released/ photo credits http://www.flickr.com/photos/kaptainkobold/3406169798/in/set-1058884 http://commons.wikimedia.org/wiki/File:Domain_model.png http://www.flickr.com/photos/nickwheeleroz/2474196275/in/photostream Tuesday, July 14, 2009