Slide 1

Slide 1 text

Love your tests @KINISOFTWARE MADRID · NOV 27-28 · 2015

Slide 2

Slide 2 text

.Love your tests (Story of a healthy addiction - Chapter 2) kinisoftware kini@tuenti.com

Slide 3

Slide 3 text

No content

Slide 4

Slide 4 text

No content

Slide 5

Slide 5 text

We are hiring!!

Slide 6

Slide 6 text

Once upon a time… 2013 1

Slide 7

Slide 7 text

.Tuenti <3 .Testing (Story of a healthy addiction - Chapter 1)

Slide 8

Slide 8 text

• We <3 our customers • Confidence • Safety Net • Refactoring, refactoring, refactoring • It is professional, guys :)

Slide 9

Slide 9 text

By Martin Fowler

Slide 10

Slide 10 text

Testability

Slide 11

Slide 11 text

Present day… 2

Slide 12

Slide 12 text

Good good

Slide 13

Slide 13 text

“It’s overwhelmingly easy to write bad unit tests that add very little value to a project while inflating the cost of code changes astronomically.”

Slide 14

Slide 14 text

• Code coverage != Test quality • Don’t Repeat Yourself (Globally) • Mocks, mocks everywhere • Test smells

Slide 15

Slide 15 text

.Tuenti Subject Under Test 3

Slide 16

Slide 16 text

Microservices Fresh start Java Focus on testability

Slide 17

Slide 17 text

Talk is cheap. Show me the code.

Slide 18

Slide 18 text

Coding time (1446 tests) •Code readability + Naming + Code structure + DSL • One (logical) assert per test + Meaningful asserts + Custom matchers • Exceptions • Builders + Mothers • Mock providers • Testing real things • Customize your runners + DI

Slide 19

Slide 19 text

Code readability + Naming + Code structure + DSL • Unit & Integration folders • Tests names • AAA • @SetUp vs Explicit SetUpTM • DSL

Slide 20

Slide 20 text

• Unit & Integration folders

Slide 21

Slide 21 text

No content

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

No content

Slide 24

Slide 24 text

Code readability + Naming + Code structure + DSL • Tests names

Slide 25

Slide 25 text

No content

Slide 26

Slide 26 text

Code readability + Naming + Code structure + DSL • AAA

Slide 27

Slide 27 text

No content

Slide 28

Slide 28 text

Code readability + Naming + Code structure + DSL • @SetUp vs Explicit SetUpTM

Slide 29

Slide 29 text

Code readability + Naming + Code structure + DSL

Slide 30

Slide 30 text

Code readability + Naming + Code structure + DSL • DSL

Slide 31

Slide 31 text

No content

Slide 32

Slide 32 text

One (logical) assert per test + Meaningful asserts + Custom matchers • Assert Equals vs Assert That • Actual & Expected • One (logical) assert per test • Hamcrest & Assert J • Custom matchers

Slide 33

Slide 33 text

• Assert Equals vs Assert That / Actual & Expected One (logical) assert per test + Meaningful asserts + Custom matchers

Slide 34

Slide 34 text

One (logical) assert per test + Meaningful asserts + Custom matchers • One (logical) assert per test

Slide 35

Slide 35 text

No content

Slide 36

Slide 36 text

No content

Slide 37

Slide 37 text

One (logical) assert per test + Meaningful asserts + Custom matchers • Hamcrest

Slide 38

Slide 38 text

• Assert J

Slide 39

Slide 39 text

One (logical) assert per test + Meaningful asserts + Custom matchers • Custom matchers

Slide 40

Slide 40 text

No content

Slide 41

Slide 41 text

Exceptions • Try/Catch… really? • @Test(expected = ….) • @Rule ExpectedException

Slide 42

Slide 42 text

Exceptions • @Test(expected = ….) • @Rule ExpectedException

Slide 43

Slide 43 text

Builders + Mothers • Value Objects are leaf in our classes tree == No mocks here please • Building value objects “issue” • Builders • Mothers • Builders + Mothers

Slide 44

Slide 44 text

Builders + Mothers • Builders

Slide 45

Slide 45 text

Builders + Mothers

Slide 46

Slide 46 text

Mock providers • DRY using mocks globally • DSL • Builders + Mocks = Mocks providers

Slide 47

Slide 47 text

No content

Slide 48

Slide 48 text

Testing using real things • Mocks, mocks everywhere • Sociable Unit Tests • Local resources • Helper & Utility classes

Slide 49

Slide 49 text

No content

Slide 50

Slide 50 text

No content

Slide 51

Slide 51 text

No content

Slide 52

Slide 52 text

Testing using real things • Helper & Utility classes

Slide 53

Slide 53 text

Customize your runners + DI • JUnit @RunWith + your platform • SetUp and TearDown for expensive resources • DI container and “integration mocks”

Slide 54

Slide 54 text

Customize your runners + DI • JUnit @RunWith + your platform

Slide 55

Slide 55 text

No content

Slide 56

Slide 56 text

Customize your runners + DI • SetUp and TearDown for expensive resources

Slide 57

Slide 57 text

Customize your runners + DI • SetUp and TearDown for expensive resources

Slide 58

Slide 58 text

Customize your runners + DI

Slide 59

Slide 59 text

.Thanks!

Slide 60

Slide 60 text

No content

Slide 61

Slide 61 text

• Mix JVM Languages (Groovy&Scala rule!) • Java 8 fuck yeah! • JUnit Lambda • Property-based testing • Mutation Testing Keep an eye on…

Slide 62

Slide 62 text

Reading a lot • Effective Unit Testing • WEWUT • Pragmatic Unit Testing with JUnit • GOOS • The Art of Unit Testing • JUnit in Action • xUnit Patterns • Refactoring