SlideShare uma empresa Scribd logo
1 de 25
Baixar para ler offline
CI with Node.JS
and MongoDB
© Niall O’Higgins niallo@frozenridge.co
https://github.com/FrozenRidge/node-mongodb-ci-webinar
Continuous Integration with Node
We define CI as “automatically running a test
suite on each commit to a VCS and reporting
success and failure”
● CI requires you to have a test suite
● Node makes it easy to specify a test suite
● NPM encourages you to have one
Create Node.JS Project w/ Tests
Live coding!
1.
2.
3.
4.

`npm init` in empty directory
Hit return on prompts
Run `npm test`
What happens?
Testing in Node.JS
Our empty new project’s test suite fails
Let’s write a test suite!
But first we should talk a little about writing
tests in Node.JS
Testing in Node.JS
What is a test suite? A test suite consists of:
● Test Runner
● Assertion Library
● Tests
Node Test Runners
A Test Runner simply runs your test suite and
reports results.
● Gives structure to your test suite
● Could be just a shell or Node script
● You can roll your own or use something offthe-shelf
Node Test Runners
Some Popular Node.JS Test Runners:
● Mocha
● Nodeunit
● Node-Tap
● Vows
Node Test Runners
We like to use Mocha. It works in the browser
and Node. It has many reporting formats.
You should feel free to choose whichever suits
you best.
Node.JS Assertion Libraries
An Assertion Library is used to compose
predicates which make up each test.
●
●
●
●

`if` and `throw`
Node ‘assert’ module in stdlib
ChaiJS
ShouldJS
Assertion Styles: TDD vs BDD
Mostly matter of emphasis and preference
BDD = more “English-like” assertions
expect(myVar).to.equal(“hello”)
TDD = more “code-like” assertions
assert.equal(myVar, “hello”)
Assertion Style: TDD vs BDD
BDD:
expect(myArray).to.have.length(3)
TDD:
assert.equal(myArray.length, 3)
Assertion Style: TDD vs BDD
We use ChaiJS as our Assertion Module as it:
● supports both TDD and BDD styles.
● has many convenient assertions.
Create Node.JS Project w/Tests
Let’s return to our Node.JS project.
We shall create a test suite with Mocha and
Chai.
1. `npm install --save-dev mocha chai`
2. Change tests (
)
`sed -i -e 's/echo.*/./node_modules/.bin/mocha"/g' package.json`
Create Node.JS Project w/Tests
Now if you run `npm test` mocha should start
There are no tests, so there are no errors.
Let’s create a test!
Create Node.JS Project w/Tests
But we haven’t said what we’re testing!
Let’s test a function that:
Returns whether the string ‘tdd’ exists in an
argument.
Create Node.JS Project w/Tests
1. Create a file named `test/test_index.js`
2. It should have the following contents:
var expect = require(‘chai’).expect
var isTdd = require(‘../index.js’).isTdd
describe(‘#index’, function() {
it(‘should return false if string tdd is not in argument’, function() {
var s = “just bdd here”
expect(isTdd(s)).to.be.false
})
})
Create Node.JS Project w/Tests
1. Run tests
2. They fail!
3. No implementation
Create Node.JS Project w/Tests
Add implementation in file “index.js”:
module.exports = {
isTdd: function(s) {
return s.indexOf('tdd') !== -1
}
}

