| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #ifndef MUJOCO_TEST_FIXTURE_H_ |
| | #define MUJOCO_TEST_FIXTURE_H_ |
| |
|
| | #include <csetjmp> |
| | #include <cstring> |
| | #include <iomanip> |
| | #include <iostream> |
| | #include <string> |
| | #include <string_view> |
| | #include <vector> |
| |
|
| | #include <gtest/gtest.h> |
| | #include <absl/container/flat_hash_map.h> |
| | #include <absl/container/flat_hash_set.h> |
| | #include <mujoco/mjmodel.h> |
| | #include <mujoco/mujoco.h> |
| |
|
| | extern "C" { |
| | MJAPI void _mjPRIVATE__set_tls_error_fn(decltype(mju_user_error)); |
| | MJAPI decltype(mju_user_error) _mjPRIVATE__get_tls_error_fn(); |
| | } |
| |
|
| | namespace mujoco { |
| |
|
| | |
| | |
| | |
| | class MujocoErrorTestGuard { |
| | public: |
| | |
| | |
| | MujocoErrorTestGuard(); |
| |
|
| | |
| | ~MujocoErrorTestGuard(); |
| | }; |
| |
|
| | |
| | |
| | |
| | class MujocoTest : public ::testing::Test { |
| | public: |
| | ~MujocoTest() { mj_freeLastXML(); } |
| |
|
| | private: |
| | MujocoErrorTestGuard error_guard; |
| | }; |
| |
|
| | template <typename Return, typename... Args> |
| | auto MjuErrorMessageFrom(Return (*func)(Args...)) { |
| | thread_local std::jmp_buf current_jmp_buf; |
| | thread_local char err_msg[1000]; |
| |
|
| | auto* old_error_handler = _mjPRIVATE__get_tls_error_fn(); |
| | auto* new_error_handler = +[](const char* msg) -> void { |
| | std::strncpy(err_msg, msg, sizeof(err_msg)); |
| | std::longjmp(current_jmp_buf, 1); |
| | }; |
| |
|
| | return [func, old_error_handler, |
| | new_error_handler](Args... args) -> std::string { |
| | if (setjmp(current_jmp_buf) == 0) { |
| | err_msg[0] = '\0'; |
| | _mjPRIVATE__set_tls_error_fn(new_error_handler); |
| | func(args...); |
| | } |
| |
|
| | _mjPRIVATE__set_tls_error_fn(old_error_handler); |
| | return err_msg; |
| | }; |
| | } |
| |
|
| | |
| | const std::string GetTestDataFilePath(std::string_view path); |
| |
|
| | |
| | const std::string GetModelPath(std::string_view path); |
| |
|
| | |
| | |
| | mjModel* LoadModelFromString(std::string_view xml, char* error = nullptr, |
| | int error_size = 0, mjVFS* vfs = nullptr); |
| |
|
| | |
| | |
| | mjModel* LoadModelFromPath(const char* model_path); |
| |
|
| | |
| | std::string SaveAndReadXml(const mjModel* model); |
| |
|
| | |
| | std::string SaveAndReadXml(const mjSpec* spec); |
| |
|
| | |
| | std::vector<mjtNum> GetCtrlNoise(const mjModel* m, int nsteps, |
| | mjtNum ctrlnoise = 0.01); |
| |
|
| | |
| | |
| | mjtNum CompareModel(const mjModel* m1, const mjModel* m2, std::string& field); |
| |
|
| | |
| | template <typename T> |
| | std::vector<T> AsVector(const T* array, int n) { |
| | return std::vector<T>(array, array + n); |
| | } |
| |
|
| | |
| | inline void PrintMatrix(const mjtNum* mat, int nrow, int ncol, int p = 5, |
| | std::string_view name = "") { |
| | std::cerr.precision(p); |
| | std::cerr << name << "\n"; |
| | for (int r = 0; r < nrow; r++) { |
| | for (int c = 0; c < ncol; c++) { |
| | mjtNum val = mat[c + r*ncol]; |
| | if (val) { |
| | std::cerr << std::fixed << std::setw(5 + p) << val << " "; |
| | } else { |
| | |
| | std::cerr << std::string(6 + p, ' '); |
| | } |
| | } |
| | std::cerr << "\n"; |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | class MockFilesystem { |
| | public: |
| | |
| | |
| | MockFilesystem(std::string unit_test_name); |
| |
|
| | |
| | MockFilesystem(MockFilesystem&& other) = delete; |
| | MockFilesystem& operator=(MockFilesystem&& other) = delete; |
| | MockFilesystem(const MockFilesystem& other) = delete; |
| | MockFilesystem& operator=(const MockFilesystem& other) = delete; |
| |
|
| | |
| | const std::string& Prefix() const { return prefix_; } |
| |
|
| | |
| | bool AddFile(std::string filename, const unsigned char* data, |
| | std::size_t ndata); |
| |
|
| | |
| | bool FileExists(const std::string& filename); |
| |
|
| | |
| | void ChangeDirectory(std::string dir); |
| |
|
| | |
| | std::size_t GetFile(const std::string& filename, |
| | const unsigned char** buffer) const; |
| | std::string FullPath(const std::string& path) const; |
| |
|
| |
|
| | private: |
| | std::string StripPrefix(const char* path) const; |
| | static std::string PathReduce(const std::string& current_dir, |
| | const std::string& path); |
| |
|
| | absl::flat_hash_set<std::string> filenames_; |
| | absl::flat_hash_map<std::string, std::vector<unsigned char>> data_; |
| | std::string prefix_; |
| | std::string dir_; |
| | }; |
| |
|
| | |
| | class PluginTest : public MujocoTest { |
| | public: |
| | |
| | PluginTest() : MujocoTest() { |
| | mj_loadAllPluginLibraries( |
| | std::string(std::getenv("MUJOCO_PLUGIN_DIR")).c_str(), +[](const char* filename, int first, int count) { |
| | std::printf("Plugins registered by library '%s':\n", filename); |
| | for (int i = first; i < first + count; ++i) { |
| | std::printf(" %s\n", mjp_getPluginAtSlot(i)->name); |
| | } |
| | }); |
| | } |
| | }; |
| |
|
| | } |
| | #endif |
| |
|