The Pester Book (Pester Book (Forever Edition))
$30.00
Minimum price
$50.00
Suggested price

The Pester Book

About the Book

"Pester is an important skill that every PowerShell user should master."
- Jeffrey Snover, Creator of PowerShell

Pester is a unit-testing framework for PowerShell, and perhaps the first open-source software product that ships with Windows itself! Author Adam Bertram will walk you through the Pester philosophy, syntax, and numerous real-world examples.

We'll cover everything you need to know from knowing nothing about Pester and testing PowerShell scripts to becoming a testing master!

Part 1 covers the core syntax of Pester and introduces you to various possible use cases for the different syntax elements. It's enough to get you up and running if you're familiar with unit testing, or if you want to give Pester a spin.

Part 2 will take that syntax and dig into the world of unit testing and test-driven development, through a series of real-world walkthroughs. Some of these will be "stream of consciousness," following the actual process someone might use to add or develop Pester tests. This part will also cover using Pester for infrastructure validation in an "infrastructure from code" environment.

Part 3 will introduce you to Gherkin. Gherkin is another style of test writing that comes with Pester. This part will introduce you to Gherkin, how it's different than Pester test design and how it integrates with Pester.

Part 4 will tackle code coverage, an important topic to help make sure you're testing all of your code but with some not-so-obvious gotchas, you need to watch out for.

Part 5 will be more of a "cookbook," with recipes for testing specific types of situations. You will find many different, specific use-cases in here and how to test for them.

Check Out the Free Sample

The free sample includes sample chapters, but why bother? LeanPub has a no-questions-asked refund policy, so it's completely risk-free to grab the "real" book and see what you think.

What Formats are Available?

All LeanPub books are offered in PDF, MOBI, and EPUB, and you get all three with your purchase. Note that the PDF is probably the "highest fidelity" version, especially in terms of code listings.

Testimonials

I use The Pester Book to on-board all my new members, so they start with a solid foundation in Pester and how it is used to test infrastructure and powershell module code. In addition to providing the go-to resource for booting up on Pester, I find myself referring back to it often as a reference for some of the more advanced Pester concepts that I need to solve some of our more complex testing scenarios
Brett Hinton

The Pester book is invaluable as standard reference for getting to grips with the Pester concepts as PowerShell testing framework, as well as providing practical examples of how to automate testing your PowerShell code.
Michel de Rooij

If you want to prove your PowerShell scripts are actually doing what they are supposed to, this book is for you. The Pester Book by Adam Bertram will teach you how to utilize Pester for testing your PowerShell code in ways you never thought you could do without trial and error. You’ll learn how to leverage the Pester framework to mock data that can be used to verify your functions, perform infrastructure testing, and much more. This book is one of my favorites and sits next to many other PowerShell books I’ve bought over the years. The Pester Book helped take my scripts to the next level.
Bill Kindle

The Pester book not only gave me an in-depth understanding of the Pester framework; it also taught me a new way of looking at my PowerShell code. The end result was cleaner, more concise code with unit tests to back it up.
Monte Hazboun
  • Share this book

  • Categories

    • DevOps
    • PowerShell
    • Testing
  • Installments completed

    40 / 40

  • Feedback

    Email the Author(s)

About the Author

Adam Bertram
Adam Bertram

Adam Bertram is a 20+ year veteran of IT and an experienced online business professional. He’s a consultant, Microsoft MVP, blogger, trainer, published author and content marketer for multiple technology companies. Catch up on Adam’s articles at adamtheautomator.com, connect on LinkedIn, or follow him on Twitter at @adbertram.

Bundles that include this book

3 Books
$74.98
Bought separately
$60.00
Bundle Price

Reader Testimonials

Nicholas Getchell
Nicholas Getchell

I just finished this book last night. I've been using Pester for a while but still earned a ton.

