All Projects → se2p → tool-competition-av

se2p / tool-competition-av

Licence: other
The repository hosts the code for the SBST CPS Tool competition for testing autonomous cars.

Programming Languages

python
139335 projects - #7 most used programming language
C#
18002 projects

Projects that are alternatives of or similar to tool-competition-av

Deepdrive
Deepdrive is a simulator that allows anyone with a PC to push the state-of-the-art in self-driving
Stars: ✭ 628 (+3825%)
Mutual labels:  competition, self-driving-car
selenified
The Selenified Test Framework provides mechanisms for simply testing applications at multiple tiers while easily integrating into DevOps build environments. Selenified provides traceable reporting for both web and API testing, wraps and extends Selenium calls to more appropriately handle testing errors, and supports testing over multiple browser…
Stars: ✭ 38 (+137.5%)
Mutual labels:  test-automation
MasterAppiumFramework
Automation Testing | Mobile | Java | OOPS | Appium | TestNG | Maven | ExtentReport | Java mail API | Logging (Log4J2) | Design Patterns (Page Object Model, Singleton) | Page Factories | Jenkins | Data-Driven Testing using JSON file | Expected Data using XML file
Stars: ✭ 27 (+68.75%)
Mutual labels:  test-automation
The-Purchase-and-Redemption-Forecast-Challenge-baseline
天池“资金流入流出预测——挑战baseline”的解决方案,线上效果143.5
Stars: ✭ 78 (+387.5%)
Mutual labels:  competition
moler
Moler – library to help in building automated tests
Stars: ✭ 54 (+237.5%)
Mutual labels:  test-automation
Formula1Epoch
An autonomous R.C. racecar which detects people.
Stars: ✭ 63 (+293.75%)
Mutual labels:  self-driving-car
pydata-berlin-2017
Finding Lane Lines for Self Driving Cars
Stars: ✭ 40 (+150%)
Mutual labels:  self-driving-car
fusion-ekf
An extended Kalman Filter implementation in C++ for fusing lidar and radar sensor measurements.
Stars: ✭ 113 (+606.25%)
Mutual labels:  self-driving-car
Autonomous-RC-Car
Self-driving RC Car ROS Software
Stars: ✭ 17 (+6.25%)
Mutual labels:  self-driving-car
ROSE
ROSE project car race game
Stars: ✭ 24 (+50%)
Mutual labels:  self-driving-car
neodymium-library
A test automation library based on common other best practice open source libraries. It adds missing functionalities but does not reinvent the wheel. Just glues stuff together nicely and adds some sprinkles.
Stars: ✭ 70 (+337.5%)
Mutual labels:  test-automation
Competitive Programming
Contains solutions and codes to various online competitive programming challenges and some good problems. The links to the problem sets are specified at the beginning of each code.
Stars: ✭ 65 (+306.25%)
Mutual labels:  competition
screenpy
Screenplay pattern base for Python automated UI test suites.
Stars: ✭ 38 (+137.5%)
Mutual labels:  test-automation
featurebook
A command line tool (and Node.js library) for generating beautiful system specifications from Gherkin source files.
Stars: ✭ 40 (+150%)
Mutual labels:  test-automation
AutoMeter-API
AutoMeter-API是一款针对分布式服务,微服务API功能和性能一体的自动化测试平台,一站式解决应用,服务,API,环境管理,用例,条件,测试场景,计划,测试报告,功能/性能测试兼容支持的一体化工作平台
Stars: ✭ 105 (+556.25%)
Mutual labels:  test-automation
community-edition
Zebrunner is a Test Automation Management Tool
Stars: ✭ 171 (+968.75%)
Mutual labels:  test-automation
gtest
Go test utility library inspired by pytest
Stars: ✭ 27 (+68.75%)
Mutual labels:  test-automation
verification-tests
Blackbox test suite for OpenShift.
Stars: ✭ 41 (+156.25%)
Mutual labels:  test-automation
B2P-Penicilin-Tablut-AI
Java-based artificial intelligence that plays Tablut using Ashton's rules
Stars: ✭ 27 (+68.75%)
Mutual labels:  competition
Telegraf-Test
Telegraf Test - Simple Test ToolKit of Telegram Bots
Stars: ✭ 22 (+37.5%)
Mutual labels:  test-automation

