SlideShare une entreprise Scribd logo
Efficient JavaScript Unit Testing
Hazem Saleh
O
U
T
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
Developers Life without Unit testing.
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
Writing a JavaScript TestCase.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.
Generating reports from test cases.
JsTestDriver Compatibility
Developers Life without Unit testing
Complex integration between the system components.
Unmanaged number of new/regression defects especially when
the system complexity increases.
Developers Life without Unit testing
Low application quality.
Developers Life without Unit testing
Longer testing cycle.
test
fixtest
fix
fix
test
fix
test
fix
testfix
test
fix
test
fix
test
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
What is unit testing? and why?
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
Writing a JavaScript TestCase.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.
Generating reports from test cases.
JsTestDriver Compatibility
What is unit testing and why?
A unit testing is a piece of code (usually a method) that
invokes another piece of code and later checks the correctness of
some assumptions
Unit testing helps in detecting BUGGY components in the earlyUnit testing helps in detecting BUGGY components in the early
stages of the project.
A test suite is a set of test cases, and a test case is a set of tests
which verifies the system components.
Good Unit Test Characteristics
Automated
Repeatable Fast
Easy to run.
Easy to understand
Incremental
What is unit testing and why?
Integration is much simplified.
Defects are managed. Regression defects should not happen if the defect is
resolved by creating a new test case.
Application quality increases.
Testing cycle is reduced.
Test cases can be a good reference for system documentation.
Test cases can improve the system design and be the basis of code refactoring.
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
Current Complexities in testing JavaScript code.
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
Writing a JavaScript TestCase.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.
Generating reports from test cases.
JsTestDriver Compatibility
Current Complexities in testing JavaScript code
Requires a lot of time to test on all the browsers.
JavaScript code that runs on a specific browser does not necessarily
Slow
JavaScript code that runs on a specific browser does not necessarily
mean that it will work on other browsers.
Supporting a new browser means allocating a new budget for
testing the system again on this new browser and for the
new/regression defects fixes.
Inflexible
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
Requirements of a good JavaScript unit testing tool.
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
Writing a JavaScript TestCase.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.
Generating reports from test cases.
JsTestDriver Compatibility
Good JavaScript Unit Testing Tool Requirements
JavaScript unit
testing tool
Can execute across all
the browsers over
all the platforms.
Fast Test case
execution.all the platforms.
Easy setup.
Easy configuration.
execution.
Integration with IDEs.
Integration with build
management tools.
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
What is JsTestDriver.
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
Writing a JavaScript TestCase.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.
Generating reports from test cases.
JsTestDriver Compatibility
What is JsTestDriver
One of the best Open source JavaScript testing tools.
Meets all of the previous requirements and more:
Supports all the browsers / all platforms. ✓
Easy setup and configuration. ✓
Fast Test case execution. ✓
Integration with IDEs and build management tools. ✓
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & ConfigurationJsTestDriver Architecture & Configuration.
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
Writing a JavaScript TestCase.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.
Generating reports from test cases.
JsTestDriver Compatibility
JsTestDriver Architecture & Configuration.
JsTestDriver Architecture
JsTestDriver configuration
1 Separate Source files from Test files
JsTestDriver configuration
1 Download the jsTestDriver latest jars from2
driver/downloads/list-test-http://code.google.com/p/js
JsTestDriver configuration
1 Create the jsTestDriver.conf file (under the JS folder)
with the following initial content:2 3
server: http://localhost:9876server: http://localhost:9876
load:
js/*.src-js-
jstest/*.-js-
JsTestDriver configuration
1 Start the server using the following command
line2 3 4
java -jar JsTestDriver-1.3.2.jar
Optional parameters
[--port 9876]
[--browser
“{PATH}firefox.exe","{PATH}iexplore.exe","{P
ATH}Safari.exe"]
JsTestDriver configuration
1 Run the test cases using the following
command line2 3 4 5
java -jar JsTestDriver-1.3.2.jar --tests alljava -jar JsTestDriver-1.3.2.jar --tests all
.........
Total 9 tests (Passed: 9; Fails: 0; Errors: 0) (16.00 ms)
Firefox 9.0.1 Windows: Run 3 tests (Passed: 3; Fails: 0; Errors 0) (3.00 ms)
Safari 534.52.7 Windows: Run 3 tests (Passed: 3; Fails: 0; Errors 0) (4.00 ms)
Microsoft Internet Explorer 7.0 Windows: Run 3 tests (Passed: 3; Fails: 0;
Errors 0) (16.00 ms)
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
L
I
N
E
JsTestDriver Architecture & Configuration
Writing a JavaScript TestCase.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.
Generating reports from test cases.
JsTestDriver Compatibility
JsTestDriver Eclipse plugin.JsTestDriver Eclipse plugin.
JsTestDriver Eclipse plugin
Instead of using command lines for starting the server and running the test
cases, you can directly use the jsTestDriver Eclipse plugin.
To install the JsTestDriver Eclipse plugin install the plugin from the followingTo install the JsTestDriver Eclipse plugin install the plugin from the following
driver.googlecode.com/svn/update/-test-http://jsURL :
JsTestDriver Eclipse plugin
JsTestDriver Eclipse plugin
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.
Generating reports from test cases.
JsTestDriver Compatibility
Writing a JavaScript TestCase.Writing a JavaScript TestCase.
Writing a JavaScript TestCase
ApplicationUtilTest = TestCase("ApplicationUtilTest");
ApplicationUtilTest.prototype.setUp = function () {
/*:DOC += ...HTML fragment code goes here (single root) ...*/
};
ApplicationUtilTest.prototype.testMethod1 = function () {ApplicationUtilTest.prototype.testMethod1 = function () {
… validate using the jsTestDriver constructs …
}
ApplicationUtilTest.prototype.testMethod2 = function () {
… validate using the jsTestDriver constructs …
}
...
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
Writing asynchronous JavaScript TestCase.
Generating reports from test cases.
JsTestDriver Compatibility
Writing a JavaScript TestCase.
JsTestDriver common constructs.JsTestDriver common constructs.
JsTestDriver common constructs
fail("msg")
assertTrue("msg", actual)
assertFalse("msg", actual)
assertSame("msg", expected, actual)
assertNotSame("msg", expected, actual)
assertNull("msg", actual)
assertNotNull("msg", actual)
DEMODEMO
Let’s write synchronous JSLet’s write synchronous JSLet’s write synchronous JSLet’s write synchronous JS
Test cases …Test cases …
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
Generating reports from test cases.
JsTestDriver Compatibility
Writing a JavaScript TestCase.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.Writing asynchronous JavaScript TestCase.
Writing asynchronous JavaScript TestCase
AsyncTest = AsyncTestCase("AsynchronousTesting");
AsyncTest.prototype.setUp = function () {
/*:DOC += <!-- Initialization code -->*/
};
AsyncTest.prototype.testOperationOne = function(queue) {
queue.call('Step1', function(callbacks) {
var asyncObject = new AsyncObject ();
var successCallBack = callbacks.add(function(successData) {
// validate (successData) if possible ....
});
var failureCallBack = callbacks.addErrback('Error Message');var failureCallBack = callbacks.addErrback('Error Message');
// call asynchronous API
asyncObject.operationOne(inputData,
successCallBack,
failureCallBack);
});
};
Every inline function provides a callbacks parameter for testing
the Ajax APIs. There are two types of callbacks:
• Success callback: Represents the success path. It MUST be
called in order to pass the test.
• Error callback: Represents the error path. If it is called, then
the test fails.
Writing asynchronous JavaScript TestCase
The test runner does not move to the next queue until
the current queue executes all of its success callbacks. If
a specific success callback is not called for a specific
amount of time (30 seconds), the test fails.
DEMODEMO
Let’s write Asynchronous JSLet’s write Asynchronous JSLet’s write Asynchronous JSLet’s write Asynchronous JS
Test cases …Test cases …
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
Writing a JavaScript TestCase.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.
JsTestDriver Compatibility
Generating reports from test cases.
JsTestDriver Compatibility
JsTestDriver is not only a JavaScript unit testing
framework BUT it is a test runner for many other
JavaScript unit testing frameworks.
JsTestDriver Compatibility
JsTestDriver is compatibility with the following
JavaScript unit testing frameworks through adapters:
• Jasmine
• YUI Test
• QUnit
In order to run the previous unit testing frameworks
on the top of the JSTD test runner. You need to
configure the framework adapter and source before
the test files as follows:
JsTestDriver Compatibility
server: http://localhost:9876
load:
/jasmine.js0.1.1-jasmine/lib/jasmine-
/adapter/JasmineAdapter.jslib/jasmine-
/Basics.jssrc-js-
test/BasicsSpec.js-js-
DEMODEMO
Running Jasmine Test casesRunning Jasmine Test casesRunning Jasmine Test casesRunning Jasmine Test cases
on the top of JSTDon the top of JSTD
O
U
T
L
Developers Life without Unit testing.
What is unit testing? and why?
Current Complexities in testing JavaScript code.
Requirements of a good JavaScript unit testing tool.
What is JsTestDriver.
JsTestDriver Architecture & Configuration
L
I
N
E
JsTestDriver Architecture & Configuration
JsTestDriver Eclipse plugin.
Writing a JavaScript TestCase.
JsTestDriver common constructs.
Writing asynchronous JavaScript TestCase.
JsTestDriver Compatibility
Generating reports from test cases.Generating reports from test cases.
JSTD can generate code coverage files.
Code coverage describes how much the source code is tested.
Generating reports from test cases
Coverage Criteria:
Function coverage
Statement coverage
Branch coverage
JsTestDriver
can generate code coverage
for your JavaScript code using the
code coverage plugin.
Configuring the plugin:
Download the Add the coverage plugin declaration to the Specify the --
Generating reports from test cases
Download the
“coverage.jar”.
Add the coverage plugin declaration to the
configuration file:
:plugin
- name: "coverage"
jar: "plugins/coverage.jar"
module:
"com.google.jstestdriver.coverage.Coverage
Module"
Specify the --
testOutput
<<output_folder>>
flag in the test
running command.
Unfortunately JsTestDriver does not generate HTML reports directly,
JsTestDriver generates the test coverage files in LCOV and
XML formats.
You can generate the HTML test reports using the LCOV
Generating reports from test cases
You can generate the HTML test reports using the LCOV
visualizer tool:
http://ltp.sourceforge.net/coverage/lcov.php
The JsTestDriver LCOV file name is usually:
<config filename>-coverage.dat (jsTestDriver.conf-
coverage.dat)
To generate the report from the LCOV file using the LCOV
Generating reports from test cases
To generate the report from the LCOV file using the LCOV
visualizer tool:
genhtml jsTestDriver.conf-coverage.dat
ConclusionConclusion
Conclusion
Testing JavaScript code is important for increasing the application
quality and for speeding up fixing defects and minimizing the number
of regression defects.
Good JavaScript tool should be configurable, easy to use, and working
with all the browsers.
JsTestDriver is one of the most powerful JavaScript unit testing tools
that can be used for testing both synchronous and asynchronous
JavaScript code on all the browsers.
Question of the session (Free book copy)
<script>
(function() {
var x = 10,
y = 20,
z = x+++y;z = x+++y;
alert(x); //?
alert(y); //?
alert(z); //?
})();
</script>
/1782160620http://www.amazon.com/dp/
JavaScript Unit Testing Book
Contact me
Twitter: http://www.twitter.com/hazems
LinkedIn: http://eg.linkedin.com/in/hazemsaleh
Blog: http://www.technicaladvices.com
Email: hazems@apache.org

Contenu connexe

Tendances

Tendances (20)

Ajit jadhav automation_qa_4_ yrs
Ajit jadhav automation_qa_4_ yrsAjit jadhav automation_qa_4_ yrs
Ajit jadhav automation_qa_4_ yrs
 
Efficient JavaScript Unit Testing, March 2013
Efficient JavaScript Unit Testing, March 2013Efficient JavaScript Unit Testing, March 2013
Efficient JavaScript Unit Testing, March 2013
 
Codeception
CodeceptionCodeception
Codeception
 
Android Test Driven Development
Android Test Driven DevelopmentAndroid Test Driven Development
Android Test Driven Development
 
How to setup unit testing in Android Studio
How to setup unit testing in Android StudioHow to setup unit testing in Android Studio
How to setup unit testing in Android Studio
 
Testing with Codeception
Testing with CodeceptionTesting with Codeception
Testing with Codeception
 
QA Fest 2018. Adam Stasiak. React Native is Coming – the story of hybrid mobi...
QA Fest 2018. Adam Stasiak. React Native is Coming – the story of hybrid mobi...QA Fest 2018. Adam Stasiak. React Native is Coming – the story of hybrid mobi...
QA Fest 2018. Adam Stasiak. React Native is Coming – the story of hybrid mobi...
 
Test Driven Development with JavaFX
Test Driven Development with JavaFXTest Driven Development with JavaFX
Test Driven Development with JavaFX
 
Codeception introduction and use in Yii
Codeception introduction and use in YiiCodeception introduction and use in Yii
Codeception introduction and use in Yii
 
Codeception
CodeceptionCodeception
Codeception
 
vJUG - The JavaFX Ecosystem
vJUG - The JavaFX EcosystemvJUG - The JavaFX Ecosystem
vJUG - The JavaFX Ecosystem
 
Android develop guideline
Android develop guidelineAndroid develop guideline
Android develop guideline
 
CI / CD w/ Codeception
CI / CD w/ CodeceptionCI / CD w/ Codeception
CI / CD w/ Codeception
 
Windmill Testing certification
Windmill Testing certificationWindmill Testing certification
Windmill Testing certification
 
Testing In Java
Testing In JavaTesting In Java
Testing In Java
 
JavaFX8 TestFX - CDI
JavaFX8   TestFX - CDIJavaFX8   TestFX - CDI
JavaFX8 TestFX - CDI
 
Unit testing and Android
Unit testing and AndroidUnit testing and Android
Unit testing and Android
 
BDD using Cucumber JVM
BDD using Cucumber JVMBDD using Cucumber JVM
BDD using Cucumber JVM
 
Rajiv Profile
Rajiv ProfileRajiv Profile
Rajiv Profile
 
Unit testing - A&BP CC
Unit testing - A&BP CCUnit testing - A&BP CC
Unit testing - A&BP CC
 

En vedette

Unit testing JavaScript using Mocha and Node
Unit testing JavaScript using Mocha and NodeUnit testing JavaScript using Mocha and Node
Unit testing JavaScript using Mocha and Node
Josh Mock
 
Unit testing best practices
Unit testing best practicesUnit testing best practices
Unit testing best practices
nickokiss
 
UNIT TESTING PPT
UNIT TESTING PPTUNIT TESTING PPT
UNIT TESTING PPT
suhasreddy1
 

En vedette (16)

Unit testing JavaScript using Mocha and Node
Unit testing JavaScript using Mocha and NodeUnit testing JavaScript using Mocha and Node
Unit testing JavaScript using Mocha and Node
 
An Introduction to Unit Testing
An Introduction to Unit TestingAn Introduction to Unit Testing
An Introduction to Unit Testing
 
Testes unitários como ferramentas de design de código
Testes unitários como ferramentas de design de códigoTestes unitários como ferramentas de design de código
Testes unitários como ferramentas de design de código
 
Testes unitários de JS com Jasmine e Karma
Testes unitários de JS com Jasmine e KarmaTestes unitários de JS com Jasmine e Karma
Testes unitários de JS com Jasmine e Karma
 
Testando uma aplicação AngularJS utilizando o Karma
Testando uma aplicação AngularJS utilizando o KarmaTestando uma aplicação AngularJS utilizando o Karma
Testando uma aplicação AngularJS utilizando o Karma
 
Unit testing 101
Unit testing 101Unit testing 101
Unit testing 101
 
How to improve your unit tests?
How to improve your unit tests?How to improve your unit tests?
How to improve your unit tests?
 
Database Unit Testing Made Easy with VSTS
Database Unit Testing Made Easy with VSTSDatabase Unit Testing Made Easy with VSTS
Database Unit Testing Made Easy with VSTS
 
Unit Testing SQL Server
Unit Testing SQL ServerUnit Testing SQL Server
Unit Testing SQL Server
 
Advanced Jasmine - Front-End JavaScript Unit Testing
Advanced Jasmine - Front-End JavaScript Unit TestingAdvanced Jasmine - Front-End JavaScript Unit Testing
Advanced Jasmine - Front-End JavaScript Unit Testing
 
JUnit- A Unit Testing Framework
JUnit- A Unit Testing FrameworkJUnit- A Unit Testing Framework
JUnit- A Unit Testing Framework
 
Unit testing best practices
Unit testing best practicesUnit testing best practices
Unit testing best practices
 
Unit testing of spark applications
Unit testing of spark applicationsUnit testing of spark applications
Unit testing of spark applications
 
Introduction to White box testing
Introduction to White box testingIntroduction to White box testing
Introduction to White box testing
 
UNIT TESTING PPT
UNIT TESTING PPTUNIT TESTING PPT
UNIT TESTING PPT
 
Software Testing
Software TestingSoftware Testing
Software Testing
 

Similaire à Efficient JavaScript Unit Testing, JavaOne China 2013

Protractor
Protractor Protractor
Protractor
Artem Chechoro
 
Angular Unit testing.pptx
Angular Unit testing.pptxAngular Unit testing.pptx
Angular Unit testing.pptx
RiyaBangera
 
Test strategy for web development
Test strategy for web developmentTest strategy for web development
Test strategy for web development
alice yang
 

Similaire à Efficient JavaScript Unit Testing, JavaOne China 2013 (20)

JavaScript Unit Testing
JavaScript Unit TestingJavaScript Unit Testing
JavaScript Unit Testing
 
[FullStack NYC 2019] Effective Unit Tests for JavaScript
[FullStack NYC 2019] Effective Unit Tests for JavaScript[FullStack NYC 2019] Effective Unit Tests for JavaScript
[FullStack NYC 2019] Effective Unit Tests for JavaScript
 
JavaScript Unit Testing with an Angular 5.x Use Case 101
JavaScript Unit Testing with an Angular 5.x Use Case 101JavaScript Unit Testing with an Angular 5.x Use Case 101
JavaScript Unit Testing with an Angular 5.x Use Case 101
 
Pragmatic Parallels: Java and JavaScript
Pragmatic Parallels: Java and JavaScriptPragmatic Parallels: Java and JavaScript
Pragmatic Parallels: Java and JavaScript
 
Javascript Unit Testing
Javascript Unit TestingJavascript Unit Testing
Javascript Unit Testing
 
Protractor
Protractor Protractor
Protractor
 
Performance testing and j meter
Performance testing and j meterPerformance testing and j meter
Performance testing and j meter
 
Quest to the best test automation for low code development platform kherrazi ...
Quest to the best test automation for low code development platform kherrazi ...Quest to the best test automation for low code development platform kherrazi ...
Quest to the best test automation for low code development platform kherrazi ...
 
JS Lab`16. Сергей Селецкий: "Ретроспектива тестирования JavaScript"
JS Lab`16. Сергей Селецкий: "Ретроспектива тестирования JavaScript"JS Lab`16. Сергей Селецкий: "Ретроспектива тестирования JavaScript"
JS Lab`16. Сергей Селецкий: "Ретроспектива тестирования JavaScript"
 
Angular Unit testing.pptx
Angular Unit testing.pptxAngular Unit testing.pptx
Angular Unit testing.pptx
 
S313352 optimizing java device testing with automatic feature discovering
S313352 optimizing java device testing with automatic feature discoveringS313352 optimizing java device testing with automatic feature discovering
S313352 optimizing java device testing with automatic feature discovering
 
Introduction to Protractor - Habilelabs
Introduction to Protractor - HabilelabsIntroduction to Protractor - Habilelabs
Introduction to Protractor - Habilelabs
 
Test Driven Development
Test Driven DevelopmentTest Driven Development
Test Driven Development
 
Test strategy for web development
Test strategy for web developmentTest strategy for web development
Test strategy for web development
 
Qa process
Qa processQa process
Qa process
 
AngularJS Beginner Day One
AngularJS Beginner Day OneAngularJS Beginner Day One
AngularJS Beginner Day One
 
Testing Angular
Testing AngularTesting Angular
Testing Angular
 
Qa process
Qa processQa process
Qa process
 
Understanding JavaScript Testing
Understanding JavaScript TestingUnderstanding JavaScript Testing
Understanding JavaScript Testing
 
Testacular
TestacularTestacular
Testacular
 

Plus de Hazem Saleh

Plus de Hazem Saleh (13)

Mockito 2.x Migration - Droidcon UK 2018
Mockito 2.x Migration - Droidcon UK 2018Mockito 2.x Migration - Droidcon UK 2018
Mockito 2.x Migration - Droidcon UK 2018
 
[ApacheCon 2016] Advanced Apache Cordova
[ApacheCon 2016] Advanced Apache Cordova[ApacheCon 2016] Advanced Apache Cordova
[ApacheCon 2016] Advanced Apache Cordova
 
[Devoxx Morocco 2015] Apache Cordova In Action
[Devoxx Morocco 2015] Apache Cordova In Action[Devoxx Morocco 2015] Apache Cordova In Action
[Devoxx Morocco 2015] Apache Cordova In Action
 
Apache Cordova In Action
Apache Cordova In ActionApache Cordova In Action
Apache Cordova In Action
 
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova
 
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
 
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014
 
Dojo >= 1.7 Kickstart
Dojo >= 1.7  KickstartDojo >= 1.7  Kickstart
Dojo >= 1.7 Kickstart
 
Efficient JavaScript Unit Testing (Chinese Version), JavaOne China 2013
Efficient JavaScript Unit Testing (Chinese Version), JavaOne China 2013Efficient JavaScript Unit Testing (Chinese Version), JavaOne China 2013
Efficient JavaScript Unit Testing (Chinese Version), JavaOne China 2013
 
JSF Mashups in Action
JSF Mashups in ActionJSF Mashups in Action
JSF Mashups in Action
 
JavaScript tools
JavaScript toolsJavaScript tools
JavaScript tools
 
[JavaOne 2010] Abstract Mashups for Enterprise Java
[JavaOne 2010] Abstract Mashups for Enterprise Java[JavaOne 2010] Abstract Mashups for Enterprise Java
[JavaOne 2010] Abstract Mashups for Enterprise Java
 
GMaps4JSF
GMaps4JSFGMaps4JSF
GMaps4JSF
 

Dernier

Dernier (20)

SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
 
What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024
 
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdfSimplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 
Buy Epson EcoTank L3210 Colour Printer Online.pdf
Buy Epson EcoTank L3210 Colour Printer Online.pdfBuy Epson EcoTank L3210 Colour Printer Online.pdf
Buy Epson EcoTank L3210 Colour Printer Online.pdf
 
Agentic RAG What it is its types applications and implementation.pdf
Agentic RAG What it is its types applications and implementation.pdfAgentic RAG What it is its types applications and implementation.pdf
Agentic RAG What it is its types applications and implementation.pdf
 
AI revolution and Salesforce, Jiří Karpíšek
AI revolution and Salesforce, Jiří KarpíšekAI revolution and Salesforce, Jiří Karpíšek
AI revolution and Salesforce, Jiří Karpíšek
 
Custom Approval Process: A New Perspective, Pavel Hrbacek & Anindya Halder
Custom Approval Process: A New Perspective, Pavel Hrbacek & Anindya HalderCustom Approval Process: A New Perspective, Pavel Hrbacek & Anindya Halder
Custom Approval Process: A New Perspective, Pavel Hrbacek & Anindya Halder
 
Designing for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at ComcastDesigning for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at Comcast
 
Intro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджераIntro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджера
 
Enterprise Knowledge Graphs - Data Summit 2024
Enterprise Knowledge Graphs - Data Summit 2024Enterprise Knowledge Graphs - Data Summit 2024
Enterprise Knowledge Graphs - Data Summit 2024
 
Syngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdfSyngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdf
 
ECS 2024 Teams Premium - Pretty Secure
ECS 2024   Teams Premium - Pretty SecureECS 2024   Teams Premium - Pretty Secure
ECS 2024 Teams Premium - Pretty Secure
 
WSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptxWSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptx
 
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdfHow Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
 
Top 10 Symfony Development Companies 2024
Top 10 Symfony Development Companies 2024Top 10 Symfony Development Companies 2024
Top 10 Symfony Development Companies 2024
 
UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1
 
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
 
Optimizing NoSQL Performance Through Observability
Optimizing NoSQL Performance Through ObservabilityOptimizing NoSQL Performance Through Observability
Optimizing NoSQL Performance Through Observability
 

Efficient JavaScript Unit Testing, JavaOne China 2013

  • 1. Efficient JavaScript Unit Testing Hazem Saleh
  • 2. O U T Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration Developers Life without Unit testing. L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. Writing a JavaScript TestCase. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase. Generating reports from test cases. JsTestDriver Compatibility
  • 3. Developers Life without Unit testing Complex integration between the system components.
  • 4. Unmanaged number of new/regression defects especially when the system complexity increases. Developers Life without Unit testing
  • 5. Low application quality. Developers Life without Unit testing Longer testing cycle. test fixtest fix fix test fix test fix testfix test fix test fix test
  • 6. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration What is unit testing? and why? L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. Writing a JavaScript TestCase. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase. Generating reports from test cases. JsTestDriver Compatibility
  • 7. What is unit testing and why? A unit testing is a piece of code (usually a method) that invokes another piece of code and later checks the correctness of some assumptions Unit testing helps in detecting BUGGY components in the earlyUnit testing helps in detecting BUGGY components in the early stages of the project. A test suite is a set of test cases, and a test case is a set of tests which verifies the system components.
  • 8. Good Unit Test Characteristics Automated Repeatable Fast Easy to run. Easy to understand Incremental
  • 9. What is unit testing and why? Integration is much simplified. Defects are managed. Regression defects should not happen if the defect is resolved by creating a new test case. Application quality increases. Testing cycle is reduced. Test cases can be a good reference for system documentation. Test cases can improve the system design and be the basis of code refactoring.
  • 10. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration Current Complexities in testing JavaScript code. L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. Writing a JavaScript TestCase. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase. Generating reports from test cases. JsTestDriver Compatibility
  • 11. Current Complexities in testing JavaScript code Requires a lot of time to test on all the browsers. JavaScript code that runs on a specific browser does not necessarily Slow JavaScript code that runs on a specific browser does not necessarily mean that it will work on other browsers. Supporting a new browser means allocating a new budget for testing the system again on this new browser and for the new/regression defects fixes. Inflexible
  • 12. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration Requirements of a good JavaScript unit testing tool. L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. Writing a JavaScript TestCase. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase. Generating reports from test cases. JsTestDriver Compatibility
  • 13. Good JavaScript Unit Testing Tool Requirements JavaScript unit testing tool Can execute across all the browsers over all the platforms. Fast Test case execution.all the platforms. Easy setup. Easy configuration. execution. Integration with IDEs. Integration with build management tools.
  • 14. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration What is JsTestDriver. L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. Writing a JavaScript TestCase. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase. Generating reports from test cases. JsTestDriver Compatibility
  • 15. What is JsTestDriver One of the best Open source JavaScript testing tools. Meets all of the previous requirements and more: Supports all the browsers / all platforms. ✓ Easy setup and configuration. ✓ Fast Test case execution. ✓ Integration with IDEs and build management tools. ✓
  • 16. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & ConfigurationJsTestDriver Architecture & Configuration. L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. Writing a JavaScript TestCase. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase. Generating reports from test cases. JsTestDriver Compatibility JsTestDriver Architecture & Configuration.
  • 18. JsTestDriver configuration 1 Separate Source files from Test files
  • 19. JsTestDriver configuration 1 Download the jsTestDriver latest jars from2 driver/downloads/list-test-http://code.google.com/p/js
  • 20. JsTestDriver configuration 1 Create the jsTestDriver.conf file (under the JS folder) with the following initial content:2 3 server: http://localhost:9876server: http://localhost:9876 load: js/*.src-js- jstest/*.-js-
  • 21. JsTestDriver configuration 1 Start the server using the following command line2 3 4 java -jar JsTestDriver-1.3.2.jar Optional parameters [--port 9876] [--browser “{PATH}firefox.exe","{PATH}iexplore.exe","{P ATH}Safari.exe"]
  • 22. JsTestDriver configuration 1 Run the test cases using the following command line2 3 4 5 java -jar JsTestDriver-1.3.2.jar --tests alljava -jar JsTestDriver-1.3.2.jar --tests all ......... Total 9 tests (Passed: 9; Fails: 0; Errors: 0) (16.00 ms) Firefox 9.0.1 Windows: Run 3 tests (Passed: 3; Fails: 0; Errors 0) (3.00 ms) Safari 534.52.7 Windows: Run 3 tests (Passed: 3; Fails: 0; Errors 0) (4.00 ms) Microsoft Internet Explorer 7.0 Windows: Run 3 tests (Passed: 3; Fails: 0; Errors 0) (16.00 ms)
  • 23. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration L I N E JsTestDriver Architecture & Configuration Writing a JavaScript TestCase. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase. Generating reports from test cases. JsTestDriver Compatibility JsTestDriver Eclipse plugin.JsTestDriver Eclipse plugin.
  • 24. JsTestDriver Eclipse plugin Instead of using command lines for starting the server and running the test cases, you can directly use the jsTestDriver Eclipse plugin. To install the JsTestDriver Eclipse plugin install the plugin from the followingTo install the JsTestDriver Eclipse plugin install the plugin from the following driver.googlecode.com/svn/update/-test-http://jsURL :
  • 27. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase. Generating reports from test cases. JsTestDriver Compatibility Writing a JavaScript TestCase.Writing a JavaScript TestCase.
  • 28. Writing a JavaScript TestCase ApplicationUtilTest = TestCase("ApplicationUtilTest"); ApplicationUtilTest.prototype.setUp = function () { /*:DOC += ...HTML fragment code goes here (single root) ...*/ }; ApplicationUtilTest.prototype.testMethod1 = function () {ApplicationUtilTest.prototype.testMethod1 = function () { … validate using the jsTestDriver constructs … } ApplicationUtilTest.prototype.testMethod2 = function () { … validate using the jsTestDriver constructs … } ...
  • 29. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. Writing asynchronous JavaScript TestCase. Generating reports from test cases. JsTestDriver Compatibility Writing a JavaScript TestCase. JsTestDriver common constructs.JsTestDriver common constructs.
  • 30. JsTestDriver common constructs fail("msg") assertTrue("msg", actual) assertFalse("msg", actual) assertSame("msg", expected, actual) assertNotSame("msg", expected, actual) assertNull("msg", actual) assertNotNull("msg", actual)
  • 31. DEMODEMO Let’s write synchronous JSLet’s write synchronous JSLet’s write synchronous JSLet’s write synchronous JS Test cases …Test cases …
  • 32. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. Generating reports from test cases. JsTestDriver Compatibility Writing a JavaScript TestCase. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase.Writing asynchronous JavaScript TestCase.
  • 33. Writing asynchronous JavaScript TestCase AsyncTest = AsyncTestCase("AsynchronousTesting"); AsyncTest.prototype.setUp = function () { /*:DOC += <!-- Initialization code -->*/ }; AsyncTest.prototype.testOperationOne = function(queue) { queue.call('Step1', function(callbacks) { var asyncObject = new AsyncObject (); var successCallBack = callbacks.add(function(successData) { // validate (successData) if possible .... }); var failureCallBack = callbacks.addErrback('Error Message');var failureCallBack = callbacks.addErrback('Error Message'); // call asynchronous API asyncObject.operationOne(inputData, successCallBack, failureCallBack); }); };
  • 34. Every inline function provides a callbacks parameter for testing the Ajax APIs. There are two types of callbacks: • Success callback: Represents the success path. It MUST be called in order to pass the test. • Error callback: Represents the error path. If it is called, then the test fails. Writing asynchronous JavaScript TestCase The test runner does not move to the next queue until the current queue executes all of its success callbacks. If a specific success callback is not called for a specific amount of time (30 seconds), the test fails.
  • 35. DEMODEMO Let’s write Asynchronous JSLet’s write Asynchronous JSLet’s write Asynchronous JSLet’s write Asynchronous JS Test cases …Test cases …
  • 36. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. Writing a JavaScript TestCase. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase. JsTestDriver Compatibility Generating reports from test cases. JsTestDriver Compatibility
  • 37. JsTestDriver is not only a JavaScript unit testing framework BUT it is a test runner for many other JavaScript unit testing frameworks. JsTestDriver Compatibility JsTestDriver is compatibility with the following JavaScript unit testing frameworks through adapters: • Jasmine • YUI Test • QUnit
  • 38. In order to run the previous unit testing frameworks on the top of the JSTD test runner. You need to configure the framework adapter and source before the test files as follows: JsTestDriver Compatibility server: http://localhost:9876 load: /jasmine.js0.1.1-jasmine/lib/jasmine- /adapter/JasmineAdapter.jslib/jasmine- /Basics.jssrc-js- test/BasicsSpec.js-js-
  • 39. DEMODEMO Running Jasmine Test casesRunning Jasmine Test casesRunning Jasmine Test casesRunning Jasmine Test cases on the top of JSTDon the top of JSTD
  • 40. O U T L Developers Life without Unit testing. What is unit testing? and why? Current Complexities in testing JavaScript code. Requirements of a good JavaScript unit testing tool. What is JsTestDriver. JsTestDriver Architecture & Configuration L I N E JsTestDriver Architecture & Configuration JsTestDriver Eclipse plugin. Writing a JavaScript TestCase. JsTestDriver common constructs. Writing asynchronous JavaScript TestCase. JsTestDriver Compatibility Generating reports from test cases.Generating reports from test cases.
  • 41. JSTD can generate code coverage files. Code coverage describes how much the source code is tested. Generating reports from test cases Coverage Criteria: Function coverage Statement coverage Branch coverage
  • 42. JsTestDriver can generate code coverage for your JavaScript code using the code coverage plugin.
  • 43. Configuring the plugin: Download the Add the coverage plugin declaration to the Specify the -- Generating reports from test cases Download the “coverage.jar”. Add the coverage plugin declaration to the configuration file: :plugin - name: "coverage" jar: "plugins/coverage.jar" module: "com.google.jstestdriver.coverage.Coverage Module" Specify the -- testOutput <<output_folder>> flag in the test running command.
  • 44. Unfortunately JsTestDriver does not generate HTML reports directly, JsTestDriver generates the test coverage files in LCOV and XML formats. You can generate the HTML test reports using the LCOV Generating reports from test cases You can generate the HTML test reports using the LCOV visualizer tool: http://ltp.sourceforge.net/coverage/lcov.php
  • 45. The JsTestDriver LCOV file name is usually: <config filename>-coverage.dat (jsTestDriver.conf- coverage.dat) To generate the report from the LCOV file using the LCOV Generating reports from test cases To generate the report from the LCOV file using the LCOV visualizer tool: genhtml jsTestDriver.conf-coverage.dat
  • 47. Conclusion Testing JavaScript code is important for increasing the application quality and for speeding up fixing defects and minimizing the number of regression defects. Good JavaScript tool should be configurable, easy to use, and working with all the browsers. JsTestDriver is one of the most powerful JavaScript unit testing tools that can be used for testing both synchronous and asynchronous JavaScript code on all the browsers.
  • 48. Question of the session (Free book copy) <script> (function() { var x = 10, y = 20, z = x+++y;z = x+++y; alert(x); //? alert(y); //? alert(z); //? })(); </script> /1782160620http://www.amazon.com/dp/ JavaScript Unit Testing Book
  • 49.
  • 50. Contact me Twitter: http://www.twitter.com/hazems LinkedIn: http://eg.linkedin.com/in/hazemsaleh Blog: http://www.technicaladvices.com Email: hazems@apache.org

Notes de l'éditeur

  1. Without unit testing, the developers life is difficult: The integration between the components is complex because we can have buggy components that are not unit tested at all. This means that the developers will stay nights and work hard for making these components working together.
  2. The number of defects are un-manageable. One resolved defect can occur many times because there is no repeatable test case that ensures that the defect will not happen again.
  3. This leads to low application quality.
  4. Here after applying unit testing: &lt;&lt;Say it as is&gt;&gt; Adding to this; Test cases can be a good reference for system documentation because they contain the test scenarios of the system use cases .
  5. Generally speaking, Testing JavaScript code has the following complexities: 1. Slow. Requires a lot of time to test on all the browsers. JavaScript code that runs on a specific browser does not necessarily mean that it will work on other browsers. 2. Inflexible. Supporting a new browser that was not considered in the system development means allocating a new budget for testing the system again on this new browser and for the new/regression defects fixes. All of these complexities form the requirements of JavaScript Unit Testing tool.
  6. From these complexities we can conclude that the requirements of good JavaScript unit testing tool which are: The unit testing tool should execute across all the browsers. It should have an easy setup and configuration. It should be fast and integrated with IDEs and build management tools.
  7. JsTestDriver is an example of an efficient JavaScript unit testing tool. It is actually one of the best open source JavaScript unit testing tools. It …
  8. The server is responsible for loading the JavaScript test cases runner code in the different browsers once they are captured. The browser can be captured through the command line or by pointing the browser to the server URL. Once the browser is captured, it is then called a slave browser. The server loads the JavaScript code, executes the test cases on every browser, and returns the results to the client. The client (command line) needs two main items: JavaScript files — source files and test files, and Configuration file — for organizing the loading of the source files and the testing files. This architecture is flexible, allowing a single server to capture any number of browsers from other machines in the network. For example, it can be useful if your code is running on Linux and you want to run your test cases against Microsoft Internet Explorer on another Windows machine.
  9. Before going into the details of the JSTD configurations. one of the best practices of JavaScript unit testing is to separate the testing code from the application code so it is recommended to create two separate folders for them in the web applications.
  10. Download the JsTestDriver from the following URL.
  11. In the configuration file, we need to specify 1. In the server attribute specifies the JsTestDriver server HTTP URL (usually we are using port 9876). 2. In the load attribute which tells the JsTestRunner the loading order of the JavaScript files. In our case, we specify the path of both the JavaScript source and test files.
  12. The next step is to start the JsTestDriver server using the following command. There are some optional parameters: The port parameter which specifies the server port. The browser parameter which specifies the browser path to load for executing the tests.
  13. Finally to run the test cases, we use the following command.
  14. Instead of using command line, you can start work directly with the JsTestDriver using the JsTestDriver Eclipse plugin, you can install it from the following URL.
  15. In the JsTestDriver Eclipse plugin, you can create a new test configuration: You select the project you want to test, and the configuration file of the test cases.
  16. You can start and stop the testing server from the plug-in adding to this you can also run the test cases and see the results of the test cases in the plug-in view
  17. To be able to create a JavaScript testcase object, you should use the jsTestDriver TestCase method. In the setUp method of the testcase object, you can add the HTML fragment that you will refer to inside your test methods. In the test methods, you can use the jsTestDriver constructs to control the test case. I recommend to have a single testcase object per the JavaScript object.
  18. Now, Let’s move to the example. We have a login form with two fields (UserName and password) and a submit button. There is a simple JavaScript validator that checks if the UserName and the password are entered. If these fields are not entered, the following error messages appear. Now, Let’s write the assertions which tests if the validation component is behaving correctly in three test scenarios: Empty userName and password. Empty userName and Non-Empty password. Non-Empty userName and empty password.
  19. Now, Let’s see how we can execute the Jasmine test cases on the top of JSTD. As we are seeing here, this is a simple Jasmine test case that tests another JavaScript object which adds two numbers. This test case ensures that the JavaScript addition operation is working properly.
  20. JSTD allows generating code coverage reports. Code coverage is one of the software testing measurements. Code coverage represents how much the source code is tested. It has three coverage criteria: Function coverage represents the percentage of the program functions that have been executed Statement coverage represents the percentage of the program statements that have been executed. Branch coverage represents the percentage of the program branches that have been executed.
  21. It is better to specify the testOutput flag in the test running command to get the test coverage files in your specified folder.
  22. 11 20 30