forked from wibotic/wibotic-ros-can-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added precommit | Added integration tests
Signed-off-by: Jakub Delicat <[email protected]>
- Loading branch information
Showing
7 changed files
with
227 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Language: Cpp | ||
BasedOnStyle: Google | ||
|
||
AccessModifierOffset: -2 | ||
AlignAfterOpenBracket: AlwaysBreak | ||
BraceWrapping: | ||
AfterClass: true | ||
AfterFunction: true | ||
AfterNamespace: true | ||
AfterStruct: true | ||
BreakBeforeBraces: Custom | ||
ColumnLimit: 100 | ||
ConstructorInitializerIndentWidth: 0 | ||
ContinuationIndentWidth: 2 | ||
DerivePointerAlignment: false | ||
PointerAlignment: Middle | ||
ReflowComments: true | ||
IncludeBlocks: Preserve | ||
AlignOperands: true | ||
PenaltyBreakAssignment: 21 | ||
PenaltyBreakBeforeFirstCallParameter: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__pycache__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
hooks: | ||
- id: check-added-large-files | ||
# mesh files has to be taken into account | ||
args: ["--maxkb=3000"] | ||
- id: check-ast | ||
- id: check-json | ||
# vscode .json files do not follow the standard JSON format | ||
exclude: ^.vscode/ | ||
- id: check-merge-conflict | ||
- id: check-symlinks | ||
- id: check-xml | ||
- id: check-yaml | ||
- id: debug-statements | ||
- id: destroyed-symlinks | ||
- id: detect-private-key | ||
- id: end-of-file-fixer | ||
- id: fix-byte-order-marker | ||
- id: name-tests-test | ||
- id: mixed-line-ending | ||
- id: trailing-whitespace | ||
|
||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
args: ["--profile", "black"] | ||
|
||
- repo: https://github.com/cheshirekow/cmake-format-precommit | ||
rev: v0.6.13 | ||
hooks: | ||
- id: cmake-format | ||
|
||
- repo: https://github.com/pre-commit/mirrors-clang-format | ||
rev: v18.1.8 | ||
hooks: | ||
- id: clang-format | ||
|
||
- repo: https://github.com/codespell-project/codespell | ||
rev: v2.3.0 | ||
hooks: | ||
- id: codespell | ||
name: codespell | ||
description: Checks for common misspellings in text files. | ||
entry: codespell | ||
args: | ||
[ | ||
"--ignore-words-list", | ||
"ned" # north, east, down (NED) | ||
] | ||
exclude_types: [rst, svg] | ||
language: python | ||
types: [text] | ||
|
||
- repo: https://github.com/jumanjihouse/pre-commit-hook-yamlfmt | ||
rev: 0.2.3 | ||
hooks: | ||
- id: yamlfmt | ||
files: ^.github|./\.yaml | ||
args: [--mapping, '2', --sequence, '4', --offset, '2', --width, '100'] | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 24.8.0 | ||
hooks: | ||
- id: black | ||
args: ["--line-length=99"] | ||
|
||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 7.1.1 | ||
hooks: | ||
- id: flake8 | ||
args: | ||
["--ignore=E501,W503"] # ignore too long line and line break before binary operator, | ||
# black checks it | ||
|
||
- repo: local | ||
hooks: | ||
- id: ament_copyright | ||
name: ament_copyright | ||
description: Check if copyright notice is available in all files. | ||
stages: [commit] | ||
entry: ament_copyright | ||
language: system | ||
|
||
# Docs - RestructuredText hooks | ||
- repo: https://github.com/PyCQA/doc8 | ||
rev: v1.1.1 | ||
hooks: | ||
- id: doc8 | ||
args: ["--max-line-length=100", "--ignore=D001"] | ||
exclude: ^.*\/CHANGELOG\.rst/.*$ | ||
|
||
- repo: https://github.com/tier4/pre-commit-hooks-ros | ||
rev: v0.10.0 | ||
hooks: | ||
- id: prettier-package-xml | ||
- id: sort-package-xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,9 +14,16 @@ | |
|
||
<author email="[email protected]">Jakub Delicat</author> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<depend>rclcpp</depend> | ||
<depend>wibotic_msgs</depend> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
<test_depend>ament_cmake_gtest</test_depend> | ||
<test_depend>google-mock</test_depend> | ||
<test_depend>ros_testing</test_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
wibotic_connector_can/test/integration/wibotic_connector_can.test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Copyright 2024 Husarion sp. z o.o. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
import unittest | ||
|
||
import launch | ||
import launch_testing | ||
import pytest | ||
from launch import LaunchDescription | ||
from launch_ros.actions import Node | ||
from launch_testing_ros import WaitForTopics | ||
from wibotic_msgs.msg import WiboticInfo | ||
|
||
|
||
@pytest.mark.launch_test | ||
def generate_test_description(): | ||
|
||
wibotic_connector_can = Node( | ||
package="wibotic_connector_can", | ||
executable="wibotic_connector_can", | ||
) | ||
|
||
# Start test after 1s | ||
delay_timer = launch.actions.TimerAction( | ||
period=1.0, actions=[launch_testing.actions.ReadyToTest()] | ||
) | ||
|
||
actions = [wibotic_connector_can, delay_timer] | ||
|
||
context = {} | ||
|
||
return ( | ||
LaunchDescription(actions), | ||
context, | ||
) | ||
|
||
|
||
class TestNodeInitialization(unittest.TestCase): | ||
def test_initialization_log(self, proc_output): | ||
proc_output.assertWaitFor("Node initialized successfully.") | ||
|
||
|
||
class TestNode(unittest.TestCase): | ||
def test_msg(self): | ||
topic_list = [("/wibotic_info", WiboticInfo)] | ||
|
||
with WaitForTopics(topic_list, timeout=4.0) as wait_for_topics: | ||
received_topics_str = ", ".join(wait_for_topics.topics_received()) | ||
print("Received messages from the following topics: [" + received_topics_str + "]") | ||
|
||
|
||
@launch_testing.post_shutdown_test() | ||
class TestProcessOutput(unittest.TestCase): | ||
def test_exit_code(self, proc_info): | ||
# Check that process exits with code 0: no error | ||
launch_testing.asserts.assertExitCodes(proc_info) |