-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
1,122 additions
and
355 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
exec-log.txt | ||
exec.log | ||
gen.log | ||
tests/fixtures/test-report.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# language: ru | ||
|
||
Функционал: Получение отчетов в формате JUnit-xml | ||
Как Разработчик | ||
Я Хочу получать отчеты в формате JUnit.xml | ||
Чтобы проверять поведение на специализированных CI-серверах | ||
|
||
Контекст: Использование каталог тестовых фич | ||
Допустим установил каталог проекта "tests\fixtures" как текущий | ||
И удалил файл "./test-report.xml" | ||
|
||
Сценарий: Получение отчета в формате JUnit-xml для успешного теста | ||
|
||
Тогда проверка поведения фичи "БезПараметров" с передачей параметра "-junit-out ./test-report.xml" закончилась с кодом возврата 0 | ||
И файл "./test-report.xml" существует | ||
И в файле "./test-report.xml" есть строка | ||
""" | ||
<testsuites name="1bdd" time="0" tests="1" failures="0" skipped="0"> | ||
<testsuite name="Пустой функционал"> | ||
<properties /> | ||
<testcase classname="Ничего не делаем" name="я ничего не делаю" status="passed" /> | ||
<testcase classname="Ничего не делаем" name="ничего не происходит" status="passed" /> | ||
</testsuite> | ||
</testsuites> | ||
""" | ||
|
||
Сценарий: Получение отчета в формате JUnit-xml для падающего теста | ||
|
||
Тогда проверка поведения фичи "ПадающийШаг" с передачей параметра "-junit-out ./test-report.xml" закончилась с кодом возврата 2 | ||
И файл "./test-report.xml" существует | ||
И в файле "./test-report.xml" есть строка | ||
""" | ||
<testsuites name="1bdd" time="0" tests="1" failures="1" skipped="0"> | ||
<testsuite name="Выполнение фич"> | ||
<properties /> | ||
<testcase classname="После ошибочного шага следующие шаги сценария не выполняются" name="я запускаю падающий шаг с параметром "Первый падающий шаг"" status="failure"> | ||
<failure message=" | ||
""" | ||
И в файле "./test-report.xml" есть строка | ||
""" | ||
tests\fixtures\step_definitions\ПадающийШаг.os / Ошибка в строке: 21 / ЯЗапускаюПадающийШагСПараметром-Первый падающий шаг} 
&# | ||
""" | ||
И в файле "./test-report.xml" есть строка | ||
""" | ||
; ВызватьИсключение СтрШаблон("ЯЗапускаюПадающийШагСПараметром-%1", ПарамСтрока);
" /> | ||
""" | ||
|
||
Сценарий: Получение отчета в формате JUnit-xml для нереализованного теста | ||
|
||
Тогда проверка поведения фичи "НеРеализованныйШаг" с передачей параметра "-junit-out ./test-report.xml" закончилась с кодом возврата 1 | ||
И файл "./test-report.xml" существует | ||
И в файле "./test-report.xml" есть строка | ||
""" | ||
<testsuites name="1bdd" time="0" tests="1" failures="0" skipped="1"> | ||
<testsuite name="Выполнение фич"> | ||
<properties /> | ||
<testcase classname="После нереализованного шага следующие шаги сценария не выполняются" name="я запускаю нереализованный шаг" status="skipped" /> | ||
</testsuite> | ||
</testsuites> | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Реализация шагов BDD-фич/сценариев c помощью фреймворка https://github.com/artbear/1bdd | ||
|
||
Перем БДД; //контекст фреймворка 1bdd | ||
|
||
// Метод выдает список шагов, реализованных в данном файле-шагов | ||
Функция ПолучитьСписокШагов(КонтекстФреймворкаBDD) Экспорт | ||
БДД = КонтекстФреймворкаBDD; | ||
|
||
ВсеШаги = Новый Массив; | ||
|
||
ВсеШаги.Добавить("УдалилФайл"); | ||
ВсеШаги.Добавить("ФайлСуществует"); | ||
|
||
Возврат ВсеШаги; | ||
КонецФункции | ||
|
||
// Реализация шагов | ||
|
||
// Процедура выполняется перед запуском каждого сценария | ||
Процедура ПередЗапускомСценария(Знач Узел) Экспорт | ||
|
||
КонецПроцедуры | ||
|
||
// Процедура выполняется после завершения каждого сценария | ||
Процедура ПослеЗапускаСценария(Знач Узел) Экспорт | ||
|
||
КонецПроцедуры | ||
|
||
//удалил файл "./test-report.xml" | ||
Процедура УдалилФайл(Знач ПутьФайла) Экспорт | ||
УдалитьФайлы(ОбъединитьПути(ТекущийКаталог(), ПутьФайла)); | ||
КонецПроцедуры | ||
|
||
//файл "./test-report.xml" существует | ||
Процедура ФайлСуществует(Знач ПутьФайла) Экспорт | ||
Файл = Новый Файл(ОбъединитьПути(ТекущийКаталог(), ПутьФайла)); | ||
Ожидаем.Что(Файл.Существует(), СтрШаблон("Файл должен существовать, а его нет. %1", Файл.ПолноеИмя)).Равно(Истина); | ||
КонецПроцедуры |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.