Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Test-Driven Development in Go
Test-Driven Development in Go

Test-Driven Development in Go: A practical guide to writing idiomatic and efficient Go tests through real-world examples

eBook
₹799 ₹2382.99
Paperback
₹2978.99
Subscription
Free Trial
Renews at ₹800p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Test-Driven Development in Go

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Write Go test suites using popular mocking and testing frameworks
  • Leverage TDD to implement testing at all levels of web applications and microservices architecture
  • Master the art of writing tests that cover edge cases and concurrent code

Description

Experienced developers understand the importance of designing a comprehensive testing strategy to ensure efficient shipping and maintaining services in production. This book shows you how to utilize test-driven development (TDD), a widely adopted industry practice, for testing your Go apps at different levels. You’ll also explore challenges faced in testing concurrent code, and learn how to leverage generics and write fuzz tests. The book begins by teaching you how to use TDD to tackle various problems, from simple mathematical functions to web apps. You’ll then learn how to structure and run your unit tests using Go’s standard testing library, and explore two popular testing frameworks, Testify and Ginkgo. You’ll also implement test suites using table-driven testing, a popular Go technique. As you advance, you’ll write and run behavior-driven development (BDD) tests using Ginkgo and Godog. Finally, you’ll explore the tricky aspects of implementing and testing TDD in production, such as refactoring your code and testing microservices architecture with contract testing implemented with Pact. All these techniques will be demonstrated using an example REST API, as well as smaller bespoke code examples. By the end of this book, you’ll have learned how to design and implement a comprehensive testing strategy for your Go applications and microservices architecture.

Who is this book for?

If you are an intermediate-level developer or software testing professional who knows Go fundamentals and is looking to deliver projects with Go, then this book is for you. Knowledge of Go syntax, structs, functions, and interfaces will help you get the most out of this book.

What you will learn

  • Create practical Go unit tests using mocks and assertions with Testify
  • Build table-driven test suites for HTTP web applications
  • Write BDD-style tests using the Ginkgo testing framework
  • Use the Godog testing framework to reliably test web applications
  • Verify microservices architecture using Pact contract testing
  • Develop tests that cover edge cases using property testing and fuzzing

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Apr 28, 2023
Length: 342 pages
Edition : 1st
Language : English
ISBN-13 : 9781803235028
Languages :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Apr 28, 2023
Length: 342 pages
Edition : 1st
Language : English
ISBN-13 : 9781803235028
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
₹800 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
₹4500 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₹400 each
Feature tick icon Exclusive print discounts
₹5000 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₹400 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 9,681.97
Test-Driven Development in Go
₹2978.99
Effective Concurrency in Go
₹2978.99
Event-Driven Architecture in Golang
₹3723.99
Total 9,681.97 Stars icon
Banner background image

Table of Contents

17 Chapters
Part 1: The Big Picture Chevron down icon Chevron up icon
Chapter 1: Getting to Grips with Test-Driven Development Chevron down icon Chevron up icon
Chapter 2: Unit Testing Essentials Chevron down icon Chevron up icon
Chapter 3: Mocking and Assertion Frameworks Chevron down icon Chevron up icon
Chapter 4: Building Efficient Test Suites Chevron down icon Chevron up icon
Part 2: Integration and End-to-End Testing with TDD Chevron down icon Chevron up icon
Chapter 5: Performing Integration Testing Chevron down icon Chevron up icon
Chapter 6: End-to-End Testing the BookSwap Web Application Chevron down icon Chevron up icon
Chapter 7: Refactoring in Go Chevron down icon Chevron up icon
Chapter 8: Testing Microservice Architectures Chevron down icon Chevron up icon
Part 3: Advanced Testing Techniques Chevron down icon Chevron up icon
Chapter 9: Challenges of Testing Concurrent Code Chevron down icon Chevron up icon
Chapter 10: Testing Edge Cases Chevron down icon Chevron up icon
Chapter 11: Working with Generics Chevron down icon Chevron up icon
Assessments Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.9
(16 Ratings)
5 star 87.5%
4 star 12.5%
3 star 0%
2 star 0%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




arsalan May 16, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The testing approaches are covered in full in this book, along with how to set up and execute your unit tests using Go's built-in testing library.It clearly describes how to develop and put into practise a thorough testing plan for your Go applications and microservices architecture.It's a great resource for all go devs looking to adopt the TDD method. This book is a useful resource for people looking for a good source in this field due to the author's experience, clear explanations, and applicable examples.Highly recommend.
Amazon Verified review Amazon
Rhys Dunne May 12, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
As a newbie with Go I found this book of great benefit.Adelina has covered the fundamentals of coding and design, not just testing.Testing in particular I found I found challenging to understand, as I don’t feel the testing library provides much guidance by itself. I appreciated that the book covered the entire testing pyramid and applies it to web apps. Really looking forward to digging into the code on GitHub too!
Amazon Verified review Amazon
Krishnan Raghavan Sep 01, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Test Driven Development has been used by the industry for a long time now to ensure that deliveries are made as close a perfection as possible. Every developer/company tries to ensure that TDD is part of the development process and makes it a primary part of engineering. This book addresses the need to understand how to implement TDD while using Go for development.The book is split into three parts. The first part starts with covering the basics of TDD as part of Chapter 1. This chapter covers the principles and the benefits of using TDD. Continuing from Chapter 1, Chapter 2 teaches the readers the essential knowledge to understand how to write test cases using Go's standard testing library. Chapter 3 builds on the knowledge acquired in the previous chapter and shows the reader how to write test cases for code that has dependencies. It covers interfaces, assertions, and the importance of generating and using mocks to write test cases. Chapter 4 teaches the readers how to build test suites using the popular Go testing technique of table-driven design.The second part covers the integration and end-to-end testing. It starts with Chapter 5 where the reader understands how to include interaction between components using integration testing. Chapter 6 focuses on End-To-End testing while building a REST API application. As part of this chapter, the reader also understands the use of Docker, Database Interaction, and end-to-end testing. Chapter 7 is about the Refactoring of code in Go and how TDD can be used to facilitate this process. Chapter 8 covers a very important topic of Testing Microservice Architecture, and the challenges associated with it, and also introduces Contract Testing used to verify the integration between services.The third and the last part of the book covers Advanced Testing Techniques. Chapter 9 helps the reader understand the challenges of testing/verifying concurrent Go code. Chapter 10 is about testing edge cases and scenarios by making use of fuzz testing and property-based testing. Chapter 11 helps the reader understand the usage and testing of Go Generics.This is a wonderfully written book that will help the reader understand how to implement TDD using the Go Programming Language. Kudos to Adelina Simion for writing a much-needed book in this area.
Amazon Verified review Amazon
Dave Banerjee Jun 06, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Testing with Go includes everything you need to test every aspect of a Go program. Many of the techniques in this book can also be applied to other software and languages! This book provides a solid testing foundation necessary for building high-quality software with Go.
Amazon Verified review Amazon
Harry May 08, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I got this book on a recommendation from a friend, suggesting it would be a good entry to the language. Having just finished it, I can confirm it was a great suggestion - the book covers testing principles in depth (applicable to all languages), then holds your hand getting into the nuts and bolts of Go, and Go testing with the Github resources. I found the book easy to follow, though some video resources might have been a nice addition to code along to.Definitely would recommend as a really helpful intro to Go and Go testing.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.