Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include <ros/ros.h>
00034 #include <gtest/gtest.h>
00035 #include <boost/thread.hpp>
00036 #include <actionlib/client/simple_action_client.h>
00037 #include <pr2_plugs_msgs/DetectWallNormAction.h>
00038 #include <actionlib/server/simple_action_server.h>
00039 #include <stereo_wall_detection/DetectWall.h>
00040 #include <dynamic_reconfigure/Reconfigure.h>
00041 #include <pr2_controllers_msgs/PointHeadAction.h>
00042
00043
00044 void spinThread()
00045 {
00046 ros::spin();
00047 }
00048
00049 bool set_param (dynamic_reconfigure::Reconfigure::Request &req, dynamic_reconfigure::Reconfigure::Response &resp)
00050 {
00051 return true;
00052 }
00053
00054 void head_execute(const pr2_controllers_msgs::PointHeadGoalConstPtr& goal, actionlib::SimpleActionServer<pr2_controllers_msgs::PointHeadAction>* as)
00055 {
00056 as->setSucceeded();
00057 }
00058
00059 bool detect_wall (stereo_wall_detection::DetectWall::Request &req, stereo_wall_detection::DetectWall::Response &resp)
00060 {
00061 return true;
00062 }
00063
00064 TEST(ActionServerTest, detect_wall_norm)
00065 {
00066 ros::NodeHandle n;
00067 boost::thread spin_thread(&spinThread);
00068
00069 ros::ServiceServer wall_serv = n.advertiseService ("stereo_wall_detection/detect_wall", detect_wall);
00070 ros::ServiceServer param_serv = n.advertiseService ("camera_synchronizer_node/set_parameters", set_param);
00071 actionlib::SimpleActionServer<pr2_controllers_msgs::PointHeadAction> head_server(n, "head_traj_controller/point_head_action", boost::bind(&head_execute, _1, &head_server), false);
00072 head_server.start();
00073
00074 actionlib::SimpleActionClient<pr2_plugs_msgs::DetectWallNormAction> ac("detect_wall_norm");
00075
00076
00077 EXPECT_TRUE(ac.waitForServer(ros::Duration(15.0)));
00078 ros::shutdown();
00079 spin_thread.join();
00080
00081 }
00082
00083 int main(int argc, char **argv){
00084 testing::InitGoogleTest(&argc, argv);
00085 ros::init(argc, argv, "detect_wall_norm_tests");
00086 return RUN_ALL_TESTS();
00087
00088 }