You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/blog/introduction-to-react/index.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@ title: Introduction to React.js
3
3
date: '2017-05-18'
4
4
---
5
5
6
-
I've been using [React](https://facebook.github.io/react/) for a few years now. If you read my [previous post](/a-wedding-website/), then you know that it's my go-to library for creating user interfaces (including [this blog](https://github.com/colinrcummings/blog)). I was recently asked to give a presentation on React at one of the software development Meetups I attend. I opted to introduce the library, walk through a couple of core concepts (with examples), do a few ad hoc demos and then leave the audience with some additional concepts, resources and tools. Below is an overview of [Spectacle](http://formidable.com/open-source/spectacle/), the library I used to create the presentation.
6
+
I've been using [React](https://facebook.github.io/react/) for a few years now. If you read my [previous post](/a-wedding-website/), then you know that it's my go-to library for creating user interfaces (including [this blog](https://github.com/colinrobertbrooks/blog)). I was recently asked to give a presentation on React at one of the software development Meetups I attend. I opted to introduce the library, walk through a couple of core concepts (with examples), do a few ad hoc demos and then leave the audience with some additional concepts, resources and tools. Below is an overview of [Spectacle](http://formidable.com/open-source/spectacle/), the library I used to create the presentation.
Copy file name to clipboardexpand all lines: content/blog/managing-environment-workflows-with-gulp/index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ date: '2017-10-03'
5
5
6
6
Over the years, I've used a few different combinations of frameworks, libraries and tools, some of which come with environment workflows out-of-the-box and others that do not. With the [rising popularity of Node.js](https://trends.google.com/trends/explore?date=all&q=%2Fm%2F0505cl,%2Fm%2F06y_qx,%2Fm%2F0bbxf89), the need to roll one's own environment workflows is also on the rise, as is the number of resources with which to do so. I recently give a presentation about this topic at one of the software development Meetups I attend; below is an overview of the presentation, the lion's share of which was a live demo.
Below is an overview of my evolved approach to testing JavaScript applications. Also take a look at the [demo app](https://github.com/colinrcummings/testing-javascript-applications-demo) on GitHub, which puts it into practice.
20
+
Below is an overview of my evolved approach to testing JavaScript applications. Also take a look at the [demo app](https://github.com/colinrobertbrooks/testing-javascript-applications-demo) on GitHub, which puts it into practice.
21
21
22
22
_nota bene_: Testing is an immense topic; what follows is intended to be a modest contribution. It's written standing on the shoulders of giants (see references below). It contains opinions and suggestions; testing lacks hard and fast rules. The JavaScript ecosystem also marches on; tools come and go, and testing is no exception.
23
23
@@ -169,7 +169,7 @@ _Write tests for the sake of added confidence, not added coverage._
169
169
170
170
My approach to writing tests for an application depends on the portion being tested, which in turn directs the type of test that's used.
171
171
172
-
_nota bene_: This section references the demo app. Scripts can be found in the [`package.json`](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/package.json#L7) file. Organizing and naming tests is largely a matter of preference. For organizational purposes, I've co-located everything related to testing in a top-level [test](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test) directory. For nomenclature purposes, I've included the type of test in each test's file name (_i.e._, `*.unit.spec.js`, `*.integration.spec.js` and `*.e2e.spec.js`).
172
+
_nota bene_: This section references the demo app. Scripts can be found in the [`package.json`](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/package.json#L7) file. Organizing and naming tests is largely a matter of preference. For organizational purposes, I've co-located everything related to testing in a top-level [test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test) directory. For nomenclature purposes, I've included the type of test in each test's file name (_i.e._, `*.unit.spec.js`, `*.integration.spec.js` and `*.e2e.spec.js`).
173
173
174
174
### Static
175
175
@@ -185,21 +185,21 @@ For backend code, I primarily write unit tests. My goal in these tests is to val
185
185
186
186
For example:
187
187
188
-
- A [unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/controllers/views/feature_1.unit.spec.js) for a view controller ([source](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/app/controllers/views/feature_1.js)) covering all likely user authentication/authorization scenarios.
188
+
- A [unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/controllers/views/feature_1.unit.spec.js) for a view controller ([source](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/app/controllers/views/feature_1.js)) covering all likely user authentication/authorization scenarios.
189
189
190
-
- A [unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/controllers/api/access.unit.spec.js) for an API endpoint controller ([source](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/app/controllers/api/access.js)) covering all likely user authentication/authorization scenarios and an unlikely model error scenario.
190
+
- A [unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/controllers/api/access.unit.spec.js) for an API endpoint controller ([source](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/app/controllers/api/access.js)) covering all likely user authentication/authorization scenarios and an unlikely model error scenario.
191
191
192
-
- A [unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/helpers/authentication/password.unit.spec.js) for a password helper ([source](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/app/helpers/authentication/password.js)) covering all likely validation scenarios.
192
+
- A [unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/helpers/authentication/password.unit.spec.js) for a password helper ([source](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/app/helpers/authentication/password.js)) covering all likely validation scenarios.
193
193
194
194
I find `describe` blocks useful for organizing logical branches, and the arrange/act/assert pattern useful for structuring individual test blocks.
195
195
196
-
_nota bene_: Both controller unit tests utilize helpers to reduce repetition across similar tests, which can be found in the [controller-test-helpers](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test/jest/helpers/controller-test-helpers) directory.
196
+
_nota bene_: Both controller unit tests utilize helpers to reduce repetition across similar tests, which can be found in the [controller-test-helpers](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test/jest/helpers/controller-test-helpers) directory.
197
197
198
198
#### Frontend
199
199
200
200
For frontend code, I primarily write integration tests. My goal in these tests is to validate DOM output resulting from a combination of likely API response and user interaction scenarios.
201
201
202
-
Take the Manage Users view ([source](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/app/assets/javascripts/client/manage_users/manage_users.js)) as an example, which renders a list of users in addition to providing a means of creating, updating and deleting users. To test the UI for this view, I start with an [integration test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/Root.integration.spec.js) that mounts the `<Root/>` component via a custom renderer exposing react-testing-library's utilities as well as some additional helpers for common actions and assertions. The test cases, which are written in the same way a manual tester would perform them, cover the following scenarios:
202
+
Take the Manage Users view ([source](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/app/assets/javascripts/client/manage_users/manage_users.js)) as an example, which renders a list of users in addition to providing a means of creating, updating and deleting users. To test the UI for this view, I start with an [integration test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/Root.integration.spec.js) that mounts the `<Root/>` component via a custom renderer exposing react-testing-library's utilities as well as some additional helpers for common actions and assertions. The test cases, which are written in the same way a manual tester would perform them, cover the following scenarios:
203
203
204
204
- Initial list of users
205
205
@@ -227,23 +227,23 @@ Take the Manage Users view ([source](https://github.com/colinrcummings/testing-j
227
227
228
228
Collectively, these scenarios exercise the majority of the UI's functionality, in addition to simulating all of the errors that the API can return. Integration testing the entire component tree in this way not only covers a lot of code, it also gives me more confidence that everything is working together properly than testing each component in isolation would. That being said, it doesn't cover everything, so I augment the integration test with a few unit tests covering:
229
229
230
-
- Validation on the create user form ([unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/container/UserCreateFormContainer.unit.spec.js))
231
-
- Validation and optional password on the update user form ([unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/container/UserUpdateFormContainer.unit.spec.js))
232
-
- Admin users cannot be deleted ([unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/presentational/UserDeleteModalToggle.unit.spec.js))
230
+
- Validation on the create user form ([unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/container/UserCreateFormContainer.unit.spec.js))
231
+
- Validation and optional password on the update user form ([unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/container/UserUpdateFormContainer.unit.spec.js))
232
+
- Admin users cannot be deleted ([unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/presentational/UserDeleteModalToggle.unit.spec.js))
233
233
234
234
### End-to-end
235
235
236
236
While end-to-end tests are the slowest type of test because they must be run serially against a running server, they also provide the highest level of confidence. End-to-end tests cover the entire application, including gaps left by other types of tests, such as the interactions between controllers and models, which are mocked out in unit tests, and the interactions between UIs and APIs, which are mocked out in integration tests. Additionally, because end-to-end tests run in a browser environment, they're a good place to cover routers, which are tightly coupled to HTTP requests.
237
237
238
238
End-to-end tests can be run in headless mode with the `test:e2e` command or in interactive mode with the `test:e2e:interactive` command. Organizationally, I like to structure them as follows:
239
239
240
-
-[Authentication](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test/cypress/specs/authentication), which cover the entire login and logout flows as well as access to views requiring user authentication.
240
+
-[Authentication](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test/cypress/specs/authentication), which cover the entire login and logout flows as well as access to views requiring user authentication.
241
241
242
-
-[Authorization](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test/cypress/specs/authorization), which cover access to views requiring user authorization.
242
+
-[Authorization](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test/cypress/specs/authorization), which cover access to views requiring user authorization.
243
243
244
-
-[Shared](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test/cypress/specs/shared), which cover elements that are present on all of the views (_e.g._, the navbar and footer).
244
+
-[Shared](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test/cypress/specs/shared), which cover elements that are present on all of the views (_e.g._, the navbar and footer).
245
245
246
-
-[Views](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test/cypress/specs/views), which cover the happy paths for each view.
246
+
-[Views](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test/cypress/specs/views), which cover the happy paths for each view.
247
247
248
248
Structuring end-to-end tests in this way is inspired by [this talk](https://youtu.be/5XQOK0v_YRE) by [Brian Mann](https://twitter.com/be_mann) (the creator of Cypress), which covers organization as well as some other [best practices](https://docs.cypress.io/guides/references/best-practices.html) for testing with Cypress.
249
249
@@ -302,6 +302,6 @@ The following people have helped shape my thinking about software testing.
302
302
303
303
## Feedback
304
304
305
-
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrcummings](https://twitter.com/colinrcummings)).
305
+
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrbrooks](https://twitter.com/colinrbrooks)).
0 commit comments