|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /**
- * Copyright 2019-2021 Huawei Technologies Co., Ltd
- *
- * 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 TESTS_UT_CPP_DATASET_COMMON_COMMON_H_
- #define TESTS_UT_CPP_DATASET_COMMON_COMMON_H_
-
- #include "gtest/gtest.h"
- #include "include/api/status.h"
- #include "include/api/types.h"
- #include "minddata/dataset/core/tensor_shape.h"
- #include "minddata/dataset/core/type_id.h"
- #include "minddata/dataset/core/de_tensor.h"
- #include "utils/log_adapter.h"
-
- using mindspore::Status;
- using mindspore::StatusCode;
-
- #define ASSERT_OK(_s) \
- do { \
- Status __rc = (_s); \
- if (__rc.IsError()) { \
- MS_LOG(ERROR) << __rc.ToString() << "."; \
- ASSERT_TRUE(false); \
- } \
- } while (false)
-
- #define EXPECT_OK(_s) \
- do { \
- Status __rc = (_s); \
- if (__rc.IsError()) { \
- MS_LOG(ERROR) << __rc.ToString() << "."; \
- EXPECT_TRUE(false); \
- } \
- } while (false)
-
- #define ASSERT_ERROR(_s) \
- do { \
- Status __rc = (_s); \
- if (__rc.IsOk()) { \
- MS_LOG(ERROR) << __rc.ToString() << "."; \
- ASSERT_TRUE(false); \
- } \
- } while (false)
-
- #define EXPECT_ERROR(_s) \
- do { \
- Status __rc = (_s); \
- if (__rc.IsOk()) { \
- MS_LOG(ERROR) << __rc.ToString() << "."; \
- EXPECT_TRUE(false); \
- } \
- } while (false)
-
- // Macro to compare 2 MSTensors; compare shape-size and data
- #define EXPECT_MSTENSOR_EQ(_mstensor1, _mstensor2) \
- do { \
- EXPECT_EQ(_mstensor1.Shape().size(), _mstensor2.Shape().size()); \
- EXPECT_EQ(_mstensor1.DataSize(), _mstensor2.DataSize()); \
- EXPECT_EQ(std::memcmp((const void *)_mstensor1.Data().get(), (const void *)_mstensor2.Data().get(), \
- _mstensor2.DataSize()), 0); \
- } while (false)
-
- namespace UT {
- class Common : public testing::Test {
- public:
- // every TEST_F macro will enter one
- virtual void SetUp();
-
- virtual void TearDown();
- };
-
- class DatasetOpTesting : public Common {
- public:
- std::vector<mindspore::dataset::TensorShape> ToTensorShapeVec(const std::vector<std::vector<int64_t>> &v);
- std::vector<mindspore::dataset::DataType> ToDETypes(const std::vector<mindspore::DataType> &t);
- mindspore::MSTensor ReadFileToTensor(const std::string &file);
- std::string datasets_root_path_;
- std::string mindrecord_root_path_;
- void SetUp() override;
- };
- } // namespace UT
- #endif // TESTS_UT_CPP_DATASET_COMMON_COMMON_H_
|