-
Notifications
You must be signed in to change notification settings - Fork 129
/
inversión.html
196 lines (162 loc) · 7.14 KB
/
inversión.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Desarrollo ágil: Inversión de dependencias</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/extra.css">
<link rel="stylesheet" href="dist/agil.css" id="theme">
<!-- 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>Desarrollo ágil</h2>
<h1>Inversión de dependencias</h1>
<h3><a href="https://jj.github.io/curso-tdd/temas/inversión"><code>jj.github.io/curso-tdd/temas/inversión</code></a></h3>
</section>
<section><h2>✓ TODO</h2>
<h2 class="fragment">□ ¿Se han integrado
tests en el gestor de tareas?</h2>
<h2 class="fragment">□ ¿Se ha configurado un
sistema de CI?</h2>
</section>
</section>
<section><h1> Roles ⇒ inversión de dependencias ⇒
mocks</h1>
<aside class="notes">Es importante aprender el concepto
de roles, porque se usan tanto en general en el diseño de
una aplicación, como en particular para hacer inyección de
dependencias, que es uno de los mecanismos que se van a usar
para hacer mocks.</aside>
</section>
<section><!-- roles -->
<section><h1>Composición frente a
herencia</h1>
<h1 class="fragment">Roles son "clases
incompletas"</h1>
</section>
<section><h1>Roles = módulos en Ruby</h1>
<pre><code data-line-numbers="1-3|6,10">module Named
attr_reader :name
end
class Project
include Named
attr_reader :issues, :milestones, :logger
def initialize( name, logger )
@name = name
@logger = logger
@issues = []
@milestones = []
end
# ... más
end</code></pre>
</section>
</section>
<section>
<section><h1>Inyectando dependencias: usando
roles</h1>
<h2 class="fragment">Desacoplando
diferentes funciones</h2>
<aside class="notes">Esto sigue el principio de
responsabilidad única, porque una clase no tiene la
lógica de negocio y los logs, la lógica de negocio y el
acceso a datos... cada clase se encarga de un tema determinado.</aside>
</section>
<section><h1>Las dependencias son
atributos en un objeto</h1>
<pre><code>unit class Project::Stored does Project;
has Project::Dator $!dator;
# Código de la clase aquí abajo</code>
</pre></section>
<section><h1>Inyectando la dependencia</h1>
<pre><code>my $dator = Project::Data::JSON.new($data-file);
my $stored = Project::Stored.new($dator);</code></pre>
</section>
</section>
<section><!-- test doubles -->
<section><h1>Usándolo en dobles de test</h1>
<h2 class="fragment">→ Sustituyen a los objetos originales</h1>
</section>
<section><h1><em>Dummies</em></h1>
<pre><code data-line-numbers="5,6|11">equire "project"
PROJECT_NAME = 'Foo'
class NoLogger
end
describe Project do
before do
@project = Project.new(PROJECT_NAME,NoLogger.new() )
end
# continúa
end</code></pre>
</section>
<section><h1><em>Stubs</em>: también con
interface</h1>
<aside class="notes">Los dummies son objetos que
se pueden usar donde se use cualquier objeto, en
lenguajes sin tipos. Los stubs también tienen el
mismo tipo o interfaz original, de forma que al
menos pueden ser llamados</aside>
</section>
<section><h1><em>Fakes</em>: clases
falsas</h1>
<pre><code>unit class Project::Data::Fake does Project::Dator;
has $!data = { "milestones" => [
{
"2" => [
{
"4" => "Closed"
},
{
"3" => "Open"
}
]
}
],
"name" => "Foo"
};</code></pre>
</section>
<section><h1>A la hora de testear</h1>
<pre><code>$dator = Project::Data::Fake.new;
$stored = Project::Stored.new($dator);</code></pre>
</section>
<section><h1>Mocks: cualquier
<em>imitador</em> de
funcionalidad</h1>
<h2 class="fragment">Los frameworks
pueden ayudar, pero no son
exclusivos.</h2>
<aside class="notes">Pueden ir desde una función
a un API completo.</aside>
</section>
</section>
<section><h1>✓ TODO hito 14</h1>
<h2 class="fragment">Comenzar a integrar los
servicios por inyección de dependencias</h2>
<h3 class="fragment">E integrar los tests correspondientes</h3>
<h3 class="fragment">Se usará el <em>checks
API</em> para comprobarlo. </h3>
</section>
</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({
hash: true,
width: "95%",
slideNumber: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>