Table of Contents

  • About This Book
  • About the Author
  • Foreword
  • Feedback
  • Code Samples
  • Introduction
    • Testing as Institutional Memory
    • Testing Drives Better Modularization
    • Tests as Functional Specifications
    • Tests in Automated Build Pipelines
    • Where We’re Not Going
    • Resources
  • Part I - Pester Concepts
  • Block Introduction
    • Describe Blocks
    • Context Blocks
    • It Blocks
    • Before and After Blocks
    • Summary
  • TestDrive and TestRegistry
    • Using TestDrive
    • Using TestRegistry
    • Summary
  • Assertions
    • Using the Should Assertion
    • Understanding Should Operators
    • Testing Collections
    • Other Tests
    • Testing Errors
    • Adding Custom Assertion Operators
    • Because
    • Summary
  • Test Cases
    • Creating Tests for Different Parameters
    • Using the TestCases Parameter
    • Using the Test Name Token
    • Summary
  • Mocking Introduction
    • Mock Walkthrough
    • Mock Assertions
    • Summary
  • Code Coverage
    • Why Code Coverage?
    • Using Pester to Measure Code Coverage
    • Getting Granular with Code Coverage
    • Summary
  • Gherkin
    • Files
    • Features
    • Scenarios
    • Steps
    • Step Definitions
    • Running Gherkin Tests
    • Summary
  • Part 2: Using Pester
  • Controlling Test Results
    • Pending and Skipped States
    • Forcing Pass/Fail States
    • Summary
  • Working with Pester Output
    • nUnit XML
    • Returning Failed Tests as Exit Codes
    • Summary
  • Tagging
    • Introduction to Tagging
    • Tagging Strategies
    • Summary
  • Modules and Dot-Sourced Script Gotchas
    • Scripts with Functions
    • Modules
    • Summary
  • Advanced Mocking
    • Mocking Specific Object Types
    • Mock Scope
    • Module-Level Mocks
    • Parameter Filters
    • Summary
  • Mocking the Unmockable
    • .NET Methods
    • Creating Wrapper Functions
    • “Overwriting” .NET Methods with a ScriptMethod
    • Using “Stubbed” Commands
    • Asserting Mocks “Transitively”
    • Summary
  • Improving Code Coverage
    • Step #1: Getting a Baseline
    • Step #2: Build the Test Framework
    • Step #3: Create the Mocks
    • Step #4: Know the “Before” Code Coverage
    • Step #5: Build all Tests
    • Step #6: Re-check Code Coverage
    • Summary
  • Infrastructure Testing
    • Analyzing the Code
    • Getting Testing Dependencies in Place
    • Prototyping the Infrastructure Tests
    • Assessing the Current Environment
    • Writing the Infrastructure Tests
    • Dependencies
    • Operational Validation Framework (OVF)
    • Summary
  • Troubleshooting and Debugging
    • Sending Variables to the Console with Write-Host
    • Using Debugger Breakpoints During Tests
    • Summary
  • Test Walkthrough #1
    • Analyzing the Code
    • Refactoring
    • Deciding What to Test
    • Find the Shortest Code Path
    • Creating Test(s) for the Shortest Code Path
    • Building Tests for Other Code Paths
    • Summary
  • Test Walkthrough #2
    • Understand the Subject
    • Designing Tests
    • Writing the Tests
    • ImportVariables Parameter
    • ImportModules Parameter
    • RunspaceTimeout Parameter
    • Parameter parameter
    • Summary
  • Part 3: Hands-On Design and Testing
  • Buildling Testable Code
    • Modularization
    • Limit Function Input
    • Input Via Parameters
    • Managing Output Properly
    • Summary
  • Test Design Practices
    • Ensuring Code “State” Doesn’t Change
    • The Input/Execution/Output Pattern
    • Choosing When to Create Describe Blocks
    • Naming Conventions
    • Summary
  • Part 4: Pester Cookbook
  • Recipe: Testing for Live Conditions
  • Recipe: Testing for Installed Software
  • Recipe: Ensuring all Functions in a Module Have Tests
  • Recipe: Testing External Applications
    • The Background
    • Testing Exit Codes from Standalone EXE files
  • Recipe: Testing Syntax
  • Recipe: Testing Remote Script Blocks
  • Resources
    • Video Courses
    • Articles
  • Release Notes

The Leanpub 60 Day 100% Happiness Guarantee

Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.

Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.

You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!

So, there's no reason not to click the Add to Cart button, is there?

See full terms...

80% Royalties. Earn $16 on a $20 book.

We pay 80% royalties. That's not a typo: you earn $16 on a $20 sale. If we sell 5000 non-refunded copies of your book or course for $20, you'll earn $80,000.

(Yes, some authors have already earned much more than that on Leanpub.)

In fact, authors have earnedover $13 millionwriting, publishing and selling on Leanpub.

Learn more about writing on Leanpub

Free Updates. DRM Free.

If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).

Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.

Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.

Learn more about Leanpub's ebook formats and where to read them

Write and Publish on Leanpub

You can use Leanpub to easily write, publish and sell in-progress and completed ebooks and online courses!

Leanpub is a powerful platform for serious authors, combining a simple, elegant writing and publishing workflow with a store focused on selling in-progress ebooks.

Leanpub is a magical typewriter for authors: just write in plain text, and to publish your ebook, just click a button. (Or, if you are producing your ebook your own way, you can even upload your own PDF and/or EPUB files and then publish with one click!) It really is that easy.

Learn more about writing on Leanpub