Skip to content

Commit d07de22

Browse files
authoredSep 26, 2024··
Merge pull request #39 from gemini-testing/TESTPLANE-246.add_vscode_extension_article
chore: write article about vscode extension
2 parents c95725e + f512854 commit d07de22

12 files changed

+259
-0
lines changed
 

‎blog/vscode-extension.mdx

+130
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
---
2+
title: Расширение для VS Code
3+
slug: vscode-extension
4+
hide_table_of_contents: false
5+
date: 2024-09-26T19:00
6+
---
7+
8+
import Admonition from "@theme/Admonition";
9+
import runTestsFromSidebarVideoUrl from "/video/blog/vscode-extension/run-tests-from-sidebar.mp4";
10+
import runTestsFromEditorVideoUrl from "/video/blog/vscode-extension/run-tests-from-editor.mp4";
11+
12+
Для Testplane реализовали расширение для [VS Code][vscode], с помощью которого можно настраивать Testplane с нуля, запускать тесты и удобно работать с <a href="/ru/docs/v8/command-line/#testplane-repl">REPL режимом</a>.
13+
14+
<!-- truncate -->
15+
16+
### Установка
17+
18+
Установите расширение со страницы [VS Code Marketplace][vscode-testplane-marketplace] или на вкладке расширений в VS Code IDE.
19+
20+
![Расширение в VS Code IDE](/img/blog/vscode-extension/testplane-in-extensions-panel.png)
21+
22+
После установки откройте VS Code в пустом проекте и в панеле управления введите:
23+
24+
```
25+
Install Testplane
26+
```
27+
28+
![Установка Testplane](/img/blog/vscode-extension/testplane-install.png)
29+
30+
### Запуск тестов
31+
32+
#### Из сайдбара в панеле для тестирования
33+
34+
Панель для тестирования можно открыть, кликнув на значок тестирования в панели действий.
35+
36+
![Открытие панели для тестирования](/img/blog/vscode-extension/testing-sidebar.png)
37+
38+
В левой части экрана отображается сайдбар с деревом всех прочитанных тестов. В дереве сверху вниз отображаются:
39+
40+
- название директории с тестами (`testplane-tests`);
41+
- название файла теста (`example.testplane.ts`);
42+
- название сьюта (`test`). В примере используется `describe` из [Mocha BDD интерфейса][mocha-bdd-interface];
43+
- название теста (`example`). В примере использует `it` из [Mocha BDD интерфейса][mocha-bdd-interface];
44+
- название браузера в котором тест будет запущен (`chrome`).
45+
46+
У каждого из элементов дерева отображается кнопка `Run Test`. Если нажать на `Run Test` у элемента:
47+
48+
- директории, файла или сьюта, то запустятся все дочерние тесты во всех браузерах;
49+
- теста, то запустится выбранный тест во всех браузерах;
50+
- браузера, то запустится один тест в одном браузере.
51+
52+
Пример запуска тестов из сайдбара:
53+
54+
<video src={runTestsFromSidebarVideoUrl} width="100%" controls="controls">
55+
Тег video не поддерживается вашим браузером.
56+
<a href="video/blog/vscode-extension/run-tests-from-sidebar.mp4">Скачайте видео</a>.
57+
</video>
58+
59+
Также можно выполнить запуск всех тестов с помощью кнопки `Run Tests`.
60+
61+
![Запуск всех тестов](/img/blog/vscode-extension/run-all-tests-from-sidebar.png)
62+
63+
#### Из текстового редактора
64+
65+
Если в текстовом редакторе открыть Testplane тест, то рядом с каждым сьютом (`describe`) и тестом (`it`) будет отображаться зеленая кнопка play для их запуска. Если нажать левой кнопкой мыши, то запустится тест во всех браузерах, и после его выполнения отобразится результат в виде иконки статуса прохождения теста.
66+
Если нажать на кнопку play правой клавишей мыши, то можно запустить тест в одном из браузеров.
67+
68+
Пример запуска тестов из текстового редактора:
69+
70+
<video src={runTestsFromEditorVideoUrl} width="100%" controls="controls">
71+
Тег video не поддерживается вашим браузером.
72+
<a href="video/blog/vscode-extension/run-tests-from-editor.mp4">Скачайте видео</a>.
73+
</video>
74+
75+
#### С настройкой `devtools`
76+
77+
В сайдбаре в панели для тестирования так же отображается секция с названием Testplane. В ней можно управлять настройками в рантайме. При клике в чекбокс `Enable devtools` и последующем запуске тестов браузеры будут подниматься с использованием CDP протокола (вне зависимости от того что указано в конфиге). Подробнее про этот режим можно прочитать <a href="/ru/docs/v8/guides/how-to-use-cdp/">тут</a>.
78+
79+
![Включение опции devtools](/img/blog/vscode-extension/enable-devtools.png)
80+
81+
#### С настройкой `REPL`
82+
83+
При клике в чекбокс `Enable REPL` и последующем запуске теста (в REPL режиме можно одновременно запустить только один тест) он будет запущен в специальном REPL режиме. Подробнее про этот режим можно прочитать <a href="/ru/docs/v8/command-line/#testplane-repl">тут</a>.
84+
85+
![Включение опции REPL](/img/blog/vscode-extension/enable-repl.png)
86+
87+
### Фильтрация тестов в сайдбаре панели тестирования
88+
89+
Чтобы в дереве отобразить только тесты в определенном браузере, необходимо ввести тег `@testplane:browser:your_browser_name` в инпут фильтрации. Чтобы появился саджест, можно просто написать `@browser`. Там же можно использовать несколько тегов.
90+
91+
![Фильтр по указанном браузеру](/img/blog/vscode-extension/filter_sidebar_by_browser.png)
92+
93+
Также в инпуте с фильтрацией можно использовать следующие значения:
94+
95+
- строка с названием элемента дерева (директория/файл/сьют/тест/браузер);
96+
- тег `@doc` - для отображения тестов из активного файла в текстовом редакторе;
97+
- тег `@openedFiles` - для отображения тестов во всех открытых файлах в текстовом редакторе;
98+
- тег `@executed` - для отображения только выполняющихся тестов;
99+
- тег `@failed` - для отображения только упавших тестов.
100+
101+
### Перезапуск окружения Testplane
102+
103+
С помощью кнопки `Refresh Tests` в сайдбаре можно перезапустить Testplane. В этом случае перечитается конфиг и тесты. Пригодится в случае, если вы добавили новый тест в файл (вотчинг тестовых файлов пока не поддерживается) или произошла какая-то критическая ошибка.
104+
Обновление дерева тестов выполняется автоматически при изменении конфига.
105+
106+
![Обновление дерева тестов](/img/blog/vscode-extension/refresh-tests.png)
107+
108+
### Требования
109+
110+
- версия testplane должна быть 8.20.0 и старше (с версиями ниже запуск тестов работать не будет).
111+
112+
### Текущие ограничения
113+
114+
- не поддержаны debug и continuous (auto-run) режимы;
115+
- нет вотчинга добавления/удаления тестов и файлов;
116+
- использование кастомных интерфейсов Mocha может приводить к некорректному отображению иконок с кнопкой play для запуска тестов из текстового редактора.
117+
118+
### Заключение
119+
120+
Данная функциональность предоставляет нашим пользователям новые возможности:
121+
122+
- возможность запуска тестов прямо из IDE и просмотр результата выполнения;
123+
- возможность максимально быстро переключится в режим `devtools` и `repl`;
124+
- автоматически подхватывать изменения, внесенные в конфиг Testplane.
125+
126+
Устанавливайте расширение Testplane для VS Code и приходите с фидбеком. В случае обнаружения проблем приходите в [issue github](https://github.com/gemini-testing/testplane/issues) — мы вам обязательно поможем!
127+
128+
[vscode]: https://code.visualstudio.com/
129+
[vscode-testplane-marketplace]: https://marketplace.visualstudio.com/items?itemName=gemini-testing.vscode-testplane
130+
[mocha-bdd-interface]: https://mochajs.org/#bdd
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
---
2+
title: Extension for VS Code
3+
slug: vscode-extension
4+
hide_table_of_contents: false
5+
date: 2024-09-26T19:00
6+
---
7+
8+
import Admonition from "@theme/Admonition";
9+
import runTestsFromSidebarVideoUrl from "/video/blog/vscode-extension/run-tests-from-sidebar.mp4";
10+
import runTestsFromEditorVideoUrl from "/video/blog/vscode-extension/run-tests-from-editor.mp4";
11+
12+
We have implemented an extension for [VS Code][vscode] for Testplane, which allows you to configure Testplane from scratch, run tests, and conveniently work with the <a href="/ru/docs/v8/command-line/#testplane-repl">REPL mode</a>.
13+
14+
<!-- truncate -->
15+
16+
### Installation
17+
18+
Install the extension from the [VS Code Marketplace][vscode-testplane-marketplace] or from the extensions tab in the VS Code IDE.
19+
20+
![Extension in VS Code IDE](/img/blog/vscode-extension/testplane-in-extensions-panel.png)
21+
22+
After installation, open VS Code in an empty project and enter in the command panel:
23+
24+
```
25+
Install Testplane
26+
```
27+
28+
![Install Testplane](/img/blog/vscode-extension/testplane-install.png)
29+
30+
### Running tests
31+
32+
#### From the sidebar in the testing panel
33+
34+
The testing panel can be opened by clicking on the testing icon in the activity bar.
35+
36+
![Opening testing panel in activity bar](/img/blog/vscode-extension/testing-sidebar.png)
37+
38+
On the left side of the screen, a sidebar displays a tree of all read tests. The tree displays from top to bottom:
39+
40+
- the name of the directory with tests (`testplane-tests`);
41+
- the name of the test file (`example.testplane.ts`);
42+
- the name of the suite (`test`). In the example, `describe` from the [Mocha BDD interface][mocha-bdd-interface] is used;
43+
- the name of the test (`example`). In the example, `it` from the [Mocha BDD interface][mocha-bdd-interface] is used;
44+
- the name of the browser in which the test will be run (`chrome`).
45+
46+
Each element in the tree has a `Run Test` button. If you click on it at the element:
47+
48+
- for a directory, file, or suite, all child tests will run in all browsers;
49+
- for a test, the selected test will run in all browsers;
50+
- for a browser, one test will run in one browser.
51+
52+
Example of running tests from the sidebar:
53+
54+
<video src={runTestsFromSidebarVideoUrl} width="100%" controls="controls">
55+
The video tag is not supported by your browser.
56+
<a href="video/blog/vscode-extension/run-tests-from-sidebar.mp4">Download the video</a>.
57+
</video>
58+
59+
You can also run all tests using the `Run Tests` button.
60+
61+
![Running all tests](/img/blog/vscode-extension/run-all-tests-from-sidebar.png)
62+
63+
#### From a text editor
64+
65+
If you open a Testplane test in the text editor, a green play button will be displayed next to each suite (`describe`) and test (`it`) for launching them. If you click the left mouse button, the test will run in all browsers, and after execution, the result will be displayed as a status icon for the test's pass/fail status.
66+
If you right-click the play button, you can run the test in one of the browsers.
67+
68+
Example of running tests from a text editor:
69+
70+
<video src={runTestsFromEditorVideoUrl} width="100%" controls="controls">
71+
The video tag is not supported by your browser.
72+
<a href="video/blog/vscode-extension/run-tests-from-editor.mp4">Download the video</a>.
73+
</video>
74+
75+
#### With the `devtools` settings
76+
77+
In the sidebar of the testing panel, there is also a section titled Testplane. Here you can manage settings at runtime. By clicking the `Enable devtools` checkbox and subsequently running tests, browsers will launch using the CDP protocol (regardless of what is specified in the config). You can read more about this mode <a href="/en/docs/v8/guides/how-to-use-cdp/">here</a>..
78+
79+
![Enabling devtools option](/img/blog/vscode-extension/enable-devtools.png)
80+
81+
#### With the `REPL` settings
82+
83+
When you click the checkbox `Enable REPL` and subsequently run a test (only one test can be run simultaneously in REPL mode), it will be launched in a special REPL mode. You can read more about this mode <a href="/ru/docs/v8/command-line/#testplane-repl">here</a>.
84+
85+
![Enabling the REPL option](/img/blog/vscode-extension/enable-repl.png)
86+
87+
### Filtering tests in the sidebar of the testing panel
88+
89+
To display only tests in a specific browser in the tree, you need to enter the tag `@testplane:browser:your_browser_name` in the filtering input. To get a suggestion, you can simply type `@browser`. You can also use multiple tags there.
90+
91+
![Filter by specified browser](/img/blog/vscode-extension/filter_sidebar_by_browser.png)
92+
93+
You can also use the following values in the filter input:
94+
95+
- a string with the name of the tree element (directory/file/suite/test/browser);
96+
- tag @doc - to display tests from the active file in the text editor;
97+
- tag @openedFiles - to display tests in all open files in the text editor;
98+
- tag @executed - to display only running tests;
99+
- tag @failed - to display only failed tests.
100+
101+
### Restarting the Testplane Environment
102+
103+
You can restart Testplane using the `Refresh Tests` button in the sidebar. In this case, the config and tests will be re-read. This will be useful if you have added a new test to a file (watching test files is not yet supported) or if a critical error has occurred. The test tree is automatically updated when the config changes.
104+
105+
![Updating the test tree](/img/blog/vscode-extension/refresh-tests.png)
106+
107+
### Requirements
108+
109+
- the Testplane version must be 8.20.0 or higher (tests will not run with lower versions).
110+
111+
### Current Limitations
112+
113+
- debug and continuous (auto-run) modes are not supported;
114+
- there is no watching for adding/removing tests and files;
115+
- using custom Mocha interfaces may lead to incorrect display of icons with the play button for running tests from the text editor.
116+
117+
### Conclusion
118+
119+
This functionality provides our users with new opportunities:
120+
121+
- the ability to run tests directly from the IDE and view the execution results;
122+
- the ability to quickly switch to devtools and REPL mode;
123+
- automatically pick up changes made to the Testplane config.
124+
125+
Install the Testplane extension for VS Code and provide us with feedback. If you encounter any issues, please visit the [GitHub issue](https://github.com/gemini-testing/testplane/issues) — we will definitely help you!
126+
127+
[vscode]: https://code.visualstudio.com/
128+
[vscode-testplane-marketplace]: https://marketplace.visualstudio.com/items?itemName=gemini-testing.vscode-testplane
129+
[mocha-bdd-interface]: https://mochajs.org/#bdd
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.