Skip to content

Commit

Permalink
deploy: f751d71
Browse files Browse the repository at this point in the history
  • Loading branch information
cthulhu-rider committed Jul 21, 2023
1 parent ced2021 commit 8935c93
Show file tree
Hide file tree
Showing 39 changed files with 714 additions and 1 deletion.
40 changes: 40 additions & 0 deletions 332/app.js

Large diffs are not rendered by default.

Empty file added 332/data/behaviors.csv
Empty file.
5 changes: 5 additions & 0 deletions 332/data/behaviors.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"uid" : "b1a8273437954620fa374b796ffaacdd",
"children" : [ ],
"name" : "behaviors"
}
Empty file added 332/data/categories.csv
Empty file.
5 changes: 5 additions & 0 deletions 332/data/categories.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"uid" : "4b4757e66a1912dae1a509f688f20b0f",
"children" : [ ],
"name" : "categories"
}
5 changes: 5 additions & 0 deletions 332/data/packages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"uid" : "83edc06c07f9ae9e47eb6dd1b683e4e2",
"children" : [ ],
"name" : "packages"
}
Empty file added 332/data/suites.csv
Empty file.
5 changes: 5 additions & 0 deletions 332/data/suites.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"uid" : "98d3104e051c652961429bf95fa0b5d6",
"children" : [ ],
"name" : "suites"
}
5 changes: 5 additions & 0 deletions 332/data/timeline.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"uid" : "ab17fc5a4eb3bca4b216b548c7f9fcbc",
"children" : [ ],
"name" : "timeline"
}
11 changes: 11 additions & 0 deletions 332/export/influxDbData.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
launch_status failed=0 1689933051000000000
launch_status broken=0 1689933051000000000
launch_status passed=0 1689933051000000000
launch_status skipped=0 1689933051000000000
launch_status unknown=0 1689933051000000000
launch_time duration=0 1689933051000000000
launch_time min_duration=0 1689933051000000000
launch_time max_duration=0 1689933051000000000
launch_time sum_duration=0 1689933051000000000
launch_retries retries=0 1689933051000000000
launch_retries run=0 1689933051000000000
10 changes: 10 additions & 0 deletions 332/export/mail.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Allure Report summary mail</title>
</head>
<body>
Mail body
</body>
</html>
11 changes: 11 additions & 0 deletions 332/export/prometheusData.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
launch_status_failed 0
launch_status_broken 0
launch_status_passed 0
launch_status_skipped 0
launch_status_unknown 0
launch_time_duration 0
launch_time_min_duration 0
launch_time_max_duration 0
launch_time_sum_duration 0
launch_retries_retries 0
launch_retries_run 0
Binary file added 332/favicon.ico
Binary file not shown.
3 changes: 3 additions & 0 deletions 332/history/categories-trend.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[ {
"data" : { }
} ]
3 changes: 3 additions & 0 deletions 332/history/duration-trend.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[ {
"data" : { }
} ]
10 changes: 10 additions & 0 deletions 332/history/history-trend.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[ {
"data" : {
"failed" : 0,
"broken" : 0,
"skipped" : 0,
"passed" : 0,
"unknown" : 0,
"total" : 0
}
} ]
1 change: 1 addition & 0 deletions 332/history/history.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ }
6 changes: 6 additions & 0 deletions 332/history/retry-trend.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[ {
"data" : {
"run" : 0,
"retry" : 0
}
} ]
23 changes: 23 additions & 0 deletions 332/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta charset="utf-8">
<title>Allure Report</title>
<link rel="favicon" href="favicon.ico?v=2">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" href="plugins/screen-diff/styles.css">
</head>
<body>
<div id="alert"></div>
<div id="content">
<span class="spinner">
<span class="spinner__circle"></span>
</span>
</div>
<div id="popup"></div>
<script src="app.js"></script>
<script src="plugins/behaviors/index.js"></script>
<script src="plugins/packages/index.js"></script>
<script src="plugins/screen-diff/index.js"></script>
</body>
</html>
178 changes: 178 additions & 0 deletions 332/plugins/behaviors/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,178 @@
'use strict';

allure.api.addTranslation('en', {
tab: {
behaviors: {
name: 'Behaviors'
}
},
widget: {
behaviors: {
name: 'Features by stories',
showAll: 'show all'
}
}
});

allure.api.addTranslation('ru', {
tab: {
behaviors: {
name: 'Функциональность'
}
},
widget: {
behaviors: {
name: 'Функциональность',
showAll: 'показать все'
}
}
});

allure.api.addTranslation('zh', {
tab: {
behaviors: {
name: '功能'
}
},
widget: {
behaviors: {
name: '特性场景',
showAll: '显示所有'
}
}
});

allure.api.addTranslation('de', {
tab: {
behaviors: {
name: 'Verhalten'
}
},
widget: {
behaviors: {
name: 'Features nach Stories',
showAll: 'Zeige alle'
}
}
});

allure.api.addTranslation('nl', {
tab: {
behaviors: {
name: 'Functionaliteit'
}
},
widget: {
behaviors: {
name: 'Features en story’s',
showAll: 'Toon alle'
}
}
});

allure.api.addTranslation('he', {
tab: {
behaviors: {
name: 'התנהגויות'
}
},
widget: {
behaviors: {
name: 'תכונות לפי סיפורי משתמש',
showAll: 'הצג הכול'
}
}
});

allure.api.addTranslation('br', {
tab: {
behaviors: {
name: 'Comportamentos'
}
},
widget: {
behaviors: {
name: 'Funcionalidades por história',
showAll: 'Mostrar tudo'
}
}
});

allure.api.addTranslation('ja', {
tab: {
behaviors: {
name: '振る舞い'
}
},
widget: {
behaviors: {
name: 'ストーリー別の機能',
showAll: '全て表示'
}
}
});

allure.api.addTranslation('es', {
tab: {
behaviors: {
name: 'Funcionalidades'
}
},
widget: {
behaviors: {
name: 'Funcionalidades por Historias de Usuario',
showAll: 'mostrar todo'
}
}
});

allure.api.addTranslation('kr', {
tab: {
behaviors: {
name: '동작'
}
},
widget: {
behaviors: {
name: '스토리별 기능',
showAll: '전체 보기'
}
}
});

allure.api.addTranslation('fr', {
tab: {
behaviors: {
name: 'Comportements'
}
},
widget: {
behaviors: {
name: 'Thèmes par histoires',
showAll: 'Montrer tout'
}
}
});

allure.api.addTab('behaviors', {
title: 'tab.behaviors.name', icon: 'fa fa-list',
route: 'behaviors(/)(:testGroup)(/)(:testResult)(/)(:testResultTab)(/)',
onEnter: (function (testGroup, testResult, testResultTab) {
return new allure.components.TreeLayout({
testGroup: testGroup,
testResult: testResult,
testResultTab: testResultTab,
tabName: 'tab.behaviors.name',
baseUrl: 'behaviors',
url: 'data/behaviors.json',
csvUrl: 'data/behaviors.csv'
});
})
});

allure.api.addWidget('widgets', 'behaviors', allure.components.WidgetStatusView.extend({
rowTag: 'a',
title: 'widget.behaviors.name',
baseUrl: 'behaviors',
showLinks: true
}));
Loading

0 comments on commit 8935c93

Please sign in to comment.