dockerizedautomated tests: profit and principles · 2019. 4. 26. · agenda what docker is...

25
Dockerized automated tests: profit and principles IT Weekend Dnipro: Automation Testing and Business Analysis Dmytro Serdiuk

Upload: others

Post on 30-Dec-2020

2 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Dockerized automated tests: profit and principles

IT Weekend Dnipro: Automation Testing and Business Analysis

Dmytro Serdiuk

Page 2: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Who am I

Dmytro Serdiuk

Test automation architect at SOFTSERVE

2

Page 3: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Agenda

What Docker isDocker and test automationWhy dockerized automated testsPrinciples of dockerization

3

Page 4: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Concept

4

Page 5: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Containers benefits

LIGHTWEIGHT

STANDARD

SECURE

5

Page 6: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

6

Page 7: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Test infrastructure: Selenium Grid

7

Page 8: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

8

Page 9: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Docker + Selenium Grid

https://github.com

/SeleniumHQ/docker-selenium

/aerokube/selenoid9

Page 10: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Idea

10

Page 11: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Motivation

Environment issues

Parallel execution

Collaboration speed

11

Page 12: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Steps

Make tests configurable

Create Docker image

Document usage

12

Page 13: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Principal Dockerfile

FROMmaven:3.5-jdk-8-slim

13

Page 14: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Dockerfile: Base image selection

Minimal sizeAlways specify tag

maven:3.5-jdk-8-slimUse your own base image

Pre-installed toolsUnder your control

14

Page 15: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Principal Dockerfile

FROM maven:3.5-jdk-8-slimCOPY . .RUN mvn dependency:go-offline

15

Page 16: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Dockerfile: Tests installation

Minimize image sizeOnly needed toolsNo cache

Add metadata LABEL, VOLUME

Keep your files separatelyWORKDIR

16

Page 17: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Principal Dockerfile

FROM maven:3.5-jdk-8-slimCOPY . .RUN mvn dependency:go-offlineENTRYPOINT ["mvn --offline"]CMD ["test"]

17

Page 18: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Dockerfile: Run configuration

Make ready-to-run imagesENTRYPOINT ["mvn --offline"]

Define default run optionsCMD ["mvn –offline test -Dapi=calc-service"]

Use wrapper scriptENTRYPOINT ["./run.sh"]

18

Page 19: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Tests configuration

Files sharing with VOLUMEs

Image’s argument

Environment variables

19

Page 20: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Multi-container apps

Play with custom networks

Use docker-compose or other

orchestrator

20

Page 21: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

21

Page 22: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Demo project

https://github.com/extsoft/jcat

22

Page 23: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Summary

SUT

Test infrastructure

Tests execution

23

Page 24: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Q & A

24

Page 25: Dockerizedautomated tests: profit and principles · 2019. 4. 26. · Agenda What Docker is Dockerand test automation Why dockerizedautomated tests Principles of dockerization 3

Contacts

http://extsoft.pro@[email protected]

25