Skip to content
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
Empty file.
3 changes: 3 additions & 0 deletions .allure/allure-2.20.1/config/allure-junit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
plugins:
- junit-plugin
- packages-plugin
10 changes: 10 additions & 0 deletions .allure/allure-2.20.1/config/allure.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
plugins:
- junit-xml-plugin
- xunit-xml-plugin
- trx-plugin
- behaviors-plugin
- packages-plugin
- screen-diff-plugin
- xctest-plugin
- jira-plugin
- xray-plugin
Binary file added .allure/allure-2.20.1/lib/activation-1.1.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/allure1-model-1.0.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/annotations-15.0.jar
Binary file not shown.
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/commons-codec-1.11.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/commons-io-2.11.0.jar
Binary file not shown.
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/commons-logging-1.2.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/commons-text-1.3.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions .allure/allure-2.20.1/lib/config/jetty-logging.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
org.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.LoggerLog
org.eclipse.jetty.LEVEL=WARN
12 changes: 12 additions & 0 deletions .allure/allure-2.20.1/lib/config/logback.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="stdout" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%msg%n</pattern>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="stdout"/>
</root>
<logger name="org.mortbay.log" level="INFO"/>
</configuration>
Binary file added .allure/allure-2.20.1/lib/flexmark-0.62.2.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/freemarker-2.3.31.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/httpclient-4.5.13.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/httpcore-4.4.13.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/javax.mail-1.6.2.jar
Binary file not shown.
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/jaxb-api-2.3.1.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/jaxb-utils-1.0.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/jcommander-1.82.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/logback-core-1.3.4.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/opencsv-4.6.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/properties-2.0.RC5.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/slf4j-api-2.0.3.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/snakeyaml-1.33.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/stax2-api-4.2.1.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/tika-core-2.6.0.jar
Binary file not shown.
Binary file added .allure/allure-2.20.1/lib/woodstox-core-6.4.0.jar
Binary file not shown.
1 change: 1 addition & 0 deletions .allure/allure-2.20.1/plugins/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The directory with Allure plugins. To add the plugin simply unpack it to this folder.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
id: behaviors
name: Behaviors aggregator
description: The aggregator adds behaviors tab to the report
extensions:
- io.qameta.allure.behaviors.BehaviorsPlugin
jsFiles:
- index.js
Binary file not shown.
192 changes: 192 additions & 0 deletions .allure/allure-2.20.1/plugins/behaviors-plugin/static/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,192 @@
'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.addTranslation('pl', {
tab: {
behaviors: {
name: 'Zachowania'
}
},
widget: {
behaviors: {
name: 'Funkcje według historii',
showAll: 'pokaż wszystko'
}
}
});

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
}));
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
id: custom-logo
name: Custom logo aggregator
description: The aggregator replaces default Allure logo with a custom one
cssFiles:
- styles.css
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.side-nav__brand {
background: url('custom-logo.svg') no-repeat left center !important;
margin-left: 10px;
}
5 changes: 5 additions & 0 deletions .allure/allure-2.20.1/plugins/jira-plugin/allure-plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
id: jira
name: Jira Plugin
description: The plugin that adds support for Jira integration.
extensions:
- io.qameta.allure.jira.JiraExportPlugin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
id: junit
name: JUnit Plugin
description: The plugin that adds support for results in JUnit.xml data format.
extensions:
- io.qameta.allure.junitxml.JunitXmlPlugin
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
id: packages
name: Packages aggregator
description: The aggregator adds packages tab to the report
extensions:
- io.qameta.allure.packages.PackagesPlugin
jsFiles:
- index.js
Binary file not shown.
112 changes: 112 additions & 0 deletions .allure/allure-2.20.1/plugins/packages-plugin/static/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
'use strict';

allure.api.addTranslation('en', {
tab: {
packages: {
name: 'Packages'
}
}
});

allure.api.addTranslation('ru', {
tab: {
packages: {
name: 'Пакеты'
}
}
});

allure.api.addTranslation('zh', {
tab: {
packages: {
name: '包'
}
}
});

allure.api.addTranslation('de', {
tab: {
packages: {
name: 'Pakete'
}
}
});

allure.api.addTranslation('nl', {
tab: {
packages: {
name: 'Packages'
}
}
});

allure.api.addTranslation('he', {
tab: {
packages: {
name: 'חבילות'
}
}
});

allure.api.addTranslation('br', {
tab: {
packages: {
name: 'Pacotes'
}
}
});

allure.api.addTranslation('ja', {
tab: {
packages: {
name: 'パッケージ'
}
}
});

allure.api.addTranslation('es', {
tab: {
packages: {
name: 'Paquetes'
}
}
});

allure.api.addTranslation('kr', {
tab: {
packages: {
name: '패키지'
}
}
});

allure.api.addTranslation('fr', {
tab: {
packages: {
name: 'Paquets'
}
}
});

allure.api.addTranslation('pl', {
tab: {
packages: {
name: 'Pakiety'
}
}
});

allure.api.addTab('packages', {
title: 'tab.packages.name', icon: 'fa fa-align-left',
route: 'packages(/)(:testGroup)(/)(:testResult)(/)(:testResultTab)(/)',
onEnter: (function (testGroup, testResult, testResultTab) {
return new allure.components.TreeLayout({
testGroup: testGroup,
testResult: testResult,
testResultTab: testResultTab,
tabName: 'tab.packages.name',
baseUrl: 'packages',
url: 'data/packages.json'
});
})
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
id: screen-diff
name: Screen diff
description: Who cares about description by just-boris
jsFiles:
- index.js
cssFiles:
- styles.css
Binary file not shown.
Loading