-
Notifications
You must be signed in to change notification settings - Fork 682
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add common interface tools test #5815
Open
shulanbushangshu
wants to merge
10
commits into
autowarefoundation:main
Choose a base branch
from
shulanbushangshu:comm_tools
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+80
−0
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
35d80de
rebase commom tools
shulanbushangshu c5c53f8
rebase commom tools
shulanbushangshu 339bbc2
rebase commom tools
shulanbushangshu 0c137a5
rebase commom tools
shulanbushangshu 952e025
rebase commom tools
shulanbushangshu 1606290
rebase commom tools
shulanbushangshu e2b7608
rebase commom tools
shulanbushangshu a9e3874
rebase commom tools
shulanbushangshu 662e11a
rebase commom tools
shulanbushangshu 4b4f4a6
style(pre-commit): autofix
pre-commit-ci[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
63 changes: 63 additions & 0 deletions
63
common/autoware_component_interface_tools/test/test_autoware_component_interface_tools.cpp
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,63 @@ | ||
// Copyright 2023 The Autoware Contributors | ||
// | ||
// 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. | ||
#include "service_log_checker.hpp" | ||
|
||
#include <rclcpp/node_options.hpp> | ||
|
||
#include <gtest/gtest.h> | ||
|
||
#include <memory> | ||
#include <string> | ||
|
||
using ServiceLog = tier4_system_msgs::msg::ServiceLog; | ||
using DiagnosticArray = diagnostic_msgs::msg::DiagnosticArray; | ||
using ServiceLogChecker = autoware::component_interface_tools::ServiceLogChecker; | ||
|
||
TEST(ServiceCheckerTest, ServiceChecker) | ||
{ | ||
class PubManager : public rclcpp::Node | ||
{ | ||
public: | ||
PubManager() : Node("test_pub_node") | ||
{ | ||
pub_odom_ = create_publisher<ServiceLog>("service_log", 1); | ||
sub_odom_ = create_subscription<DiagnosticArray>( | ||
"/diagnostics", 1, std::bind(&PubManager::on_service_log, this, std::placeholders::_1)); | ||
} | ||
rclcpp::Publisher<ServiceLog>::SharedPtr pub_odom_; | ||
rclcpp::Subscription<DiagnosticArray>::SharedPtr sub_odom_; | ||
bool flag = false; | ||
void on_service_log(const DiagnosticArray::ConstSharedPtr msg) | ||
{ | ||
if (msg->status.size() > 0) { | ||
auto diag_array = msg->status[0].message.c_str(); | ||
EXPECT_EQ(diag_array, "ERROR"); | ||
flag = true; | ||
} | ||
} | ||
}; | ||
|
||
rclcpp::init(0, nullptr); | ||
auto node_options = rclcpp::NodeOptions{}; | ||
auto test_target_node = std::make_shared<ServiceLogChecker>(node_options); | ||
auto test_log = std::make_shared<PubManager>(); | ||
ServiceLog log; | ||
log.type = 6; | ||
log.name = "test"; | ||
log.node = "test_node"; | ||
test_log->pub_odom_->publish(log); | ||
|
||
while (!test_log->flag) { | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that this is not required.