SlideShare a Scribd company logo
1 of 50
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

More Related Content

What's hot

Ajit jadhav automation_qa_4_ yrs
Ajit jadhav automation_qa_4_ yrsAjit jadhav automation_qa_4_ yrs
Ajit jadhav automation_qa_4_ yrsAjit Jadhav
 
Efficient JavaScript Unit Testing, March 2013
Efficient JavaScript Unit Testing, March 2013Efficient JavaScript Unit Testing, March 2013
Efficient JavaScript Unit Testing, March 2013Hazem Saleh
 
Android Test Driven Development
Android Test Driven DevelopmentAndroid Test Driven Development
Android Test Driven DevelopmentArif Huda
 
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 Studiotobiaspreuss
 
Testing with Codeception
Testing with CodeceptionTesting with Codeception
Testing with CodeceptionJeremy Coates
 
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...QAFest
 
Test Driven Development with JavaFX
Test Driven Development with JavaFXTest Driven Development with JavaFX
Test Driven Development with JavaFXHendrik Ebbers
 
Codeception introduction and use in Yii
Codeception introduction and use in YiiCodeception introduction and use in Yii
Codeception introduction and use in YiiIlPeach
 
vJUG - The JavaFX Ecosystem
vJUG - The JavaFX EcosystemvJUG - The JavaFX Ecosystem
vJUG - The JavaFX EcosystemAndres Almiray
 
CI / CD w/ Codeception
CI / CD w/ CodeceptionCI / CD w/ Codeception
CI / CD w/ CodeceptionTudor Barbu
 
Windmill Testing certification
Windmill Testing certificationWindmill Testing certification
Windmill Testing certificationVskills
 
JavaFX8 TestFX - CDI
JavaFX8   TestFX - CDIJavaFX8   TestFX - CDI
JavaFX8 TestFX - CDISven Ruppert
 
Unit testing and Android
Unit testing and AndroidUnit testing and Android
Unit testing and AndroidTomáš Kypta
 

What's hot (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
 

Viewers also liked

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 NodeJosh Mock
 
An Introduction to Unit Testing
An Introduction to Unit TestingAn Introduction to Unit Testing
An Introduction to Unit TestingJoe Tremblay
 
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ódigoPaula Grangeiro
 
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 KarmaDouglas Matoso
 
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 KarmaHenrique Limas
 
How to improve your unit tests?
How to improve your unit tests?How to improve your unit tests?
How to improve your unit tests?Péter Módos
 
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 VSTSSanil Mhatre
 
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 TestingLars Thorup
 
JUnit- A Unit Testing Framework
JUnit- A Unit Testing FrameworkJUnit- A Unit Testing Framework
JUnit- A Unit Testing FrameworkOnkar Deshpande
 
Unit testing best practices
Unit testing best practicesUnit testing best practices
Unit testing best practicesnickokiss
 
Unit testing of spark applications
Unit testing of spark applicationsUnit testing of spark applications
Unit testing of spark applicationsKnoldus Inc.
 
UNIT TESTING PPT
UNIT TESTING PPTUNIT TESTING PPT
UNIT TESTING PPTsuhasreddy1
 

Viewers also liked (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
 

Similar to Efficient JavaScript Unit Testing, JavaOne China 2013

[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 JavaScriptHazem Saleh
 
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 101Hazem Saleh
 
Pragmatic Parallels: Java and JavaScript
Pragmatic Parallels: Java and JavaScriptPragmatic Parallels: Java and JavaScript
Pragmatic Parallels: Java and JavaScriptdavejohnson
 
Performance testing and j meter
Performance testing and j meterPerformance testing and j meter
Performance testing and j meterPurna Chandar
 
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 ...Rachid Kherrazi
 
JS Lab`16. Сергей Селецкий: "Ретроспектива тестирования JavaScript"
JS Lab`16. Сергей Селецкий: "Ретроспектива тестирования JavaScript"JS Lab`16. Сергей Селецкий: "Ретроспектива тестирования JavaScript"
JS Lab`16. Сергей Селецкий: "Ретроспектива тестирования JavaScript"GeeksLab Odessa
 
Angular Unit testing.pptx
Angular Unit testing.pptxAngular Unit testing.pptx
Angular Unit testing.pptxRiyaBangera
 
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 discoveringromanovfedor
 
Introduction to Protractor - Habilelabs
Introduction to Protractor - HabilelabsIntroduction to Protractor - Habilelabs
Introduction to Protractor - HabilelabsHabilelabs
 
Test strategy for web development
Test strategy for web developmentTest strategy for web development
Test strategy for web developmentalice yang
 
AngularJS Beginner Day One
AngularJS Beginner Day OneAngularJS Beginner Day One
AngularJS Beginner Day OneTroy Miles
 
Understanding JavaScript Testing
Understanding JavaScript TestingUnderstanding JavaScript Testing
Understanding JavaScript TestingKissy Team
 

Similar to 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
 

More from Hazem Saleh

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 2018Hazem Saleh
 
[ApacheCon 2016] Advanced Apache Cordova
[ApacheCon 2016] Advanced Apache Cordova[ApacheCon 2016] Advanced Apache Cordova
[ApacheCon 2016] Advanced Apache CordovaHazem Saleh
 
[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 ActionHazem Saleh
 
Apache Cordova In Action
Apache Cordova In ActionApache Cordova In Action
Apache Cordova In ActionHazem Saleh
 
[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 CordovaHazem Saleh
 
[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 CordovaHazem Saleh
 
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 2014Hazem Saleh
 
Dojo >= 1.7 Kickstart
Dojo >= 1.7  KickstartDojo >= 1.7  Kickstart
Dojo >= 1.7 KickstartHazem Saleh
 
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 2013Hazem Saleh
 
JSF Mashups in Action
JSF Mashups in ActionJSF Mashups in Action
JSF Mashups in ActionHazem Saleh
 
JavaScript tools
JavaScript toolsJavaScript tools
JavaScript toolsHazem Saleh
 
[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 JavaHazem Saleh
 

More from 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
 

Recently uploaded

Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 

Recently uploaded (20)

Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 

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

Editor's Notes

  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