SlideShare a Scribd company logo
Puppet Code testing


Modules vs. Control-Repo
Martin Alfke - example42 GmbH


PuppetCamp April 15, 2021
1
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Puppet since 2009, Puppet Trainer since
2011, Puppet Certified Consultant since 2015


CEO & Co-Founder example42 GmbH


tuxmea (Twitter, GitHub, Slack)


Puppet Consulting, Training and
Development
MartinAlfke
2
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Why testing?
3
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Why testing?
4
Can Puppet compiler parse your
code?


Can you upgrade to a newer Puppet
version?


Does the refactoring accidentally
change anything?
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Why testing?
5
What to use?


- puppet-lint


- rspec-puppet


- PDK


- OnceOver


- Beaker


- Litmus


- serverspec


- https://voxpupuli.org/plugins/
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Why testing?
6
But,


I only want to write Puppet code!


And now I must learn testing?


Let’s choose the most simple to use
solution!
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Why testing?
7
Which tests to run?


- Lint tests - check style guide


- Unit tests - check catalog


- Acceptance tests - check system
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Testing Modules
8
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Where do you want to run the test?


On your workstation (Windows, Mac
OS, Linux)


Within an automated CI pipeline (Linux
Shell, Container)
Testing Modules
9
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Testing Modules
10
Image: tatlin
PDK:


- easy to use


- all bundled


- different Puppet version tests possible


pdk validate --puppet-version=7
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Standalone Library (or Component)
Modules, not roles & profiles


Use PDK (Puppet Development Kit) to
generate module, classes, …


- pdk new module


- pdk new class, defined_type, fact,
function, provider, task


- pdk convert, update
Testing Modules
11
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Testing Modules
12
Image: tatlin
Use PDK (Puppet Development Kit) for
testing:


- pdk validate


- pdk test unit
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Testing Modules
13
Image: tatlin
Add dependencies like stdlib or inifile
to .fixtures.yml


Get dependencies from forge or git
(upstream or local)
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Testing Modules
14
Image: tatlin
You want to change the default
behaviour?


Check the pdk-template git repo and
use the possibility to configure PDK
(.sync.yml)


Run pdk update afterwards.
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Testing Modules
15
Image: tatlin
PDK uses Puppet version and
supported OS from metadata.json


But how to proceed with control-repo?
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Testing Control-Repo - PDK
16
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 17
Syntax Tests:


Role and profile modules must be generated
using PDK


pushd site/profile && pdk validate && popd


pushd site/role && pdk validate && popd


Image: tatlin
Testing Control-Repo - PDK
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 18
Using PDK for Unit Testing


Many dependencies (upstream or library
modules) like stdlib, inifile, core modules, ...


You want to use your control-repo Hiera config
and data


You want to use your manifests/site.pp
Image: tatlin
Testing Control-Repo - PDK
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 19
Using PDK for Unit Testing


- profile and role module must be in PDK
format (use pdk convert on existing profile
and role modules)


- modules from Puppetfile must be installed
locally (r10k puppetfile install)
Image: tatlin
Testing Control-Repo - PDK
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 20
Using PDK - solution


One needs:


- .fixtures.yml


- spec/spec_helper_local.rb
Image: tatlin
Testing Control-Repo - PDK
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 21
Using PDK on profile module
-.fixtures.yml


# site/profile/.fixtures.yml


---


fixtures:


symlinks:


profile: "#{source_dir}"


../r10k: ‘../../../../modules'
Testing Control-Repo - PDK
Using PDK on role module
-.fixtures.yml


# site/role/.fixtures.yml


---


fixtures:


symlinks:


role: "#{source_dir}"


profile: "#{source_dir}/../profile"


../r10k: ‘../../../../modules'
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 22
Using PDK - spec/spec_helper_local.rb


# site/{role|profile}/spec/spec_helper_local.rb


fixture_path = File.expand_path(File.join(__FILE__, '..', 'fixtures'))


RSpec.configure do |c|


