4c288c19ac
PiperOrigin-RevId: 789321573 Change-Id: Ib29bb426f8598a58f7b34c048b154fa8ada589ef
145 lines
5.9 KiB
C++
145 lines
5.9 KiB
C++
// Copyright 2025 DeepMind Technologies Limited
|
|
//
|
|
// 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.
|
|
|
|
#ifndef MUJOCO_TEST_EXPERIMENTAL_USD_PLUGINS_MJCF_FIXTURE_H_
|
|
#define MUJOCO_TEST_EXPERIMENTAL_USD_PLUGINS_MJCF_FIXTURE_H_
|
|
|
|
#include <string>
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <pxr/base/gf/quatf.h>
|
|
#include <pxr/usd/sdf/assetPath.h>
|
|
#include <pxr/usd/sdf/declareHandles.h>
|
|
#include <pxr/usd/sdf/fileFormat.h>
|
|
#include <pxr/usd/sdf/path.h>
|
|
#include <pxr/usd/usd/common.h>
|
|
#include <pxr/usd/usd/modelAPI.h>
|
|
#include <pxr/usd/usd/stage.h>
|
|
#include <pxr/usd/usd/timeCode.h>
|
|
|
|
#define EXPECT_PRIM_VALID(stage, path) \
|
|
EXPECT_TRUE((stage)->GetPrimAtPath(SdfPath(path)).IsValid());
|
|
|
|
#define EXPECT_PRIM_INVALID(stage, path) \
|
|
EXPECT_FALSE((stage)->GetPrimAtPath(SdfPath(path)).IsValid());
|
|
|
|
#define EXPECT_PRIM_IS_A(stage, path, type) \
|
|
{ \
|
|
EXPECT_TRUE((stage)->GetPrimAtPath(SdfPath(path)).IsA<type>()); \
|
|
}
|
|
|
|
#define EXPECT_PRIM_API_APPLIED(stage, path, api) \
|
|
{ \
|
|
EXPECT_TRUE((stage)->GetPrimAtPath(SdfPath(path)).HasAPI<api>()); \
|
|
}
|
|
|
|
#define EXPECT_PRIM_API_NOT_APPLIED(stage, path, api) \
|
|
{ \
|
|
EXPECT_FALSE((stage)->GetPrimAtPath(SdfPath(path)).HasAPI<api>()); \
|
|
}
|
|
|
|
#define EXPECT_PRIM_KIND(stage, path, kind) \
|
|
{ \
|
|
pxr::TfToken prim_kind; \
|
|
pxr::UsdModelAPI::Get(stage, SdfPath(path)).GetKind(&prim_kind); \
|
|
EXPECT_EQ(kind, prim_kind); \
|
|
}
|
|
|
|
#define EXPECT_PRIM_PURPOSE(stage, path, purpose) \
|
|
{ \
|
|
pxr::TfToken prim_purpose; \
|
|
pxr::UsdGeomImageable::Get(stage, SdfPath(path)) \
|
|
.GetPurposeAttr() \
|
|
.Get(&prim_purpose); \
|
|
EXPECT_EQ(prim_purpose, purpose); \
|
|
}
|
|
|
|
#define EXPECT_ATTRIBUTE_HAS_VALUE(stage, path) \
|
|
EXPECT_TRUE((stage)->GetAttributeAtPath(SdfPath(path)).HasValue());
|
|
|
|
#define EXPECT_ATTRIBUTE_HAS_NO_VALUE(stage, path) \
|
|
EXPECT_FALSE((stage)->GetAttributeAtPath(SdfPath(path)).HasValue());
|
|
|
|
#define EXPECT_ATTRIBUTE_HAS_AUTHORED_VALUE(stage, path) \
|
|
EXPECT_TRUE((stage)->GetAttributeAtPath(SdfPath(path)).HasAuthoredValue());
|
|
|
|
#define EXPECT_ATTRIBUTE_HAS_NO_AUTHORED_VALUE(stage, path) \
|
|
EXPECT_FALSE((stage)->GetAttributeAtPath(SdfPath(path)).HasAuthoredValue());
|
|
|
|
#define EXPECT_REL_TARGET_COUNT(stage, path, count) \
|
|
{ \
|
|
pxr::SdfPathVector targets; \
|
|
(stage)->GetRelationshipAtPath(SdfPath(path)).GetTargets(&targets); \
|
|
EXPECT_TRUE(targets.size() == count); \
|
|
}
|
|
|
|
#define EXPECT_REL_HAS_TARGET(stage, path, target_path) \
|
|
{ \
|
|
pxr::SdfPathVector targets; \
|
|
(stage)->GetRelationshipAtPath(SdfPath(path)).GetTargets(&targets); \
|
|
EXPECT_TRUE(std::find(targets.begin(), targets.end(), \
|
|
SdfPath(target_path)) != targets.end()); \
|
|
}
|
|
|
|
namespace mujoco {
|
|
namespace usd {
|
|
|
|
pxr::SdfLayerRefPtr LoadLayer(
|
|
const std::string& xml,
|
|
const pxr::SdfFileFormat::FileFormatArguments& args = {});
|
|
|
|
pxr::UsdStageRefPtr OpenStage(const std::string& xml);
|
|
|
|
template <typename T>
|
|
void ExpectAttributeEqual(
|
|
pxr::UsdStageRefPtr stage, pxr::SdfPath path, const T& value,
|
|
const pxr::UsdTimeCode time = pxr::UsdTimeCode::Default()) {
|
|
auto attr = stage->GetAttributeAtPath(pxr::SdfPath(path));
|
|
EXPECT_TRUE(attr.IsValid()) << "Attribute " << path << " is not valid";
|
|
T attr_value;
|
|
attr.Get(&attr_value, time);
|
|
EXPECT_EQ(attr_value, value) << "Attribute " << path << " has value "
|
|
<< attr_value << ". Expected: " << value;
|
|
}
|
|
|
|
template <typename T>
|
|
void ExpectAttributeEqual(
|
|
pxr::UsdStageRefPtr stage, const char* path, const T& value,
|
|
const pxr::UsdTimeCode time = pxr::UsdTimeCode::Default()) {
|
|
ExpectAttributeEqual(stage, pxr::SdfPath(path), value, time);
|
|
}
|
|
|
|
// Specialization for SdfAssetPath, so that we can compare only the asset path
|
|
// and not care about whatever the resolved path is.
|
|
// Otherwise the default operator== would fail because it tests for equality of
|
|
// the asset path AND the resolved path.
|
|
template <>
|
|
void ExpectAttributeEqual<pxr::SdfAssetPath>(
|
|
pxr::UsdStageRefPtr stage, pxr::SdfPath, const pxr::SdfAssetPath& value,
|
|
pxr::UsdTimeCode time);
|
|
|
|
void ExpectAttributeHasConnection(pxr::UsdStageRefPtr stage, const char* path,
|
|
const char* connection_path);
|
|
|
|
// Checks that all authored attributes on the given prim have types that match
|
|
// the schema types.
|
|
void ExpectAllAuthoredAttributesMatchSchemaTypes(const pxr::UsdPrim& prim);
|
|
|
|
// Checks if two quaternions represent the same rotation.
|
|
bool AreQuatsSameRotation(const pxr::GfQuatf& q1, const pxr::GfQuatf& q2,
|
|
float tolerance = 1e-6);
|
|
} // namespace usd
|
|
} // namespace mujoco
|
|
#endif // MUJOCO_TEST_EXPERIMENTAL_USD_PLUGINS_MJCF_FIXTURE_H_
|