test_sr_description_urdf.cpp
Go to the documentation of this file.
00001 /*********************************************************************
00002  * Software License Agreement (BSD License)
00003  *
00004  *  Copyright (c) 2008, Willow Garage, Inc.
00005  *  All rights reserved.
00006  *
00007  *  Redistribution and use in source and binary forms, with or without
00008  *  modification, are permitted provided that the following conditions
00009  *  are met:
00010  *
00011  *   * Redistributions of source code must retain the above copyright
00012  *     notice, this list of conditions and the following disclaimer.
00013  *   * Redistributions in binary form must reproduce the above
00014  *     copyright notice, this list of conditions and the following
00015  *     disclaimer in the documentation and/or other materials provided
00016  *     with the distribution.
00017  *   * Neither the name of the Willow Garage nor the names of its
00018  *     contributors may be used to endorse or promote products derived
00019  *     from this software without specific prior written permission.
00020  *
00021  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00022  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00023  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00024  *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00025  *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00026  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00027  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00028  *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00029  *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00030  *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00031  *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00032  *  POSSIBILITY OF SUCH DAMAGE.
00033  *********************************************************************/
00034 
00039 #include <gtest/gtest.h>
00040 #include <cstdlib>
00041 
00042 #include <dirent.h>
00043 #include <sys/types.h>
00044 #include <sys/param.h>
00045 #include <sys/stat.h>
00046 #include <unistd.h>
00047 #include <stdio.h>
00048 #include <string.h>
00049 
00050 #include <iostream>
00051 
00052 int runExternalProcess(const std::string &executable, const std::string &args)
00053 {
00054     return system((executable + " " + args).c_str());
00055 }
00056 
00057 std::string getCommandOutput(std::string cmd) {
00058 
00059     std::string data;
00060     FILE * stream;
00061     char buffer[MAXPATHLEN];
00062 
00063     stream = popen(cmd.c_str(), "r");
00064     if (stream) {
00065                         while (!feof(stream))
00066                                 if (fgets(buffer, MAXPATHLEN, stream) != NULL) data.append(buffer);
00067                                 pclose(stream);
00068     }
00069     // keep anything before first cr/lf
00070     unsigned pos = data.find_first_of('\n');
00071     return data.substr(0,pos);
00072 }
00073 
00074 int walker( char *result, int& test_result)
00075 {
00076         std::string package_path =  getCommandOutput("rospack find sr_description");
00077         
00078   if (package_path.find("sr_description")==std::string::npos)
00079   {
00080         printf("cannot find package in path %s\n",package_path.c_str());
00081     test_result = 1;
00082     return 1;
00083   }
00084   else
00085   {
00086         printf("sr_description robots path : %s\n",(package_path+"/robots").c_str());
00087   }
00088         
00089   DIR           *d;
00090   struct dirent *dir;
00091   d = opendir( (package_path+"/robots").c_str() );
00092   if( d == NULL )
00093   {
00094     printf("no robots found\n");
00095     test_result = 1;
00096     return 1;
00097   }
00098   while( ( dir = readdir( d ) ) )
00099   {
00100     if( strcmp( dir->d_name, "." ) == 0 ||
00101         strcmp( dir->d_name, ".." ) == 0 )
00102     {
00103       continue;
00104     }
00105     if( dir->d_type != DT_DIR )
00106     {
00107       std::string dir_name = dir->d_name;
00108       if (dir_name.find(std::string(".urdf.xacro")) == dir_name.size()-11)
00109       {
00110         printf("\n\ntesting: %s\n",(package_path+"/robots/"+dir_name).c_str());
00111         printf("python `rospack find xacro`/xacro.py %s/robots/%s  > `rospack find sr_description`/test/tmp.urdf", package_path.c_str(), dir_name.c_str() );
00112         runExternalProcess("python `rospack find xacro`/xacro.py", package_path+"/robots/"+dir_name+" > `rospack find sr_description`/test/tmp.urdf" );
00113                                 // check urdf structure
00114         test_result = test_result || runExternalProcess("check_urdf", "`rospack find sr_description`/test/tmp.urdf");
00115         printf("\n looking for unexpanded xacro tags\n");
00116         // check for unexpanded xacros
00117         test_result = test_result || not runExternalProcess("grep","'<xacro:' `rospack find sr_description`/test/tmp.urdf");
00118       }
00119       if (test_result!=0)
00120                                 return *result == 0;
00121     }
00122   }
00123   closedir( d );
00124   return *result == 0;
00125 }
00126 
00127 TEST(URDF, CorrectFormat)
00128 {
00129   int test_result = 0;
00130 
00131   char buf[MAXPATHLEN] = { 0 };
00132   if( walker( buf, test_result ) == 0 )
00133   {
00134     printf( "Found: %s\n", buf );
00135   }
00136   else
00137   {
00138     puts( "Not found" );
00139   }
00140 
00141   EXPECT_TRUE(test_result == 0);
00142 }
00143 
00144 int main(int argc, char **argv)
00145 {
00146     testing::InitGoogleTest(&argc, argv);
00147     return RUN_ALL_TESTS();
00148 }


sr_description
Author(s): Ugo Cupcic
autogenerated on Fri Aug 21 2015 12:26:55