-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
668 lines (554 loc) · 27.6 KB
/
index.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test logiciel : Passé, Présent, Futur | William Durand</title>
<link rel="stylesheet" href="reveal.js/css/reveal.min.css">
<link rel="stylesheet" href="css/theme.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="css/mono-blue.css">
<link rel="stylesheet" href="fontawesome/css/font-awesome.min.css">
<!--
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/fix-fontawesome-reveal-js.css">
-->
<link rel="stylesheet" href="css/custom.css">
<script>
if (window.location.search.match(/print-pdf/gi)) {
document.write('<link rel="stylesheet" href="css/pdf.css" type="text/css">');
}
</script>
<!--[if lt IE 9]>
<script src="reveal.js/lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<img src="images/forumphp-logo.png" id="logo" />
<div class="reveal">
<div class="slides">
<section>
<h1 class="title">Software Testing:<br>Past, Present, Future</h1>
<em>William Durand - October 23rd, 2014</em>
</section>
<section data-markdown>
<script type="text/template">
**Software Testing** is the process of executing
<br>a program or system with the intent of finding errors.
<br>
However, "testing shows the presence,
<br>not the absence of bugs" (Dijkstra).
</script>
</section>
<section>
<section data-markdown>
<script type="text/template">
# Past
/pɑːst/
</script>
</section>
<section data-markdown>
<script type="text/template">
## Testing was...
<br>
* Expensive ($$$)
* Time consuming
* Complicated
</script>
</section>
<section data-markdown>
<script type="text/template">
## Tools, tools, tools
</script>
</section>
<section data-markdown>
<script type="text/template">
## PHPUnit
by Sebastian Bergmann ©
<br>
<i class="fa fa-github"></i> [sebastianbergmann/phpunit](https://github.com/sebastianbergmann/phpunit)
(Alternative: [atoum/atoum](https://github.com/atoum/atoum))
</script>
</section>
<section data-markdown>
<script type="text/template">
### Extend It!
<br>
<i class="fa fa-github"></i> [etsy/phpunit-extensions](https://github.com/etsy/phpunit-extensions)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Mockery
```
class MockeryTest extends \PHPUnit_Framework_TestCase
{
public function testGetsAverageTemperatureFromThreeServiceReadings()
{
$service = \Mockery::mock('service');
$service
->shouldReceive('readTemp')
->times(3)
->andReturn(10, 12, 14);
$temperature = new Temperature($service);
$this->assertEquals(12, $temperature->average());
}
}
```
<i class="fa fa-github"></i> [padraic/mockery](https://github.com/padraic/mockery)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Prophecy
``` php
$prophet = new Prophecy\Prophet();
$prophecy = $prophet->prophesize();
$prophecy->willExtend('stdClass');
$dummy = $prophecy->reveal();
// fake
$prophecy->read(Argument::type('string'));
$fake = $prophecy->reveal();
// stub
$prophecy->read('123')->willReturn('value');
$stub = $prophecy->reveal();
// mock
$prophecy->read()->shouldBeCalled();
// spy
$prophecy->read()->shouldHaveBeenCalled();
```
<i class="fa fa-github"></i> [phpspec/prophecy](https://github.com/phpspec/prophecy)
</script>
</section>
<section data-markdown>
<script type="text/template">
## More?
<p class="fragment"><br>Wanna use PHPUnit with Prophecy and Atoum asserters?</p>
<p class="fragment">
<br>
<i class="fa fa-github"></i> [hautelook/frankenstein](https://github.com/hautelook/frankenstein)
</p>
</script>
</section>
<section data-markdown>
<script type="text/template">
## vfsStream
Mocking file system since 2007.
<br>
<i class="fa fa-github"></i> [mikey179/vfsStream](https://github.com/mikey179/vfsStream)
</script>
</section>
<section data-markdown>
<script type="text/template">
### Example
``` php
class VfsStreamTest extends \PHPUnit_Framework_TestCase
{
protected function setUp()
{
$this->cacheDir = vfsStream::setup('cache');
$this->repository = new YamlUserRepository(
vfsStream::url('cache/users.yml')
);
}
public testAddSerializesUserIntoYaml()
{
$this->repository->add(new User('John', 'Doe'));
$this->assertEquals(
'- { first_name: "John", last_name: "Doe" }',
$this->cacheDir->getChild('users.yml')->getContent()
);
}
}
```
</script>
</section>
<section data-markdown>
<script type="text/template">
## Tests As Documentation
</script>
</section>
<section data-markdown>
<script type="text/template">
### TestDox
```
class EmailParserTest extends \PHPUnit_Framework_TestCase
{
public function testReadsSimpleBody() { ... }
public function testRecognizesDateStringAboveQuote() { ... }
public function testDoesNotModifyInputString() { ... }
public function testDealsWithMultilineReplyHeaders() { ... }
}
```
<i class="fa fa-arrow-down"></i>
```
$ phpunit --testdox
EmailReplyParser\Tests\Parser\EmailParser
[x] Reads simple body
[x] Recognizes date string above quote
[x] Does not modify input string
[x] Deals with multiline reply headers
```
<i class="fa fa-book"></i> [Introducing BDD](http://dannorth.net/introducing-bdd/), Dan North (2006)
</script>
</section>
<section data-markdown>
<script type="text/template">
### Behat
Story BDD since [2010](https://github.com/Behat/Behat/commit/1932e46e420fcd9c48d7c67a59b347fb0b3eda3d).
<br>
```
Feature: ls
In order to see the directory structure
As a UNIX user
I need to be able to list the current directory's contents
Scenario: List 2 files in a directory
Given I am in a directory "test"
And I have a file named "foo"
And I have a file named "bar"
When I run "ls"
Then I should get:
"""
bar
foo
"""
```
<i class="fa fa-github"></i> [Behat/Behat](https://github.com/Behat/Behat)
</script>
</section>
<section data-markdown>
<script type="text/template">
### phpspec
Spec BDD since [2007](https://github.com/phpspec/phpspec/commit/4cc2fe82d089bd8904b3168e7ab62b552d9e54f9), yep!
<br>
``` php
class MarkdownSpec extends ObjectBehavior
{
function it_converts_plain_text_to_html_paragraphs()
{
$this->toHtml("Hi, there")->shouldReturn("<p>Hi, there</p>");
}
}
```
<i class="fa fa-github"></i> [phpspec/phpspec](https://github.com/phpspec/phpspec)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Hooray!?
<p class="fragment">Not really.</p>
</script>
</section>
</section>
<section>
<section data-markdown>
<script type="text/template">
# Present
/ˈpreznt/
</script>
</section>
<section data-markdown>
<script type="text/template">
## Testing is...
<br>
* Slow
* Manual
* But, trending (hype?)
</script>
</section>
<section data-markdown class="no-bullets">
<script type="text/template">
## Testing, In Parallel
<br>
* <i class="fa fa-github"></i>
[grosser/parallel](https://github.com/grosser/parallel) (Ruby tool!)
* <i class="fa fa-github"></i> [brianium/paratest](https://github.com/brianium/paratest)
* <i class="fa fa-github"></i> [liuggio/fastest](https://github.com/liuggio/fastest)
</script>
</section>
<section data-markdown class="no-border">
<script type="text/template">
## Continuous Integration
</script>
</section>
<section data-markdown class="no-border">
<script type="text/template">
## Record & Replay
</script>
</section>
<section data-markdown>
<script type="text/template">
### PHP•VCR
```
class PhpVcrTest extends \PHPUnit_Framework_TestCase
{
/**
* @vcr unittest_annotation_test
*/
public function testInterceptsWithAnnotations()
{
// Requests are intercepted and stored into:
// `tests/fixtures/unittest_annotation_test`
$content = file_get_contents('http://google.com');
$this->assertEquals('some content', $content);
// VCR is automatically turned on and off
}
}
```
<i class="fa fa-github"></i> [php-vcr/php-vcr](https://github.com/php-vcr/php-vcr)
</script>
</section>
<section data-markdown>
<script type="text/template">
### Gor
HTTP traffic replication tool, written in Go.
![](images/gor-principle.png)
<i class="fa fa-github"></i> [buger/gor](https://github.com/buger/gor)
</script>
</section>
<section data-markdown class="no-border">
<script type="text/template">
## It is not only about testing your code.
</script>
</section>
<section data-markdown class="no-border">
<script type="text/template">
## But rather, testing **everything**.
</script>
</section>
<section data-markdown class="no-border">
<script type="text/template">
## Security Testing
<br>
* [sqlmap](http://sqlmap.org/), automatic SQL injection tool
* [Zapr](https://github.com/garethr/zapr), security scanner
* [SensioLabs Security Checker](https://security.sensiolabs.org/)
</script>
</section>
<section data-markdown class="no-border">
<script type="text/template">
## Web Acceptance Testing
</script>
</section>
<section data-markdown>
<script type="text/template">
### Mink
```
$driver = new \Behat\Mink\Driver\GoutteDriver();
$session = new \Behat\Mink\Session($driver);
$session->start();
$session->visit('http://williamdurand.fr');
echo "Status code: ". $session->getStatusCode() . "\n";
echo "Current URL: ". $session->getCurrentUrl() . "\n";
$page = $session->getPage();
$anchorEl = $page->find('css', 'h3 a.title');
```
<i class="fa fa-github"></i> [Behat/Mink](https://github.com/Behat/Mink)
</script>
</section>
<section data-markdown class="no-border">
<script type="text/template">
![](images/saucelabs-logo.png)
<br>
<i class="fa fa-github"></i> [jlipps/sausage](https://github.com/jlipps/sausage)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Fuzzy Testing
</script>
</section>
<section data-markdown>
<script type="text/template">
### gremlins.js
![](images/gremlins.gif)
<i class="fa fa-github"></i> [marmelab/gremlins.js](https://github.com/marmelab/gremlins.js)
</script>
</section>
<section data-markdown>
<script type="text/template">
## But also
<br>
* Infrastructure Testing
* Smoke Testing ([smoke.sh](https://github.com/asm89/smoke.sh))
* Robustness Testing
* Actually, <i class="fa fa-asterisk"></i> Testing
</script>
</section>
</section>
<section>
<section data-markdown>
<script type="text/template">
# Future
/ˈfjuːtʃəʳ/
</script>
</section>
<section data-markdown>
<script type="text/template">
## Testing will be...
<br>
* Automated!
* More formal
</script>
</section>
<section data-markdown>
<script type="text/template">
## Disclaimer
<br>
The following techniques are not really "new"<br>from a research point of view.
</script>
</section>
<section data-markdown>
<script type="text/template">
## Model-based Testing
</script>
</section>
<section>
<img src="images/spotify.png" class="no-border" />
</section>
<section data-markdown>
<script type="text/template">
### _1_ Model <i class="fa fa-arrow-right"></i> _N_ Implementations
</script>
</section>
<section data-markdown>
<script type="text/template">
### Model
![](images/graphwalker-login-first.png)
<br>
<i class="fa fa-wrench"></i> [yEd Graph Editor](http://www.yworks.com/en/products/yfiles/yed/)
</script>
</section>
<section data-markdown>
<script type="text/template">
### Code Generation
```
public interface Login {
public void e_Init();
public void v_ClientNotRunning();
public void e_StartClient();
public void v_LoginPrompted();
public void e_ValidPremiumCredentials();
public void v_Browse();
}
```
<br>
<i class="fa fa-wrench"></i> [GraphWalker](http://graphwalker.org/)
</script>
</section>
<section data-markdown>
<script type="text/template">
### Interaction With The SUT
``` java
public class SimpleTest extends ExecutionContext implements Login {
@Override
public void e_Init() { ... }
...
@Test
public void runSmokeTest() { ... }
@Test
public void runFunctionalTest() { ... }
}
```
<br>
<i class="fa fa-wrench"></i> Java/JUnit, Robotium, Selenium, Appium, etc.
</script>
</section>
<section data-markdown class="no-border">
<script type="text/template">
### Sikuli
![](images/sikuli-1.png)
<i class="fa fa-arrow-down"></i>
![](images/sikuli-2.png)
<i class="fa fa-book"></i> [http://www.sikuli.org/](http://www.sikuli.org/)
</script>
</section>
<section data-markdown class="no-border">
<script type="text/template">
### Results
![](images/spotify-trs.png)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Automated Model Generation
<p class="fragment">Story of my life.</p>
</script>
</section>
<section data-markdown>
<script type="text/template">
## Contract-based Testing
</script>
</section>
<section data-markdown>
<script type="text/template">
### Praspel
The missing specification language for PHP.
```
/**
* @requires t : array([to integer()],boundinteger(5,10)) and
* i : integer();
* @ensures \result : boolean();
* @throwable FooException
*/
public function find($t, $i)
{
// ...
}
```
<i class="fa fa-github"></i> [hoaproject/Praspel](https://github.com/hoaproject/Praspel)
</script>
</section>
</section>
<section data-markdown>
<script type="text/template">
## Recap'
<br>
* **Congrats** for understanding the need for testing
* Testing is more than using existing tools
* **Test automation** is part of your future, start now!
</script>
</section>
<section data-markdown>
<script type="text/template">
## Thank You.
### Questions?
<br>
<br>
<ul class="me">
<li>
<p><i class="fa fa-comments-o"></i><a href="https://joind.in/11953" title="joindin">joind.in/11953</a></p>
</li>
<li>
<p><i class="fa fa-globe"></i><a href="http://williamdurand.fr" title="website">williamdurand.fr</a></p>
</li>
<li>
<p><i class="fa fa-github"></i><a href="https://github.com/willdurand" title="github">github.com/willdurand</a></p>
</li>
<li>
<p><i class="fa fa-twitter"></i><a href="https://twitter.com/couac" title="twitter">twitter.com/couac</a></p>
</li>
</ul>
</script>
</section>
</div>
</div>
<script type="text/javascript" src="reveal.js/lib/js/head.min.js"></script>
<script type="text/javascript" src="reveal.js/js/reveal.min.js"></script>
<script type="text/javascript">
Reveal.initialize({
slideNumber: !window.location.search.match(/print-pdf/gi),
history: true,
theme: Reveal.getQueryHash().theme,
transition: Reveal.getQueryHash().transition || 'concave',
dependencies: [
{ src: 'reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'js/highlight.js', async: true, callback: function() {
hljs.initHighlightingOnLoad();
} },
]
});
</script>
</body>
</html>