Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ШРИ-2018-2 Домашняя работа Тесты. #38

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
node_modules
node_modules
html-report
.idea
.DS_Store
26 changes: 26 additions & 0 deletions .hermione.conf.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
baseUrl: 'http://0.0.0.0:3000',
gridUrl: 'http://0.0.0.0:4444/wd/hub',

sets: {
common: {
files: 'test/hermione.test.js'
}
},

browsers: {
chrome: {
desiredCapabilities: {
browserName: 'chrome',
}
}
},

screenshotsDir: 'html-report/images',

plugins: {
'html-reporter/hermione': {
enabled: true
}
}
};
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
10.12.0
44 changes: 42 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,46 @@
# Домашнее задание: автотесты

Вам дано приложение на JavaScript и нужно написать для него автотесты: интеграционные тесты на интерфейс и модульные тесты на серверную часть.
## Запуск

```sh
# Установка и запуск selenium-standalone
npm i -g selenium-stanalone
selenium-standalone install
selenium-standalone start

# Установка и запуск проекта
npm i
npm start
```

## Тесты
```sh
# Юнит тесты
npm run test:unit

# Интеграционные тесты
npm run test:hermione

# Интеграционные с GUI
npm run test:gui
```

## Логические блоки
* "Навигация"
* "Хлебные крошки" `buildBreadcrumbs`
* показывают HISTORY на списке коммитов
* показывают урл на HISTORY при вызове с хэшем (переход в коммит)
* показывают урлы на родительские директории при вызове с хэшем и путём (переход в файлы/папки)
* "Генерация урлов" `buildObjectUrl`
* возвращает урл на директорию
* возвращает урл на файл
* возвращает "хэш" в случае передачи невалидного типа
* "Взаимодействие с git" `executeGit`
* возвращает результат выполнения git команды в виде строки
* "История коммитов" `gitHistory`
* возвращает массив объектов, хранящих информацию о коммитах
* "Содержимое дерева" `gitFileTree`
* возвращает массив js-объектов, хранящих информацию об объектах в заданном git-дереве

## Предметная область

Expand Down Expand Up @@ -30,4 +70,4 @@ npm start

- нужно добавить в README список логических блоков системы и их сценариев
- для каждого блока нужно написать модульные тесты
- если необходимо, выполните рефакторинг, чтобы реорганизовать логические блоки или добавить точки расширения
- если необходимо, выполните рефакторинг, чтобы реорганизовать логические блоки или добавить точки расширения
2 changes: 1 addition & 1 deletion controllers/contentController.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { gitFileContent, gitFileTree } = require('../utils/git');
const { buildFolderUrl, buildBreadcrumbs } = require('../utils/navigation');
const { buildBreadcrumbs } = require('../utils/navigation');

module.exports = function(req, res, next) {
const { hash } = req.params;
Expand Down
16 changes: 2 additions & 14 deletions controllers/filesController.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,9 @@
const { gitFileTree } = require('../utils/git');
const {
buildFolderUrl,
buildFileUrl,
buildBreadcrumbs
buildBreadcrumbs,
buildObjectUrl
} = require('../utils/navigation');

function buildObjectUrl(parentHash, { path, type }) {
switch (type) {
case 'tree':
return buildFolderUrl(parentHash, path);
case 'blob':
return buildFileUrl(parentHash, path);
default:
return '#';
}
}

module.exports = function(req, res, next) {
const { hash } = req.params;
const pathParam = (req.params[0] || '').split('/').filter(Boolean);
Expand Down
4 changes: 2 additions & 2 deletions controllers/indexController.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const { gitHistory } = require('../utils/git');
const { buildFolderUrl, buildBreadcrumbs } = require('../utils/navigation');
const { buildObjectUrl, buildBreadcrumbs } = require('../utils/navigation');

module.exports = function(req, res) {
gitHistory(1, 20).then(
history => {
const list = history.map(item => ({
...item,
href: buildFolderUrl(item.hash, '')
href: buildObjectUrl(item.hash, { type: 'tree' })
}));

res.render('index', {
Expand Down
Loading