#include "caffe2/utils/smart_tensor_printer.h" #include "caffe2/core/common.h" #include namespace caffe2 { template std::string my_to_string(const T& value) { return to_string(value); } template <> std::string my_to_string(const std::string& value) { return value; } template void expect_stderr_contains(const std::vector& values) { std::string captured_stderr = testing::internal::GetCapturedStderr(); for (const auto& value : values) { std::string stringValue = my_to_string(value); EXPECT_TRUE(captured_stderr.find(stringValue) != std::string::npos); } } template void printTensorAndCheck(const std::vector& values) { testing::internal::CaptureStderr(); Tensor tensor = TensorCPUFromValues({static_cast(values.size())}, values); SmartTensorPrinter::PrintTensor(tensor); expect_stderr_contains(values); } // We need real glog for this test to pass #ifdef CAFFE2_USE_GOOGLE_GLOG #if !(__APPLE__) // TODO(janusz): thread_local does not work under mac. TEST(SmartTensorPrinterTest, SimpleTest) { printTensorAndCheck(std::vector{1, 2, 3, 4, 5}); printTensorAndCheck(std::vector{"bob", "alice", "facebook"}); } #endif // !(__APPLE__) #endif // CAFFE2_USE_GOOGLE_GLOG } // namespace caffe2