Speed up your Titanium app development with automated tests - TiConf EU 2014

33
Speed up your Titanium app development with automated tests

description

This session will explore unit and functional testing concepts applied to Titanium mobile and Alloy framework. After a brief introduction to testing we will look at the complete source code of a fully tested app.

Transcript of Speed up your Titanium app development with automated tests - TiConf EU 2014

Page 1: Speed up your Titanium app development with automated tests - TiConf EU 2014

Speed up your Titanium app development with automated

tests

Page 2: Speed up your Titanium app development with automated tests - TiConf EU 2014

Home

Page 3: Speed up your Titanium app development with automated tests - TiConf EU 2014

I’m sorry :)

Page 4: Speed up your Titanium app development with automated tests - TiConf EU 2014
Page 6: Speed up your Titanium app development with automated tests - TiConf EU 2014

Meet the lead developer

Page 7: Speed up your Titanium app development with automated tests - TiConf EU 2014

The big project

Page 8: Speed up your Titanium app development with automated tests - TiConf EU 2014

The important customer

Page 9: Speed up your Titanium app development with automated tests - TiConf EU 2014

The“not so friendly” project manager

Page 10: Speed up your Titanium app development with automated tests - TiConf EU 2014

We have LITTLE TIME

NO BUDGET left…

We have to act FAST

Page 11: Speed up your Titanium app development with automated tests - TiConf EU 2014

It works!

Page 12: Speed up your Titanium app development with automated tests - TiConf EU 2014

Great Job! Now JUST ADD AN AIR VENT and we are OK… its’ EASY

Page 13: Speed up your Titanium app development with automated tests - TiConf EU 2014

KABOOM!

Page 14: Speed up your Titanium app development with automated tests - TiConf EU 2014
Page 15: Speed up your Titanium app development with automated tests - TiConf EU 2014

“That’s not the way of working you are looking for”

Page 16: Speed up your Titanium app development with automated tests - TiConf EU 2014

writing complex software on a

tight schedule to dark side may

take you...

“Testing or No Testing.

There is No Debugging.”

Page 17: Speed up your Titanium app development with automated tests - TiConf EU 2014

Manual E2E Testing

Unit Testing

$timecomplexity

Automated

Page 18: Speed up your Titanium app development with automated tests - TiConf EU 2014

Test what gives you VALUE

Test only what gives you

Page 19: Speed up your Titanium app development with automated tests - TiConf EU 2014

Eat your own

Page 20: Speed up your Titanium app development with automated tests - TiConf EU 2014

Functional test provides a safety net...

Page 21: Speed up your Titanium app development with automated tests - TiConf EU 2014

… let you sleep well after a workday

Page 22: Speed up your Titanium app development with automated tests - TiConf EU 2014

Unit tests ensure correctness...

Page 23: Speed up your Titanium app development with automated tests - TiConf EU 2014

… and let you improve codebase design

Page 24: Speed up your Titanium app development with automated tests - TiConf EU 2014

describe(“Something”, function(){

it(“should behave in some way”, function(){

var sut = require(“sut”); //Arrange

var success = sut.doSomething(); //Act

expect(result).toBe(true) //Assert

});

});

Unit Testing is simple...

Page 25: Speed up your Titanium app development with automated tests - TiConf EU 2014

...you just need a good runner

Page 26: Speed up your Titanium app development with automated tests - TiConf EU 2014

describe("An awesome testing tool", function(){

it("should run on a real device", function(){

});

});

Page 27: Speed up your Titanium app development with automated tests - TiConf EU 2014

Install:

npm install -g tishadow

Generic app:

tishadow app -d tishadow_app

Appify:

tishadow appify -d tishadow_appify

Page 28: Speed up your Titanium app development with automated tests - TiConf EU 2014

Start server:

tishadow server

Connect your device(s)

Push your specs to all connected

devices.

tishadow spec

Page 30: Speed up your Titanium app development with automated tests - TiConf EU 2014

Books

Page 31: Speed up your Titanium app development with automated tests - TiConf EU 2014

Useful links

TiShadow [http://tishadow.yydigital.com/]

ti-mocha [http://tonylukasavage.com/ti-mocha/]

tio2 [https://github.com/appcelerator/tio2]

Spies [http://tobyho.com/2011/12/15/jasmine-spy-cheatsheet/]

TiCalabash [https://github.com/appersonlabs/TiCalabash]

Page 32: Speed up your Titanium app development with automated tests - TiConf EU 2014

Thanks to...

Page 33: Speed up your Titanium app development with automated tests - TiConf EU 2014

...and thank you for your precious

time :)