gecko-dev/devtools/client/webconsole/test
Armando Ferreira a22a750ddc Bug 1558198 - Add history navigation buttons in Editor toolbar. r=nchevobbe
Adding History navigation to Editor toolbar

Differential Revision: https://phabricator.services.mozilla.com/D38951

--HG--
extra : moz-landing-system : lando
2019-07-23 18:36:01 +00:00
..
chrome Bug 1561435 - Format devtools/client/, a=automatic-formatting 2019-07-05 11:24:38 +02:00
components Bug 1561435 - Format devtools/client/, a=automatic-formatting 2019-07-05 11:24:38 +02:00
fixtures Bug 1543023 - Use ChromeUtils.import only with one argument in all /devtools/ r=jdescottes 2019-07-11 17:08:20 +00:00
middleware Bug 1486741 - Enable ESLint rule comma-dangle for all of mozilla-central (automatic fixes). r=mossop 2018-10-19 12:55:39 +00:00
mochitest Bug 1558198 - Add history navigation buttons in Editor toolbar. r=nchevobbe 2019-07-23 18:36:01 +00:00
store Bug 1561435 - Format devtools/client/, a=automatic-formatting 2019-07-05 11:24:38 +02:00
unit Bug 1561435 - Format devtools/client/, a=automatic-formatting 2019-07-05 11:24:38 +02:00
utils Bug 1561435 - Format devtools/client/, a=automatic-formatting 2019-07-05 11:24:38 +02:00
.eslintrc.mocha.js
helpers.js Bug 1561435 - Format devtools/client/, a=automatic-formatting 2019-07-05 11:24:38 +02:00
mocha-test-setup.js Bug 1554877 - Make JsTerm editor resizable. r=Honza. 2019-07-18 05:51:44 +00:00
moz.build
package.json Bug 1556434 - Use JSON reporter for DevTools jest tests on Try r=nchevobbe,Ola 2019-06-04 12:29:43 +00:00
README.md Bug 1312823 - Run console mocha tests on TRY. r=jdescottes. 2019-04-01 07:19:18 +00:00
yarn.lock Bug 1500987 - Elevate the new debugger one directory. r=jlast 2019-04-09 13:16:00 -04:00

Console Tests

The console panel uses currently two different frameworks for tests:

  • Mochitest - Mochitest is an automated testing framework built on top of the MochiKit JavaScript libraries. It's just one of the automated regression testing frameworks used by Mozilla.

Mochitests are located in devtools/client/webconsole/test/mochitest/ and can be run with the following command:

./mach test devtools/client/webconsole/test/mochitest/

These tests can be run on CI when pushing to TRY. Not all tests are enabled at the moment since they were copied over from the old frontend (See Bug 1400847).

  • Mocha + Enzyme - mocha Mocha is JavaScript test framework running on Node.js Enzyme is a JavaScript Testing utility for React that makes it easier to assert, manipulate, and traverse your React Components' output.

These tests are located in test/components/ and test/store/, and can be run with the following command:

cd devtools/client/webconsole/test/ && npm install && npm test

or using yarn with

cd devtools/client/webconsole/test/ && yarn && yarn test

The team is leaning towards Enzyme since it's well known and suitable for React. It's also easier to contribute to tests written on top of Enzyme.

Stubs

Many tests depends on fix data structures (aka stubs) that mimic RDP packets that represents Console logs. Stubs are stored in test/fixtures directory and you might automatically generate them.

Append new Console API stubs

See how to generate stubs for Console API calls.

  • Append new entry into consoleApiCommands array. The array is defined in this module: \test\fixtures\stub-generators\stub-snippets.js
  • Generate stubs with existing mochitest: \test\fixtures\stub-generators\browser_webconsole_check_stubs_console_api.js

Run the generator using mach command. ./mach test devtools/client/webconsole/test/fixtures/stub-generators/browser_webconsole_check_stubs_console_api.js --headless

This will override test/fixtures/stubs/consoleApi.js.

Append new CSS Messages stubs

See how to generate stubs for CSS messages.

  • Append new entry into cssMessage map into stub-snippets.js
  • Generate stubs with: browser_webconsole_check_stubs_css_message.js

This will override test/fixtures/stubs/cssMessage.js.

Append new Evaluation Result stubs

See how to generate stubs for evaluation results.

  • Append new entry into evaluationResultCommands map into stub-snippets.js
  • Generate stubs with: browser_webconsole_check_stubs_evaluation_result.js

This will override test/fixtures/stubs/evaluationResult.js.

Append new Network Events stubs

See how to generate stubs for network events

  • Append new entry into networkEvent map into stub-snippets.js
  • Generate stubs with: browser_webconsole_update_stubs_network_event.js

This will override test/fixtures/stubs/networkEvent.js.

Append new Page Error stubs

See how to generate stubs for page errors.

  • Append new entry into pageError array into stub-snippets.js
  • Generate stubs with: browser_webconsole_update_stubs_page_error.js

This will override test/fixtures/stubs/pageError.js.