-
Notifications
You must be signed in to change notification settings - Fork 2
/
08_frontend-testing.html
195 lines (174 loc) · 7.69 KB
/
08_frontend-testing.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!doctype html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Testowanie</title>
<meta name="description" content="Testowanie ze szczególnym naciskiem na frontend">
<meta name="author" content="Maciej Małecki">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>reveal.js</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/white.css" id="theme">
<link rel="stylesheet" href="css/custom.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Projekt i implementacja systemów webowych</h2>
<p>Testowanie automatyczne</p>
<p>(ze szczególnym naciskiem na frontend)</p>
<p>mgr inż. Maciej Małecki</p>
</section>
<section data-background-image="img/po-co-testowac.jpg">
</section>
<section>
<h3>Automatyzacja testów</h3>
<p>Użycie narzędzi (kod, skrypty, itp) do wykonywania testów oprogramowania
i ewentualnego wykrywania odchyleń od założonych wyników.</p>
</section>
<section>
<h3>Po co automatyzujemy testy?</h3>
<div class="r-hstack tile">
<div class="bcol0">Powtarzalność</div>
<div class="bcol1">Szybka informacja zwrotna</div>
<div class="bcol3">Koszty</div>
</div>
</section>
<section>
<cite>
<em>Tools don't test. Only people test. Tools only perform actions that "help" people test.</em> - James
Bach, <a href="http://www.satisfice.com/blog/">http://www.satisfice.com/blog/</a>
</cite>
</section>
<section>
<h3>Rodzaje testów automatycznych</h3>
<ul>
<li class="fragment">Testy jednostkowe (unit tests) - pisane na poziomie jednostki programistycznej
(funkcja, procedura, moduł, klasa).
</li>
<li class="fragment">Testy modułowe/komponentowe - testowanie większych, zintegrowanych
konstrukcji.
</li>
<li class="fragment">Testy integracyjne - testowanie zintegrowanych warstw, komponentów lub systemów.</li>
<li class="fragment">Testy E2E - testowanie kompletnej aplikacji.</li>
</ul>
</section>
<section>
<h3>Piramida testów</h3>
<div>
<img src="img/test-pyramid.png" alt="Test Pyramid" class="backlight">
</div>
<a href="https://martinfowler.com/articles/practical-test-pyramid.html">https://martinfowler.com/articles/practical-test-pyramid.html</a>
</section>
<section>
<h2>Testy w aplikacji webowej</h2>
<section>
<img src="img/rich-front-architecture.svg" alt="Rich frontend architecture" height="350" class="backlight">
</section>
<section>
<p>Testy jednostkowe backendu</p>
<img src="img/tests/backend-module-test.png" alt="Backend module tests" height="350" class="backlight">
</section>
<section>
<p>Testy integracyjne backendu</p>
<img src="img/tests/backend-integration-test.png" alt="Backend integration tests" height="350" class="backlight">
</section>
<section>
<p>Testy jednostkowe frontendu</p>
<img src="img/tests/frontend-unit-test.png" alt="Frontend unit tests" height="350" class="backlight">
</section>
<section>
<p>Testy komponentowe frontendu</p>
<img src="img/tests/frontend-component-test.png" alt="Frontend component tests" height="350" class="backlight">
</section>
<section>
<p>Testy E2E</p>
<img src="img/tests/e2e-test.png" alt="E2E tests" height="350" class="backlight">
</section>
</section>
<section>
<h3>Testowanie automatyczne frontendu</h3>
<p><strong>Jasmine</strong> framework testujący kod w JavaScript (ale także Ruby i
Python).
</p>
<img src="img/tests/karma-test-files.png" alt="Test files" class="backlight white">
</section>
<section>
<div class="col left">
<img src="img/tests/tested-code.png" alt="Tested code" height="400" class="backlight white">
</div>
<div class="col right">
<img src="img/tests/spec-code.png" alt="Spec code" height="400" class="backlight white">
</div>
</section>
<section>
<p>Selenium</p>
<img src="img/tests/selenium-webdriver.jpg" alt="Selenium" class="backlight white">
</section>
<section>
<h3>Testowanie E2E</h3>
<p>Protractor - narzędzie do testowania aplikacji Angular z użyciem prawdziwej przeglądarki.</p>
<img src="img/tests/protractor-example.png" alt="Protractor" height="350" class="backlight white">
</section>
<section>
<div>
<img src="img/cypress_header.png" alt="Cypress" class="backlight white">
</div>
</section>
<section>
<h3>Podsumowanie</h3>
<ul>
<li>Testy E2E (szczególnie testujące GUI) są bardzo kosztowne.</li>
<li>Dokładne testowanie całej aplikacji z użyciem E2E jest niepraktyczne.</li>
<li>Testy niskiego rzędu powinny wykonywać się szybko.</li>
<li>Uwaga na pułapki "mockowania".</li>
</ul>
</section>
<section>
<h3>Przykłady</h3>
<section>
<h4>Backend</h3>
<img src="img/tests/qr-code-backend.png" alt="Backend" height="300">
<p>
<a href="https://github.com/smellofcode/udm-documents">https://github.com/smellofcode/udm-documents</a>
</p>
</section>
<section>
<h4>Frontend</h3>
<img src="img/tests/qr-code-frontend.png" alt="Frontend" height="300">
<p>
<a href="https://github.com/modern-web-dev/ng-course-advanced-22.08.2022/tree/33-tests-fixed">https://github.com/modern-web-dev/ng-course-advanced-22.08.2022/tree/33-tests-fixed</a>
</p>
</section>
</section>
</div>
<div
id="cgLogo"
style="background: url(img/cg-logo.svg); position: absolute; bottom: 20px; left: 20px; width: 170px; height: 38px;">
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
width: 1200,
hash: true,
navigationMode: 'linear',
slideNumber: 'c/t',
// Learn about plugins: https://revealjs.com/plugins/
plugins: [RevealMarkdown, RevealHighlight, RevealNotes]
});
</script>
</body>
</html>