/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. 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. ==============================================================================*/ #include "tensorflow/contrib/lite/string_util.h" #include #include "tensorflow/contrib/lite/c/c_api_internal.h" #include "tensorflow/contrib/lite/interpreter.h" #include "tensorflow/contrib/lite/testing/util.h" namespace tflite { TEST(StringUtil, TestStringUtil) { Interpreter interpreter; interpreter.AddTensors(3); TfLiteTensor* t0 = interpreter.tensor(0); t0->type = kTfLiteString; t0->allocation_type = kTfLiteDynamic; TfLiteTensor* t1 = interpreter.tensor(1); t1->type = kTfLiteString; t1->allocation_type = kTfLiteDynamic; char data[] = {1, 0, 0, 0, 12, 0, 0, 0, 15, 0, 0, 0, 'X', 'Y', 'Z'}; interpreter.SetTensorParametersReadOnly(2, kTfLiteString, "", {1}, {}, data, 15); TfLiteTensor* t2 = interpreter.tensor(2); interpreter.AllocateTensors(); char s0[] = "ABC"; string s1 = "DEFG"; char s2[] = ""; // Write strings to tensors DynamicBuffer buf0; buf0.AddString(s0, 3); DynamicBuffer buf1; buf1.AddString(s1.data(), s1.length()); buf0.AddString(s2, 0); buf0.WriteToTensor(t0); buf1.WriteToTensor(t1); // Read strings from tensors. ASSERT_EQ(GetStringCount(t0), 2); StringRef str_ref; str_ref = GetString(t0, 0); ASSERT_EQ(string(str_ref.str, str_ref.len), "ABC"); str_ref = GetString(t0, 1); ASSERT_EQ(string(str_ref.str, str_ref.len), ""); ASSERT_EQ(t0->bytes, 19); ASSERT_EQ(GetStringCount(t1), 1); str_ref = GetString(t1, 0); ASSERT_EQ(string(str_ref.str, str_ref.len), "DEFG"); ASSERT_EQ(t1->bytes, 16); ASSERT_EQ(GetStringCount(t2), 1); str_ref = GetString(t2, 0); ASSERT_EQ(string(str_ref.str, str_ref.len), "XYZ"); ASSERT_EQ(t2->bytes, 15); } TEST(StringUtil, TestAddJoinedString) { Interpreter interpreter; interpreter.AddTensors(1); TfLiteTensor* t0 = interpreter.tensor(0); t0->type = kTfLiteString; t0->allocation_type = kTfLiteDynamic; char s0[] = "ABC"; char s1[] = "DEFG"; char s2[] = ""; char s3[] = "XYZ"; DynamicBuffer buf; buf.AddJoinedString({{s0, 3}, {s1, 4}, {s2, 0}, {s3, 3}}, ' '); buf.WriteToTensor(t0); ASSERT_EQ(GetStringCount(t0), 1); StringRef str_ref; str_ref = GetString(t0, 0); ASSERT_EQ(string(str_ref.str, str_ref.len), "ABC DEFG XYZ"); ASSERT_EQ(t0->bytes, 25); } TEST(StringUtil, TestEmptyList) { Interpreter interpreter; interpreter.AddTensors(1); TfLiteTensor* t0 = interpreter.tensor(0); t0->type = kTfLiteString; t0->allocation_type = kTfLiteDynamic; DynamicBuffer buf; buf.WriteToTensor(t0); ASSERT_EQ(GetStringCount(t0), 0); ASSERT_EQ(t0->bytes, 8); } } // namespace tflite int main(int argc, char** argv) { ::tflite::LogToStderr(); ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }