Slide 1

Slide 1 text

Score the Tendulkar Test Coverage @GopalAkshintala

Slide 2

Slide 2 text

Gopal S Akshintala Engineering Lead, Salesforce Community Day 2022 September 10th, 2022 T-Hub, Hyderabad @GopalAkshintala overfullstack.ga

Slide 3

Slide 3 text

Sachin Tendulkar holds the record for highest number of dismissals in the 90s (28 times)🏏

Slide 4

Slide 4 text

@GopalAkshintala

Slide 5

Slide 5 text

Why Unit Test ? πŸ§ͺ @GopalAkshintala

Slide 6

Slide 6 text

Why Unit Test? @GopalAkshintala Find Bugs Statement Coverage Behaviour documentation in form of code Strive for behaviour coverage NOT Statement coverage

Slide 7

Slide 7 text

What makes Unit Testing Di ffi cult? πŸ˜“ @GopalAkshintala Code Smells void methods static methods that are not static Bad Design Legacy Code interactions

Slide 8

Slide 8 text

We have the Hammer! OOps! @GopalAkshintala

Slide 9

Slide 9 text

The Unstoppable Hammer! OOps! @GopalAkshintala Suppress this and super constructor static init blocks Stub private methods static methods final methods Constructors Mock final classes

Slide 10

Slide 10 text

The PowerMock Rocky! @GopalAkshintala OOps! 100%

Slide 11

Slide 11 text

The Dark Powers πŸ‘Ή Synthetic coverage is dangerous PowerMock is a new framework to learn Involves a lot of Setup and trail-and-error to get it right Tests written with PowerMock are brittle and difficult to Maintain It’s not Transparent OOps! @GopalAkshintala

Slide 12

Slide 12 text

@GopalAkshintala

Slide 13

Slide 13 text

PowerMock is a πŸ’Š Painkiller @GopalAkshintala

Slide 14

Slide 14 text

But! Why is PowerMock Invasive? @GopalAkshintala

Slide 15

Slide 15 text

@GopalAkshintala powermock.github.io

Slide 16

Slide 16 text

PowerMock Compatibility Incompatible with JUnit 5 JUnit 5 was release 5 years ago Incompatible with Latest Mockito Latest Mockito: 4.20 Compatible version: 3.12 Not fully compatible with Java 11 OOps! @GopalAkshintala

Slide 17

Slide 17 text

But do I need Unit Tests at all? Can’t I get Coverage with Integration Tests!? 🀷 @GopalAkshintala

Slide 18

Slide 18 text

@GopalAkshintala ITests Vs UTests

Slide 19

Slide 19 text

@GopalAkshintala Use-Case Diagram

Slide 20

Slide 20 text

@GopalAkshintala ITests Vs UTests Use-case: How customer uses ITests should test Features Use-cases : Features : Components 1 Feature: Reflects software Functionality UTests should test Component Behaviour N N

Slide 21

Slide 21 text

@GopalAkshintala ITests Vs UTests Traceability - How well a given test can precisely trace/pinpoint the cause of failure when it fails Productivity - Writing, Executing and Maintaining effort

Slide 22

Slide 22 text

The Redemption πŸ• πŸ₯— @GopalAkshintala

Slide 23

Slide 23 text

@GopalAkshintala Code Smells 🐽

Slide 24

Slide 24 text

@GopalAkshintala Code Smells 🐽 Avoid void Methods

Slide 25

Slide 25 text

@GopalAkshintala Code Smells 🐽 Are static methods bad for Unit testing?

Slide 26

Slide 26 text

@GopalAkshintala Pure Vs Impure Pure Logic Impure Side-Effects REST I/O DB I/O Events β€’ Data-in 
 Data-out β€’ Referentially Transparent

Slide 27

Slide 27 text

@GopalAkshintala Impure static void add(int a, int b) { System.out.println(a + b); }

Slide 28

Slide 28 text

@GopalAkshintala Pure static int add(int a, int b) { return a + b; }

Slide 29

Slide 29 text

@GopalAkshintala Impure Pure static void add(int a, int b, Consumer consumer) { consumer.accept(a + b); } / / Function call in Prod add(1, 2, System.out :: println); / / Function call in Test add(1, 2, result -> assertEquals(3, result));

Slide 30

Slide 30 text

@GopalAkshintala Bad Design

Slide 31

Slide 31 text

@GopalAkshintala Bad Design OOP P πŸ’©

Slide 32

Slide 32 text

@GopalAkshintala πŸ‘¨πŸ’Ό πŸ™‰ Domain Logic DB layer Prod Test

Slide 33

Slide 33 text

@GopalAkshintala Design for Tests A Unit Test is the First client for your Component

Slide 34

Slide 34 text

@GopalAkshintala Test in Isolation Mock Dependencies NOT Statements

Slide 35

Slide 35 text

@GopalAkshintala Test in Isolation Inject your Dependencies πŸ’‰

Slide 36

Slide 36 text

@GopalAkshintala Legacy Dependencies πŸ—Ώ πŸ—Ώ

Slide 37

Slide 37 text

@GopalAkshintala Legacy Dependencies If you interact with a
 Legacy component, Your component Instantly turns Legacy!

Slide 38

Slide 38 text

@GopalAkshintala Legacy Dependencies If you β€œDirectly” interact with a
 Legacy component, Your component Instantly turns Legacy!

Slide 39

Slide 39 text

@GopalAkshintala Ports & Adapters Domain Adapters

Slide 40

Slide 40 text

@GopalAkshintala πŸ‘¨πŸ’Ό πŸ™‰ Domain Logic DB layer Prod Test

Slide 41

Slide 41 text

@GopalAkshintala Port πŸ‘¨πŸ’Ό 🐡 Isolated Domain Logic DB layer Prod Adapter Fake Adapter Prod Test

Slide 42

Slide 42 text

@GopalAkshintala Black box Unit Testing Unit Test ! = Test Internals Unit Test == E2E test for the Component

Slide 43

Slide 43 text

@GopalAkshintala Anti-Patterns (digitaltapestry.net) https://confluence.internal.salesforce.com/display/TESTSFDC/ Unit+Testing+Best+Practices https://confluence.internal.salesforce.com/display/TESTSFDC/ Unit+Test+Recipes%3A+How+to+Write+High-Quality+Tests Explanation how proxy based Mock Frameworks work Write tests. Not too many. Mostly integration. (kentcdodds.com) Testing of Microservices - Spotify Engineering : Spotify Engineering (atspotify.com) On the Diverse And Fantastical Shapes of Testing (martinfowler.com) ongoing by Tim Bray Β· Testing in the Twenties (tbray.org) Resources

Slide 44

Slide 44 text

No one gives you Change, you need to bring Change - Ramulu, Bus conductor #dadJoke

Slide 45

Slide 45 text

@GopalAkshintala github.com/overfullstack/sttc-demo { } speakerdeck.com/gopalakshintala/ score-the-tendulkar-test-coverage

Slide 46

Slide 46 text

@GopalAkshintala 🐡