Cyber-Physical Systems Testing Tool Competition

The SBST Workshop offers a challenge for software testers who want to work with self-driving cars in the context of the usual tool competition.

Important Dates

The deadline to submit your tool is: January 21st 2022

The results of the evaluation will be communicated to participants on: February 25th 2022

The camera-ready paper describing your tool is due to: Sunday March 18th 2020

Goal

The competitors should generate virtual roads to test a lane keeping assist system using the provided code_pipeline.

The generated roads are evaluated in the BeamNG.tech driving simulator. This simulator is ideal for researchers due to its state-of-the-art soft-body physics simulation, ease of access to sensory data, and a Python API to control the simulation.

Video by BeamNg GmbH

Note: BeamNG GmbH, the company developing the simulator, kindly offers it for free for researcher purposes upon registration (see Installation).

Comparing the Test Generators

Deciding which test generator is the best is far from trivial and, currently, remains an open challenge. In this competition, we rank test generators by considering various metrics of effectiveness and efficiency that characterize the generated tests but also the process of generating them, i.e., test generation. We believe that our approach to compare test generators is objective and fair, and it can provide a compact metric to rank them.

Ranking Formula

The formula to rank test generators is the following weighted sum:

rank = a * OOB_Coverage + b * test_generation_efficiency + c *  test_generation_effectiveness

where:

  • OOB_Coverage captures the effectiveness of the generated tests that must expose as many failures as possible (i.e., Out Of Bound episodes) but also as many different failures as possible. We compute this metric by extending the approach adopted in the previous edition of the competition with our recent work on Illumination Search. As an example, our novel approach has been already adopted for the generation of relevant test cases from existing maps (see SALVO). Therefore, we identify tests' portion relevant to the OOBs, extract their structural and behavioral features, and populate feature maps of a predefined size (i.e., 25x25 cells). Finally, we define OOB_Coverage by counting the cells in the map covered by the exposed OOBs. Larger values of OOB_Coverage identify better test generators.

  • test_generation_efficiency captures the efficiency in generating, but not executing, the tests. We measure it as the inverse of the average time it takes for the generators to create the tests normalized using the following (standard) formula:

    norm(x) = (x - min) / (max - min)

    Where min and max are values empirically found during the benchmarking as the minimum and maximum average times for generating test across all the competitors.

  • test_generation_effectiveness captures the ability of the test generator to create valid tests; therefore, we compute it as the ratio of valid tests over all the generated tests.

Setting the Weights

We set the values of the in the ranking formula's weights (i.e., a, b, and c) to rank higher the test generators that trigger many and different failures; test generation efficiency and effectiveness are given equal but secondary importance. The motivation behind this choice is that test generators' main goal is to trigger failures, while being efficient and effective in generating the tests is of second order importance.

The following table summarizes the proposed weight assignment:

a b c
0.6 0.2 0.2

Implement Your Test Generator

We make available a code pipeline that will integrate your test generator with the simulator by validating, executing and evaluating your test cases. Moreover, we offer some sample test generators to show how to use our code pipeline.

Information About the Competition

More information can be found on the SBST tool competition website: https://sbst22.github.io/tools/

Repository Structure

Code pipeline: code that integrates your test generator with the simulator

Self driving car testing library: library that helps the integration of the test input generators, our code pipeline, and the BeamNG simulator

Scenario template: basic scenario used in this competition

Documentation: contains the installation guide, detailed rules of the competition, and the frequently asked questions

Sample test generators: sample test generators already integrated with the code pipeline for illustrative purposes

Requirements: contains the list of the required packages.

License

The software we developed is distributed under GNU GPL license. See the LICENSE.md file.

Contacts

Dr. Alessio Gambi - Passau University, Germany - [email protected]

Dr. Vincenzo Riccio - Universita' della Svizzera Italiana, Lugano, Switzerland - [email protected]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].