├── .gitignore ├── ARC42_DOC.md ├── LICENSE ├── README.md ├── README_german.md ├── example ├── 0_live_demo │ ├── LIVE-DEMO.md │ ├── normal-run │ │ ├── log.html │ │ ├── output.xml │ │ ├── perfbot-graphics │ │ │ ├── boxplot-01-24-2025-20-54-22-909875.png │ │ │ └── boxplot-01-24-2025-20-54-23-352049.png │ │ └── report.html │ └── slow_run │ │ ├── log.html │ │ ├── output.xml │ │ ├── perfbot-graphics │ │ ├── boxplot-01-24-2025-20-57-06-861135.png │ │ └── boxplot-01-24-2025-20-57-07-250893.png │ │ └── report.html ├── log.html ├── output.xml ├── perfbot-graphics │ ├── boxplot-01-04-2025-13-35-36-026603.png │ ├── boxplot-01-04-2025-13-35-36-462290.png │ ├── boxplot-05-19-2023-18-01-09-186797.png │ └── boxplot-05-19-2023-18-01-09-531645.png ├── report.html ├── robot-exec-times.db ├── sut │ ├── html │ │ ├── demo.css │ │ ├── error.html │ │ ├── index.html │ │ └── welcome.html │ └── server.py └── tests │ ├── invalid_login.robot │ ├── resource.robot │ └── valid_login.robot ├── perfbot ├── PerfEvalResultModifier.py ├── PerfEvalVisualizer.py ├── PersistenceService.py ├── Sqlite3PersistenceService.py ├── __init__.py ├── model.py ├── perfbot.py ├── requirements.txt ├── schema.sql └── tests │ ├── __init__.py │ ├── __main__.py │ ├── golden.xml │ ├── goldenTwice.xml │ ├── run.py │ ├── test_PerfEvalVisualizer.py │ └── test_PersistenceService.py ├── res ├── architektur_high_level.png ├── example-test-suite-summary.png ├── example-testbreaker.png ├── legende.png ├── logo.png ├── perfbot_hochkant.png ├── perfbot_laufzeitsicht_details.svg └── perfbot_laufzeitsicht_ueberblick.svg ├── setup.py └── tests ├── Testplan.md └── itests └── Integrationstest.robot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/.gitignore -------------------------------------------------------------------------------- /ARC42_DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/ARC42_DOC.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/README.md -------------------------------------------------------------------------------- /README_german.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/README_german.md -------------------------------------------------------------------------------- /example/0_live_demo/LIVE-DEMO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/LIVE-DEMO.md -------------------------------------------------------------------------------- /example/0_live_demo/normal-run/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/normal-run/log.html -------------------------------------------------------------------------------- /example/0_live_demo/normal-run/output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/normal-run/output.xml -------------------------------------------------------------------------------- /example/0_live_demo/normal-run/perfbot-graphics/boxplot-01-24-2025-20-54-22-909875.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/normal-run/perfbot-graphics/boxplot-01-24-2025-20-54-22-909875.png -------------------------------------------------------------------------------- /example/0_live_demo/normal-run/perfbot-graphics/boxplot-01-24-2025-20-54-23-352049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/normal-run/perfbot-graphics/boxplot-01-24-2025-20-54-23-352049.png -------------------------------------------------------------------------------- /example/0_live_demo/normal-run/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/normal-run/report.html -------------------------------------------------------------------------------- /example/0_live_demo/slow_run/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/slow_run/log.html -------------------------------------------------------------------------------- /example/0_live_demo/slow_run/output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/slow_run/output.xml -------------------------------------------------------------------------------- /example/0_live_demo/slow_run/perfbot-graphics/boxplot-01-24-2025-20-57-06-861135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/slow_run/perfbot-graphics/boxplot-01-24-2025-20-57-06-861135.png -------------------------------------------------------------------------------- /example/0_live_demo/slow_run/perfbot-graphics/boxplot-01-24-2025-20-57-07-250893.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/slow_run/perfbot-graphics/boxplot-01-24-2025-20-57-07-250893.png -------------------------------------------------------------------------------- /example/0_live_demo/slow_run/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/0_live_demo/slow_run/report.html -------------------------------------------------------------------------------- /example/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/log.html -------------------------------------------------------------------------------- /example/output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/output.xml -------------------------------------------------------------------------------- /example/perfbot-graphics/boxplot-01-04-2025-13-35-36-026603.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/perfbot-graphics/boxplot-01-04-2025-13-35-36-026603.png -------------------------------------------------------------------------------- /example/perfbot-graphics/boxplot-01-04-2025-13-35-36-462290.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/perfbot-graphics/boxplot-01-04-2025-13-35-36-462290.png -------------------------------------------------------------------------------- /example/perfbot-graphics/boxplot-05-19-2023-18-01-09-186797.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/perfbot-graphics/boxplot-05-19-2023-18-01-09-186797.png -------------------------------------------------------------------------------- /example/perfbot-graphics/boxplot-05-19-2023-18-01-09-531645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/perfbot-graphics/boxplot-05-19-2023-18-01-09-531645.png -------------------------------------------------------------------------------- /example/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/report.html -------------------------------------------------------------------------------- /example/robot-exec-times.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/robot-exec-times.db -------------------------------------------------------------------------------- /example/sut/html/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/sut/html/demo.css -------------------------------------------------------------------------------- /example/sut/html/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/sut/html/error.html -------------------------------------------------------------------------------- /example/sut/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/sut/html/index.html -------------------------------------------------------------------------------- /example/sut/html/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/sut/html/welcome.html -------------------------------------------------------------------------------- /example/sut/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/sut/server.py -------------------------------------------------------------------------------- /example/tests/invalid_login.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/tests/invalid_login.robot -------------------------------------------------------------------------------- /example/tests/resource.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/tests/resource.robot -------------------------------------------------------------------------------- /example/tests/valid_login.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/example/tests/valid_login.robot -------------------------------------------------------------------------------- /perfbot/PerfEvalResultModifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/PerfEvalResultModifier.py -------------------------------------------------------------------------------- /perfbot/PerfEvalVisualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/PerfEvalVisualizer.py -------------------------------------------------------------------------------- /perfbot/PersistenceService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/PersistenceService.py -------------------------------------------------------------------------------- /perfbot/Sqlite3PersistenceService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/Sqlite3PersistenceService.py -------------------------------------------------------------------------------- /perfbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perfbot/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/model.py -------------------------------------------------------------------------------- /perfbot/perfbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/perfbot.py -------------------------------------------------------------------------------- /perfbot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/requirements.txt -------------------------------------------------------------------------------- /perfbot/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/schema.sql -------------------------------------------------------------------------------- /perfbot/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/tests/__init__.py -------------------------------------------------------------------------------- /perfbot/tests/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/tests/__main__.py -------------------------------------------------------------------------------- /perfbot/tests/golden.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/tests/golden.xml -------------------------------------------------------------------------------- /perfbot/tests/goldenTwice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/tests/goldenTwice.xml -------------------------------------------------------------------------------- /perfbot/tests/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/tests/run.py -------------------------------------------------------------------------------- /perfbot/tests/test_PerfEvalVisualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/tests/test_PerfEvalVisualizer.py -------------------------------------------------------------------------------- /perfbot/tests/test_PersistenceService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/perfbot/tests/test_PersistenceService.py -------------------------------------------------------------------------------- /res/architektur_high_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/res/architektur_high_level.png -------------------------------------------------------------------------------- /res/example-test-suite-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/res/example-test-suite-summary.png -------------------------------------------------------------------------------- /res/example-testbreaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/res/example-testbreaker.png -------------------------------------------------------------------------------- /res/legende.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/res/legende.png -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/res/logo.png -------------------------------------------------------------------------------- /res/perfbot_hochkant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/res/perfbot_hochkant.png -------------------------------------------------------------------------------- /res/perfbot_laufzeitsicht_details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/res/perfbot_laufzeitsicht_details.svg -------------------------------------------------------------------------------- /res/perfbot_laufzeitsicht_ueberblick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/res/perfbot_laufzeitsicht_ueberblick.svg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/tests/Testplan.md -------------------------------------------------------------------------------- /tests/itests/Integrationstest.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perfroboter/robotframework-perfbot/HEAD/tests/itests/Integrationstest.robot --------------------------------------------------------------------------------