c.module_path = File.join(fixture_path, 'modules') + ':' + File.join(fixture_path, ‘r10k')


c.manifest_dir = File.join(fixture_path, ‘../../../../manifests’)


c.manifest = File.join(fixture_path, ‘../../../../manifests/site.pp’)


c.hiera_config = File.join(fixture_path, '../../../../hiera.yaml')


end
Image: tatlin
Testing Control-Repo - PDK
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 23
Run your control-repo tests:


r10k puppetfile install


pushd site/profile && pdk test unit && popd


pushd site/role && pdk test unit && popd


Image: tatlin
Testing Control-Repo - PDK
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 24
Using PDK for Acceptance Testing


PDK does not officially support acceptance
testing.


Yes, PDK ships beaker and litmus


- pdk bundle exec rake -T


pdk bundle: not officially supported!


Image: tatlin
Testing Control-Repo - PDK
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 25
How to deal with role or profile classes which
are designed for a specific OS only?


Reminder: PDK uses supported OS from
metadata.json


Many adoptions required.


Is there a more simple way?
Image: tatlin
Testing Control-Repo - PDK
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Testing Control-Repo - OnceOver
26
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 27
https://github.com/dylanratcliffe/onceover


Specially created to test Puppet control-repo


Separation of concerns: tests for library
modules vs. tests for control-repo


Run syntax, unit and acceptance tests … and
one more thing ;-)
Image: tatlin
Testing Control-Repo - OnceOver
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 28
Delivered as Ruby GEM:


gem install onceover onceover-codequality


Or: Gemfile: gem ‘onceover’


gem ‘onceover-codequality’


Initialize OnceOver on your control-repo:
onceover init


Run syntax tests: onceover run codequality
Image: tatlin
Testing Control-Repo - OnceOver
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 29
onceover run codequality


INFO
	
-> Running Code Quality tests


INFO
	
-> Checking Puppetfile...


INFO
	
-> ...OK


INFO
	
-> Checking puppet-syntax rake task…


INFO
	
-> ...OK


WARN
	