Finally tests pass!
Node.JS Project w/ MongoDB
That’s very silly, basic TDD / BDD in Node.
Enough to get the idea.
Now let’s talk about MongoDB and do some
coding!
[ Finished code at https://github.com/FrozenRidge/ci-node-mongodb-test ]
Node.JS & MongoDB User Store
We shall create a user object store interface.
Users can be retrieved by username or email.
To test this, we write an integration test which
talks to MongoDB.
MongoDB Data Fixtures
We see there is a problem, in that to test
correct behaviour we must load data (aka
fixtures) into MongoDB.
We can do this in Mocha using “before” and
“after” phases.
Make MongoDB URL Configurable
MongoDB URI should be configurable via
environment variable - see 12factor.net
e.g. process.env.MONGODB_URL
Works great with CI servers like StriderCD, too!
Larger MongoDB Fixture Data Sets
In our example, we wrote our fixture data using
the driver.
For larger data sets, you may want to use
binary dumps/restores. You can run the
`mongorestore` binary to load these.
MongoD Options for Faster CI
--nojournaling - You probably don’t need the
safety for CI.
--small - Use smaller default file sizes.
--noprealloc - Don’t pre-allocate files. Useful if
startup time with a fresh database is a
bottleneck.
Thanks!
Feel free to get in touch - we’re here to help!
niallo@frozenridge.co / http://frozenridge.co
@niallohiggins on Twitter
http://stridercd.com - Our Open Source CI
server written in Node.JS and MongoDB

Mais conteúdo relacionado

Mais de MongoDB

Mais de MongoDB (20)

MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
 
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDBMongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
 
MongoDB SoCal 2020: From Pharmacist to Analyst: Leveraging MongoDB for Real-T...
MongoDB SoCal 2020: From Pharmacist to Analyst: Leveraging MongoDB for Real-T...MongoDB SoCal 2020: From Pharmacist to Analyst: Leveraging MongoDB for Real-T...
MongoDB SoCal 2020: From Pharmacist to Analyst: Leveraging MongoDB for Real-T...
 
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series DataMongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
 
MongoDB SoCal 2020: MongoDB Atlas Jump Start
 MongoDB SoCal 2020: MongoDB Atlas Jump Start MongoDB SoCal 2020: MongoDB Atlas Jump Start
MongoDB SoCal 2020: MongoDB Atlas Jump Start
 
MongoDB .local San Francisco 2020: Powering the new age data demands [Infosys]
MongoDB .local San Francisco 2020: Powering the new age data demands [Infosys]MongoDB .local San Francisco 2020: Powering the new age data demands [Infosys]
MongoDB .local San Francisco 2020: Powering the new age data demands [Infosys]
 
MongoDB .local San Francisco 2020: Using Client Side Encryption in MongoDB 4.2
MongoDB .local San Francisco 2020: Using Client Side Encryption in MongoDB 4.2MongoDB .local San Francisco 2020: Using Client Side Encryption in MongoDB 4.2
MongoDB .local San Francisco 2020: Using Client Side Encryption in MongoDB 4.2
 
MongoDB .local San Francisco 2020: Using MongoDB Services in Kubernetes: any ...
MongoDB .local San Francisco 2020: Using MongoDB Services in Kubernetes: any ...MongoDB .local San Francisco 2020: Using MongoDB Services in Kubernetes: any ...
MongoDB .local San Francisco 2020: Using MongoDB Services in Kubernetes: any ...
 
MongoDB .local San Francisco 2020: Go on a Data Safari with MongoDB Charts!
MongoDB .local San Francisco 2020: Go on a Data Safari with MongoDB Charts!MongoDB .local San Francisco 2020: Go on a Data Safari with MongoDB Charts!
MongoDB .local San Francisco 2020: Go on a Data Safari with MongoDB Charts!
 
MongoDB .local San Francisco 2020: From SQL to NoSQL -- Changing Your Mindset
MongoDB .local San Francisco 2020: From SQL to NoSQL -- Changing Your MindsetMongoDB .local San Francisco 2020: From SQL to NoSQL -- Changing Your Mindset
MongoDB .local San Francisco 2020: From SQL to NoSQL -- Changing Your Mindset
 
MongoDB .local San Francisco 2020: MongoDB Atlas Jumpstart
MongoDB .local San Francisco 2020: MongoDB Atlas JumpstartMongoDB .local San Francisco 2020: MongoDB Atlas Jumpstart
MongoDB .local San Francisco 2020: MongoDB Atlas Jumpstart
 
MongoDB .local San Francisco 2020: Tips and Tricks++ for Querying and Indexin...
MongoDB .local San Francisco 2020: Tips and Tricks++ for Querying and Indexin...MongoDB .local San Francisco 2020: Tips and Tricks++ for Querying and Indexin...
MongoDB .local San Francisco 2020: Tips and Tricks++ for Querying and Indexin...
 
MongoDB .local San Francisco 2020: Aggregation Pipeline Power++
MongoDB .local San Francisco 2020: Aggregation Pipeline Power++MongoDB .local San Francisco 2020: Aggregation Pipeline Power++
MongoDB .local San Francisco 2020: Aggregation Pipeline Power++
 
MongoDB .local San Francisco 2020: A Complete Methodology of Data Modeling fo...
MongoDB .local San Francisco 2020: A Complete Methodology of Data Modeling fo...MongoDB .local San Francisco 2020: A Complete Methodology of Data Modeling fo...
MongoDB .local San Francisco 2020: A Complete Methodology of Data Modeling fo...
 
MongoDB .local San Francisco 2020: MongoDB Atlas Data Lake Technical Deep Dive
MongoDB .local San Francisco 2020: MongoDB Atlas Data Lake Technical Deep DiveMongoDB .local San Francisco 2020: MongoDB Atlas Data Lake Technical Deep Dive
MongoDB .local San Francisco 2020: MongoDB Atlas Data Lake Technical Deep Dive
 
MongoDB .local San Francisco 2020: Developing Alexa Skills with MongoDB & Golang
MongoDB .local San Francisco 2020: Developing Alexa Skills with MongoDB & GolangMongoDB .local San Francisco 2020: Developing Alexa Skills with MongoDB & Golang
MongoDB .local San Francisco 2020: Developing Alexa Skills with MongoDB & Golang
 
MongoDB .local Paris 2020: Realm : l'ingrédient secret pour de meilleures app...
MongoDB .local Paris 2020: Realm : l'ingrédient secret pour de meilleures app...MongoDB .local Paris 2020: Realm : l'ingrédient secret pour de meilleures app...
MongoDB .local Paris 2020: Realm : l'ingrédient secret pour de meilleures app...
 
MongoDB .local Paris 2020: Upply @MongoDB : Upply : Quand le Machine Learning...
MongoDB .local Paris 2020: Upply @MongoDB : Upply : Quand le Machine Learning...MongoDB .local Paris 2020: Upply @MongoDB : Upply : Quand le Machine Learning...
MongoDB .local Paris 2020: Upply @MongoDB : Upply : Quand le Machine Learning...
 
MongoDB .local Paris 2020: Les bonnes pratiques pour sécuriser MongoDB
MongoDB .local Paris 2020: Les bonnes pratiques pour sécuriser MongoDBMongoDB .local Paris 2020: Les bonnes pratiques pour sécuriser MongoDB
MongoDB .local Paris 2020: Les bonnes pratiques pour sécuriser MongoDB
 
MongoDB .local Paris 2020: Tout savoir sur le moteur de recherche Full Text S...
MongoDB .local Paris 2020: Tout savoir sur le moteur de recherche Full Text S...MongoDB .local Paris 2020: Tout savoir sur le moteur de recherche Full Text S...
MongoDB .local Paris 2020: Tout savoir sur le moteur de recherche Full Text S...
 

Último

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
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 

Último (20)

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
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
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
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...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

Webinar: Continuous Integration with Node.JS and MongoDB

  • 1. CI with Node.JS and MongoDB © Niall O’Higgins niallo@frozenridge.co https://github.com/FrozenRidge/node-mongodb-ci-webinar
  • 2. Continuous Integration with Node We define CI as “automatically running a test suite on each commit to a VCS and reporting success and failure” ● CI requires you to have a test suite ● Node makes it easy to specify a test suite ● NPM encourages you to have one
  • 3. Create Node.JS Project w/ Tests Live coding! 1. 2. 3. 4. `npm init` in empty directory Hit return on prompts Run `npm test` What happens?
  • 4. Testing in Node.JS Our empty new project’s test suite fails Let’s write a test suite! But first we should talk a little about writing tests in Node.JS
  • 5. Testing in Node.JS What is a test suite? A test suite consists of: ● Test Runner ● Assertion Library ● Tests
  • 6. Node Test Runners A Test Runner simply runs your test suite and reports results. ● Gives structure to your test suite ● Could be just a shell or Node script ● You can roll your own or use something offthe-shelf
  • 7. Node Test Runners Some Popular Node.JS Test Runners: ● Mocha ● Nodeunit ● Node-Tap ● Vows
  • 8. Node Test Runners We like to use Mocha. It works in the browser and Node. It has many reporting formats. You should feel free to choose whichever suits you best.
  • 9. Node.JS Assertion Libraries An Assertion Library is used to compose predicates which make up each test. ● ● ● ● `if` and `throw` Node ‘assert’ module in stdlib ChaiJS ShouldJS
  • 10. Assertion Styles: TDD vs BDD Mostly matter of emphasis and preference BDD = more “English-like” assertions expect(myVar).to.equal(“hello”) TDD = more “code-like” assertions assert.equal(myVar, “hello”)
  • 11. Assertion Style: TDD vs BDD BDD: expect(myArray).to.have.length(3) TDD: assert.equal(myArray.length, 3)
  • 12. Assertion Style: TDD vs BDD We use ChaiJS as our Assertion Module as it: ● supports both TDD and BDD styles. ● has many convenient assertions.
  • 13. Create Node.JS Project w/Tests Let’s return to our Node.JS project. We shall create a test suite with Mocha and Chai. 1. `npm install --save-dev mocha chai` 2. Change tests ( ) `sed -i -e 's/echo.*/./node_modules/.bin/mocha"/g' package.json`
  • 14. Create Node.JS Project w/Tests Now if you run `npm test` mocha should start There are no tests, so there are no errors. Let’s create a test!
  • 15. Create Node.JS Project w/Tests But we haven’t said what we’re testing! Let’s test a function that: Returns whether the string ‘tdd’ exists in an argument.
  • 16. Create Node.JS Project w/Tests 1. Create a file named `test/test_index.js` 2. It should have the following contents: var expect = require(‘chai’).expect var isTdd = require(‘../index.js’).isTdd describe(‘#index’, function() { it(‘should return false if string tdd is not in argument’, function() { var s = “just bdd here” expect(isTdd(s)).to.be.false }) })
  • 17. Create Node.JS Project w/Tests 1. Run tests 2. They fail! 3. No implementation
  • 18. Create Node.JS Project w/Tests Add implementation in file “index.js”: module.exports = { isTdd: function(s) { return s.indexOf('tdd') !== -1 } } Finally tests pass!
  • 19. Node.JS Project w/ MongoDB That’s very silly, basic TDD / BDD in Node. Enough to get the idea. Now let’s talk about MongoDB and do some coding! [ Finished code at https://github.com/FrozenRidge/ci-node-mongodb-test ]
  • 20. Node.JS & MongoDB User Store We shall create a user object store interface. Users can be retrieved by username or email. To test this, we write an integration test which talks to MongoDB.
  • 21. MongoDB Data Fixtures We see there is a problem, in that to test correct behaviour we must load data (aka fixtures) into MongoDB. We can do this in Mocha using “before” and “after” phases.
  • 22. Make MongoDB URL Configurable MongoDB URI should be configurable via environment variable - see 12factor.net e.g. process.env.MONGODB_URL Works great with CI servers like StriderCD, too!
  • 23. Larger MongoDB Fixture Data Sets In our example, we wrote our fixture data using the driver. For larger data sets, you may want to use binary dumps/restores. You can run the `mongorestore` binary to load these.
  • 24. MongoD Options for Faster CI --nojournaling - You probably don’t need the safety for CI. --small - Use smaller default file sizes. --noprealloc - Don’t pre-allocate files. Useful if startup time with a fresh database is a bottleneck.
  • 25. Thanks! Feel free to get in touch - we’re here to help! niallo@frozenridge.co / http://frozenridge.co @niallohiggins on Twitter http://stridercd.com - Our Open Source CI server written in Node.JS and MongoDB