-> Please install python and pyyaml for enhanced YAML validation (pip install pyyam


INFO
	
-> Checking lint in manifests...


INFO
	
-> ...OK


INFO
	
-> Checking lint in site...
Testing Control-Repo - OnceOver
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 30
spec/onceover.yaml


- add classes and nodes,


- create class_groups and node_groups,


- build your test_matrix


Describe the unit tests in spec/classes/
<class>_spec.rb
Image: tatlin
Testing Control-Repo - OnceOver
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 31
# spec/onceover.yaml


classes:


- role::base


nodes:


- CentOS-7.0-64


class_groups:


all_classes:


- role::base


…
Testing Control-Repo - OnceOver
# spec/onceover.yaml continued


…


node_groups:


testnodes:


- CentOS-7.0-64


test_matrix:


- all_nodes:


classes: 'role::base'


tests: 'spec'
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 32
onceover run spec


INFO
	
-> Using Puppetfile ‘…/control-repo/.onceover/etc/puppetlabs/code/
environments/production/Puppetfile’


INFO
	
-> Updating module …/control-repo/.onceover/etc/puppetlabs/code/
environments/production/modules/yumrepo_core


…


role::base: P P P P
Testing Control-Repo - OnceOver
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 33
Acceptance Tests are configures in spec/
acceptance/<class>_spec.rb


Nodesets are configured in spec/acceptance/
nodesets/onceover-nodes.yaml


Hint: onceover needs beaker and will print a
complaint about beaker deprecation.


One more thing!
Image: tatlin
Testing Control-Repo - OnceOver
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 34
OnceOver Catalog diff


gem ‘onceover-octocatalog-diff’


onceover run diff --from <branch> --to <branch>
Image: tatlin
Testing Control-Repo - OnceOver
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Summary
35
Image: tatlin
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Summary
36
Image: tatlin
Testing is important but has a learning
curve!


Syntax and unit tests are essential and
easy to do


Acceptance tests are useful, but
harder to do
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Summary
37
Image: tatlin
Move from simple to harder.


Start using PDK.


Learn rspec-puppet.


Move to OnceOver for contro-repo testing.


Build an infrastructure for acceptance testing.
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Summary
38
Image: tatlin
PDK uses OS information from a modules
metadata.json.


Different tests for different OS needs adoption of spec
tests.


OnceOver lets you build a test matrix regarding
classes and OS to tests.
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Summary
39
Image: tatlin
Check the possibilities of your infrastructure and
your test requirements.


VM tests are possible in Docker, VMware,
Vagrant, AWS, …


https://github.com/voxpupuli/beaker/blob/master/
docs/how_to/hypervisors/README.md


https://github.com/puppetlabs/provision
Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH
Please take care!
40
We are living in difficult times.


Cities and towns need diversity.


Diversity is provided by small businesses.


Support your local, small, owner or family run
businesses.


Stay healthy and take care!
Puppet Code testing


Modules vs. Control-Repo
Q&A


Martin Alfke - example42 GmbH

More Related Content

Similar to Puppet camp2021 testing modules and controlrepo

Intro to PDK
Intro to PDKIntro to PDK
Intro to PDK
Steven Pritchard
 
Puppet Camp Germany 2020 - Puppet Control Repo and GIT
Puppet Camp Germany 2020 - Puppet Control Repo and GITPuppet Camp Germany 2020 - Puppet Control Repo and GIT
Puppet Camp Germany 2020 - Puppet Control Repo and GIT
Martin Alfke
 
Test-Driven Puppet Development - PuppetConf 2014
Test-Driven Puppet Development - PuppetConf 2014Test-Driven Puppet Development - PuppetConf 2014
Test-Driven Puppet Development - PuppetConf 2014
Puppet
 
Mcollective introduction
Mcollective introductionMcollective introduction
Mcollective introduction
Javier Turégano Molina
 
Jenkins to Gitlab - Intelligent Build-Pipelines
Jenkins to Gitlab - Intelligent Build-PipelinesJenkins to Gitlab - Intelligent Build-Pipelines
Jenkins to Gitlab - Intelligent Build-Pipelines
Christian Münch
 
Introduction to Polyaxon
Introduction to PolyaxonIntroduction to Polyaxon
Introduction to Polyaxon
Yu Ishikawa
 
PuppetConf 2016: Getting to the Latest Puppet – Nate McCurdy & Elizabeth Witt...
PuppetConf 2016: Getting to the Latest Puppet – Nate McCurdy & Elizabeth Witt...PuppetConf 2016: Getting to the Latest Puppet – Nate McCurdy & Elizabeth Witt...
PuppetConf 2016: Getting to the Latest Puppet – Nate McCurdy & Elizabeth Witt...
Puppet
 
Integrating cloud stack with puppet
Integrating cloud stack with puppetIntegrating cloud stack with puppet
Integrating cloud stack with puppetPuppet
 
Workshop: Know Before You Push 'Go': Using the Beaker Acceptance Test Framewo...
Workshop: Know Before You Push 'Go': Using the Beaker Acceptance Test Framewo...Workshop: Know Before You Push 'Go': Using the Beaker Acceptance Test Framewo...
Workshop: Know Before You Push 'Go': Using the Beaker Acceptance Test Framewo...
Puppet
 
Autotools adaptation for integrating autotmatic unit tests and covering for K...
Autotools adaptation for integrating autotmatic unit tests and covering for K...Autotools adaptation for integrating autotmatic unit tests and covering for K...
Autotools adaptation for integrating autotmatic unit tests and covering for K...
Thierry Gayet
 
Iteratively introducing Puppet technologies in the brownfield; Jeffrey Miller
Iteratively introducing Puppet technologies in the brownfield; Jeffrey MillerIteratively introducing Puppet technologies in the brownfield; Jeffrey Miller
Iteratively introducing Puppet technologies in the brownfield; Jeffrey Miller
Puppet
 
Nobody Knows What It’s Like To Be the Bad Man: The Development Process for th...
Nobody Knows What It’s Like To Be the Bad Man: The Development Process for th...Nobody Knows What It’s Like To Be the Bad Man: The Development Process for th...
Nobody Knows What It’s Like To Be the Bad Man: The Development Process for th...
Work-Bench
 
Testing the frontend
Testing the frontendTesting the frontend
Testing the frontend
Heiko Hardt
 
2018 Cisco DevNet Create : How to Treat a Network as a Container
2018 Cisco DevNet Create : How to Treat a Network as a Container2018 Cisco DevNet Create : How to Treat a Network as a Container
2018 Cisco DevNet Create : How to Treat a Network as a Container
Rosemary Wang
 
Strategies for Puppet code upgrade and refactoring
Strategies for Puppet code upgrade and refactoringStrategies for Puppet code upgrade and refactoring
Strategies for Puppet code upgrade and refactoring
Alessandro Franceschi
 
Learning puppet chapter 3
Learning puppet chapter 3Learning puppet chapter 3
Learning puppet chapter 3
Vishal Biyani
 
Mihai Criveti - PyCon Ireland - Automate Everything
Mihai Criveti - PyCon Ireland - Automate EverythingMihai Criveti - PyCon Ireland - Automate Everything
Mihai Criveti - PyCon Ireland - Automate Everything
Mihai Criveti
 
Stop Being Lazy and Test Your Software
Stop Being Lazy and Test Your SoftwareStop Being Lazy and Test Your Software
Stop Being Lazy and Test Your Software
Laura Frank Tacho
 
Continuous integration / continuous delivery of web applications, Eugen Kuzmi...
Continuous integration / continuous delivery of web applications, Eugen Kuzmi...Continuous integration / continuous delivery of web applications, Eugen Kuzmi...
Continuous integration / continuous delivery of web applications, Eugen Kuzmi...
Evgeniy Kuzmin
 
PuppetCamp SEA 1 - Use of Puppet
PuppetCamp SEA 1 - Use of PuppetPuppetCamp SEA 1 - Use of Puppet
PuppetCamp SEA 1 - Use of Puppet
OlinData
 

Similar to Puppet camp2021 testing modules and controlrepo (20)

Intro to PDK
Intro to PDKIntro to PDK
Intro to PDK
 
Puppet Camp Germany 2020 - Puppet Control Repo and GIT
Puppet Camp Germany 2020 - Puppet Control Repo and GITPuppet Camp Germany 2020 - Puppet Control Repo and GIT
Puppet Camp Germany 2020 - Puppet Control Repo and GIT
 
Test-Driven Puppet Development - PuppetConf 2014
Test-Driven Puppet Development - PuppetConf 2014Test-Driven Puppet Development - PuppetConf 2014
Test-Driven Puppet Development - PuppetConf 2014
 
Mcollective introduction
Mcollective introductionMcollective introduction
Mcollective introduction
 
Jenkins to Gitlab - Intelligent Build-Pipelines
Jenkins to Gitlab - Intelligent Build-PipelinesJenkins to Gitlab - Intelligent Build-Pipelines
Jenkins to Gitlab - Intelligent Build-Pipelines
 
Introduction to Polyaxon
Introduction to PolyaxonIntroduction to Polyaxon
Introduction to Polyaxon
 
PuppetConf 2016: Getting to the Latest Puppet – Nate McCurdy & Elizabeth Witt...
PuppetConf 2016: Getting to the Latest Puppet – Nate McCurdy & Elizabeth Witt...PuppetConf 2016: Getting to the Latest Puppet – Nate McCurdy & Elizabeth Witt...
PuppetConf 2016: Getting to the Latest Puppet – Nate McCurdy & Elizabeth Witt...
 
Integrating cloud stack with puppet
Integrating cloud stack with puppetIntegrating cloud stack with puppet
Integrating cloud stack with puppet
 
Workshop: Know Before You Push 'Go': Using the Beaker Acceptance Test Framewo...
Workshop: Know Before You Push 'Go': Using the Beaker Acceptance Test Framewo...Workshop: Know Before You Push 'Go': Using the Beaker Acceptance Test Framewo...
Workshop: Know Before You Push 'Go': Using the Beaker Acceptance Test Framewo...
 
Autotools adaptation for integrating autotmatic unit tests and covering for K...
Autotools adaptation for integrating autotmatic unit tests and covering for K...Autotools adaptation for integrating autotmatic unit tests and covering for K...
Autotools adaptation for integrating autotmatic unit tests and covering for K...
 
Iteratively introducing Puppet technologies in the brownfield; Jeffrey Miller
Iteratively introducing Puppet technologies in the brownfield; Jeffrey MillerIteratively introducing Puppet technologies in the brownfield; Jeffrey Miller
Iteratively introducing Puppet technologies in the brownfield; Jeffrey Miller
 
Nobody Knows What It’s Like To Be the Bad Man: The Development Process for th...
Nobody Knows What It’s Like To Be the Bad Man: The Development Process for th...Nobody Knows What It’s Like To Be the Bad Man: The Development Process for th...
Nobody Knows What It’s Like To Be the Bad Man: The Development Process for th...
 
Testing the frontend
Testing the frontendTesting the frontend
Testing the frontend
 
2018 Cisco DevNet Create : How to Treat a Network as a Container
2018 Cisco DevNet Create : How to Treat a Network as a Container2018 Cisco DevNet Create : How to Treat a Network as a Container
2018 Cisco DevNet Create : How to Treat a Network as a Container
 
Strategies for Puppet code upgrade and refactoring
Strategies for Puppet code upgrade and refactoringStrategies for Puppet code upgrade and refactoring
Strategies for Puppet code upgrade and refactoring
 
Learning puppet chapter 3
Learning puppet chapter 3Learning puppet chapter 3
Learning puppet chapter 3
 
Mihai Criveti - PyCon Ireland - Automate Everything
Mihai Criveti - PyCon Ireland - Automate EverythingMihai Criveti - PyCon Ireland - Automate Everything
Mihai Criveti - PyCon Ireland - Automate Everything
 
Stop Being Lazy and Test Your Software
Stop Being Lazy and Test Your SoftwareStop Being Lazy and Test Your Software
Stop Being Lazy and Test Your Software
 
Continuous integration / continuous delivery of web applications, Eugen Kuzmi...
Continuous integration / continuous delivery of web applications, Eugen Kuzmi...Continuous integration / continuous delivery of web applications, Eugen Kuzmi...
Continuous integration / continuous delivery of web applications, Eugen Kuzmi...
 
PuppetCamp SEA 1 - Use of Puppet
PuppetCamp SEA 1 - Use of PuppetPuppetCamp SEA 1 - Use of Puppet
PuppetCamp SEA 1 - Use of Puppet
 

More from Puppet

Puppetcamp r10kyaml
Puppetcamp r10kyamlPuppetcamp r10kyaml
Puppetcamp r10kyaml
Puppet
 
2021 04-15 operational verification (with notes)
2021 04-15 operational verification (with notes)2021 04-15 operational verification (with notes)
2021 04-15 operational verification (with notes)
Puppet
 
Puppet camp vscode
Puppet camp vscodePuppet camp vscode
Puppet camp vscode
Puppet
 
Modules of the twenties
Modules of the twentiesModules of the twenties
Modules of the twenties
Puppet
 
Applying Roles and Profiles method to compliance code
Applying Roles and Profiles method to compliance codeApplying Roles and Profiles method to compliance code
Applying Roles and Profiles method to compliance code
Puppet
 
KGI compliance as-code approach
KGI compliance as-code approachKGI compliance as-code approach
KGI compliance as-code approach
Puppet
 
Enforce compliance policy with model-driven automation
Enforce compliance policy with model-driven automationEnforce compliance policy with model-driven automation
Enforce compliance policy with model-driven automation
Puppet
 
Keynote: Puppet camp compliance
Keynote: Puppet camp complianceKeynote: Puppet camp compliance
Keynote: Puppet camp compliance
Puppet
 
Automating it management with Puppet + ServiceNow
Automating it management with Puppet + ServiceNowAutomating it management with Puppet + ServiceNow
Automating it management with Puppet + ServiceNow
Puppet
 
Puppet: The best way to harden Windows
Puppet: The best way to harden WindowsPuppet: The best way to harden Windows
Puppet: The best way to harden Windows
Puppet
 
Simplified Patch Management with Puppet - Oct. 2020
Simplified Patch Management with Puppet - Oct. 2020Simplified Patch Management with Puppet - Oct. 2020
Simplified Patch Management with Puppet - Oct. 2020
Puppet
 
Accelerating azure adoption with puppet
Accelerating azure adoption with puppetAccelerating azure adoption with puppet
Accelerating azure adoption with puppet
Puppet
 
Puppet catalog Diff; Raphael Pinson
Puppet catalog Diff; Raphael PinsonPuppet catalog Diff; Raphael Pinson
Puppet catalog Diff; Raphael Pinson
Puppet
 
ServiceNow and Puppet- better together, Kevin Reeuwijk
ServiceNow and Puppet- better together, Kevin ReeuwijkServiceNow and Puppet- better together, Kevin Reeuwijk
ServiceNow and Puppet- better together, Kevin Reeuwijk
Puppet
 
Take control of your dev ops dumping ground
Take control of your  dev ops dumping groundTake control of your  dev ops dumping ground
Take control of your dev ops dumping ground
Puppet
 
100% Puppet Cloud Deployment of Legacy Software
100% Puppet Cloud Deployment of Legacy Software100% Puppet Cloud Deployment of Legacy Software
100% Puppet Cloud Deployment of Legacy Software
Puppet
 
Puppet User Group
Puppet User GroupPuppet User Group
Puppet User Group
Puppet
 
Continuous Compliance and DevSecOps
Continuous Compliance and DevSecOpsContinuous Compliance and DevSecOps
Continuous Compliance and DevSecOps
Puppet
 
The Dynamic Duo of Puppet and Vault tame SSL Certificates, Nick Maludy
The Dynamic Duo of Puppet and Vault tame SSL Certificates, Nick MaludyThe Dynamic Duo of Puppet and Vault tame SSL Certificates, Nick Maludy
The Dynamic Duo of Puppet and Vault tame SSL Certificates, Nick Maludy
Puppet
 
ServiceNow and Puppet- better together, Kevin Reeuwijk
ServiceNow and Puppet- better together, Kevin ReeuwijkServiceNow and Puppet- better together, Kevin Reeuwijk
ServiceNow and Puppet- better together, Kevin Reeuwijk
Puppet
 

More from Puppet (20)

Puppetcamp r10kyaml
Puppetcamp r10kyamlPuppetcamp r10kyaml
Puppetcamp r10kyaml
 
2021 04-15 operational verification (with notes)
2021 04-15 operational verification (with notes)2021 04-15 operational verification (with notes)
2021 04-15 operational verification (with notes)
 
Puppet camp vscode
Puppet camp vscodePuppet camp vscode
Puppet camp vscode
 
Modules of the twenties
Modules of the twentiesModules of the twenties
Modules of the twenties
 
Applying Roles and Profiles method to compliance code
Applying Roles and Profiles method to compliance codeApplying Roles and Profiles method to compliance code
Applying Roles and Profiles method to compliance code
 
KGI compliance as-code approach
KGI compliance as-code approachKGI compliance as-code approach
KGI compliance as-code approach
 
Enforce compliance policy with model-driven automation
Enforce compliance policy with model-driven automationEnforce compliance policy with model-driven automation
Enforce compliance policy with model-driven automation
 
Keynote: Puppet camp compliance
Keynote: Puppet camp complianceKeynote: Puppet camp compliance
Keynote: Puppet camp compliance
 
Automating it management with Puppet + ServiceNow
Automating it management with Puppet + ServiceNowAutomating it management with Puppet + ServiceNow
Automating it management with Puppet + ServiceNow
 
Puppet: The best way to harden Windows
Puppet: The best way to harden WindowsPuppet: The best way to harden Windows
Puppet: The best way to harden Windows
 
Simplified Patch Management with Puppet - Oct. 2020
Simplified Patch Management with Puppet - Oct. 2020Simplified Patch Management with Puppet - Oct. 2020
Simplified Patch Management with Puppet - Oct. 2020
 
Accelerating azure adoption with puppet
Accelerating azure adoption with puppetAccelerating azure adoption with puppet
Accelerating azure adoption with puppet
 
Puppet catalog Diff; Raphael Pinson
Puppet catalog Diff; Raphael PinsonPuppet catalog Diff; Raphael Pinson
Puppet catalog Diff; Raphael Pinson
 
ServiceNow and Puppet- better together, Kevin Reeuwijk
ServiceNow and Puppet- better together, Kevin ReeuwijkServiceNow and Puppet- better together, Kevin Reeuwijk
ServiceNow and Puppet- better together, Kevin Reeuwijk
 
Take control of your dev ops dumping ground
Take control of your  dev ops dumping groundTake control of your  dev ops dumping ground
Take control of your dev ops dumping ground
 
100% Puppet Cloud Deployment of Legacy Software
100% Puppet Cloud Deployment of Legacy Software100% Puppet Cloud Deployment of Legacy Software
100% Puppet Cloud Deployment of Legacy Software
 
Puppet User Group
Puppet User GroupPuppet User Group
Puppet User Group
 
Continuous Compliance and DevSecOps
Continuous Compliance and DevSecOpsContinuous Compliance and DevSecOps
Continuous Compliance and DevSecOps
 
The Dynamic Duo of Puppet and Vault tame SSL Certificates, Nick Maludy
The Dynamic Duo of Puppet and Vault tame SSL Certificates, Nick MaludyThe Dynamic Duo of Puppet and Vault tame SSL Certificates, Nick Maludy
The Dynamic Duo of Puppet and Vault tame SSL Certificates, Nick Maludy
 
ServiceNow and Puppet- better together, Kevin Reeuwijk
ServiceNow and Puppet- better together, Kevin ReeuwijkServiceNow and Puppet- better together, Kevin Reeuwijk
ServiceNow and Puppet- better together, Kevin Reeuwijk
 

Recently uploaded

Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Product School
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
Bhaskar Mitra
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
Fwdays
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 

Recently uploaded (20)

Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 

Puppet camp2021 testing modules and controlrepo

  • 1. Puppet Code testing Modules vs. Control-Repo Martin Alfke - example42 GmbH PuppetCamp April 15, 2021 1
  • 2. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Puppet since 2009, Puppet Trainer since 2011, Puppet Certified Consultant since 2015 CEO & Co-Founder example42 GmbH tuxmea (Twitter, GitHub, Slack) Puppet Consulting, Training and Development MartinAlfke 2
  • 3. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Why testing? 3 Image: tatlin
  • 4. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Why testing? 4 Can Puppet compiler parse your code? Can you upgrade to a newer Puppet version? Does the refactoring accidentally change anything? Image: tatlin
  • 5. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Why testing? 5 What to use? - puppet-lint - rspec-puppet - PDK - OnceOver - Beaker - Litmus - serverspec - https://voxpupuli.org/plugins/ Image: tatlin
  • 6. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Why testing? 6 But, I only want to write Puppet code! And now I must learn testing? Let’s choose the most simple to use solution! Image: tatlin
  • 7. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Why testing? 7 Which tests to run? - Lint tests - check style guide - Unit tests - check catalog - Acceptance tests - check system Image: tatlin
  • 8. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Testing Modules 8 Image: tatlin
  • 9. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Where do you want to run the test? On your workstation (Windows, Mac OS, Linux) Within an automated CI pipeline (Linux Shell, Container) Testing Modules 9 Image: tatlin
  • 10. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Testing Modules 10 Image: tatlin PDK: - easy to use - all bundled - different Puppet version tests possible pdk validate --puppet-version=7
  • 11. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Standalone Library (or Component) Modules, not roles & profiles Use PDK (Puppet Development Kit) to generate module, classes, … - pdk new module - pdk new class, defined_type, fact, function, provider, task - pdk convert, update Testing Modules 11 Image: tatlin
  • 12. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Testing Modules 12 Image: tatlin Use PDK (Puppet Development Kit) for testing: - pdk validate - pdk test unit
  • 13. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Testing Modules 13 Image: tatlin Add dependencies like stdlib or inifile to .fixtures.yml Get dependencies from forge or git (upstream or local)
  • 14. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Testing Modules 14 Image: tatlin You want to change the default behaviour? Check the pdk-template git repo and use the possibility to configure PDK (.sync.yml) Run pdk update afterwards.
  • 15. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Testing Modules 15 Image: tatlin PDK uses Puppet version and supported OS from metadata.json But how to proceed with control-repo?
  • 16. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Testing Control-Repo - PDK 16 Image: tatlin
  • 17. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 17 Syntax Tests: Role and profile modules must be generated using PDK pushd site/profile && pdk validate && popd pushd site/role && pdk validate && popd Image: tatlin Testing Control-Repo - PDK
  • 18. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 18 Using PDK for Unit Testing Many dependencies (upstream or library modules) like stdlib, inifile, core modules, ... You want to use your control-repo Hiera config and data You want to use your manifests/site.pp Image: tatlin Testing Control-Repo - PDK
  • 19. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 19 Using PDK for Unit Testing - profile and role module must be in PDK format (use pdk convert on existing profile and role modules) - modules from Puppetfile must be installed locally (r10k puppetfile install) Image: tatlin Testing Control-Repo - PDK
  • 20. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 20 Using PDK - solution One needs: - .fixtures.yml - spec/spec_helper_local.rb Image: tatlin Testing Control-Repo - PDK
  • 21. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 21 Using PDK on profile module -.fixtures.yml # site/profile/.fixtures.yml --- fixtures: symlinks: profile: "#{source_dir}" ../r10k: ‘../../../../modules' Testing Control-Repo - PDK Using PDK on role module -.fixtures.yml # site/role/.fixtures.yml --- fixtures: symlinks: role: "#{source_dir}" profile: "#{source_dir}/../profile" ../r10k: ‘../../../../modules'
  • 22. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 22 Using PDK - spec/spec_helper_local.rb # site/{role|profile}/spec/spec_helper_local.rb fixture_path = File.expand_path(File.join(__FILE__, '..', 'fixtures')) RSpec.configure do |c| c.module_path = File.join(fixture_path, 'modules') + ':' + File.join(fixture_path, ‘r10k') c.manifest_dir = File.join(fixture_path, ‘../../../../manifests’) c.manifest = File.join(fixture_path, ‘../../../../manifests/site.pp’) c.hiera_config = File.join(fixture_path, '../../../../hiera.yaml') end Image: tatlin Testing Control-Repo - PDK
  • 23. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 23 Run your control-repo tests: r10k puppetfile install pushd site/profile && pdk test unit && popd pushd site/role && pdk test unit && popd Image: tatlin Testing Control-Repo - PDK
  • 24. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 24 Using PDK for Acceptance Testing PDK does not officially support acceptance testing. Yes, PDK ships beaker and litmus - pdk bundle exec rake -T pdk bundle: not officially supported! Image: tatlin Testing Control-Repo - PDK
  • 25. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 25 How to deal with role or profile classes which are designed for a specific OS only? Reminder: PDK uses supported OS from metadata.json Many adoptions required. Is there a more simple way? Image: tatlin Testing Control-Repo - PDK
  • 26. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Testing Control-Repo - OnceOver 26 Image: tatlin
  • 27. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 27 https://github.com/dylanratcliffe/onceover Specially created to test Puppet control-repo Separation of concerns: tests for library modules vs. tests for control-repo Run syntax, unit and acceptance tests … and one more thing ;-) Image: tatlin Testing Control-Repo - OnceOver
  • 28. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 28 Delivered as Ruby GEM: gem install onceover onceover-codequality Or: Gemfile: gem ‘onceover’ gem ‘onceover-codequality’ Initialize OnceOver on your control-repo: onceover init Run syntax tests: onceover run codequality Image: tatlin Testing Control-Repo - OnceOver
  • 29. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 29 onceover run codequality INFO -> Running Code Quality tests INFO -> Checking Puppetfile... INFO -> ...OK INFO -> Checking puppet-syntax rake task… INFO -> ...OK WARN -> Please install python and pyyaml for enhanced YAML validation (pip install pyyam INFO -> Checking lint in manifests... INFO -> ...OK INFO -> Checking lint in site... Testing Control-Repo - OnceOver
  • 30. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 30 spec/onceover.yaml - add classes and nodes, - create class_groups and node_groups, - build your test_matrix Describe the unit tests in spec/classes/ <class>_spec.rb Image: tatlin Testing Control-Repo - OnceOver
  • 31. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 31 # spec/onceover.yaml classes: - role::base nodes: - CentOS-7.0-64 class_groups: all_classes: - role::base … Testing Control-Repo - OnceOver # spec/onceover.yaml continued … node_groups: testnodes: - CentOS-7.0-64 test_matrix: - all_nodes: classes: 'role::base' tests: 'spec'
  • 32. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 32 onceover run spec INFO -> Using Puppetfile ‘…/control-repo/.onceover/etc/puppetlabs/code/ environments/production/Puppetfile’ INFO -> Updating module …/control-repo/.onceover/etc/puppetlabs/code/ environments/production/modules/yumrepo_core … role::base: P P P P Testing Control-Repo - OnceOver
  • 33. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 33 Acceptance Tests are configures in spec/ acceptance/<class>_spec.rb Nodesets are configured in spec/acceptance/ nodesets/onceover-nodes.yaml Hint: onceover needs beaker and will print a complaint about beaker deprecation. One more thing! Image: tatlin Testing Control-Repo - OnceOver
  • 34. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH 34 OnceOver Catalog diff gem ‘onceover-octocatalog-diff’ onceover run diff --from <branch> --to <branch> Image: tatlin Testing Control-Repo - OnceOver
  • 35. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Summary 35 Image: tatlin
  • 36. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Summary 36 Image: tatlin Testing is important but has a learning curve! Syntax and unit tests are essential and easy to do Acceptance tests are useful, but harder to do
  • 37. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Summary 37 Image: tatlin Move from simple to harder. Start using PDK. Learn rspec-puppet. Move to OnceOver for contro-repo testing. Build an infrastructure for acceptance testing.
  • 38. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Summary 38 Image: tatlin PDK uses OS information from a modules metadata.json. Different tests for different OS needs adoption of spec tests. OnceOver lets you build a test matrix regarding classes and OS to tests.
  • 39. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Summary 39 Image: tatlin Check the possibilities of your infrastructure and your test requirements. VM tests are possible in Docker, VMware, Vagrant, AWS, … https://github.com/voxpupuli/beaker/blob/master/ docs/how_to/hypervisors/README.md https://github.com/puppetlabs/provision
  • 40. Puppet Code Testing - Modules vs. Control-Repo - PuppetCamp 2021 - Martin Alfke © example42 GmbH Please take care! 40 We are living in difficult times. Cities and towns need diversity. Diversity is provided by small businesses. Support your local, small, owner or family run businesses. Stay healthy and take care!
  • 41. Puppet Code testing Modules vs. Control-Repo Q&A Martin Alfke - example42 GmbH