17c804472Sopenharmony_ci/* 27c804472Sopenharmony_ci * Copyright (c) 2024 Huawei Device Co., Ltd. 37c804472Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 47c804472Sopenharmony_ci * you may not use this file except in compliance with the License. 57c804472Sopenharmony_ci * You may obtain a copy of the License at 67c804472Sopenharmony_ci * 77c804472Sopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 87c804472Sopenharmony_ci * 97c804472Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software 107c804472Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 117c804472Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 127c804472Sopenharmony_ci * See the License for the specific language governing permissions and 137c804472Sopenharmony_ci * limitations under the License. 147c804472Sopenharmony_ci */ 157c804472Sopenharmony_ci 167c804472Sopenharmony_ci#include "gtest/gtest.h" 177c804472Sopenharmony_ci#include "PublicMethods.h" 187c804472Sopenharmony_ci 197c804472Sopenharmony_cinamespace { 207c804472Sopenharmony_ci // 测试拷贝构造函数是否被删除 217c804472Sopenharmony_ci TEST(CppTimerTest, CopyConstructorDeletedTest) 227c804472Sopenharmony_ci { 237c804472Sopenharmony_ci EXPECT_TRUE(std::is_copy_constructible<PublicMethods>::value == false); 247c804472Sopenharmony_ci } 257c804472Sopenharmony_ci 267c804472Sopenharmony_ci // 测试赋值运算符是否被删除 277c804472Sopenharmony_ci TEST(CppTimerTest, AssignmentOperatorDeletedTest) 287c804472Sopenharmony_ci { 297c804472Sopenharmony_ci EXPECT_TRUE(std::is_copy_assignable<PublicMethods>::value == false); 307c804472Sopenharmony_ci } 317c804472Sopenharmony_ci 327c804472Sopenharmony_ci // 比较两个 int8_t 数组是否相等 337c804472Sopenharmony_ci bool CompareInt8Arrays(const int8_t* arr1, const int8_t* arr2, size_t size) 347c804472Sopenharmony_ci { 357c804472Sopenharmony_ci for (size_t i = 0; i < size; ++i) { 367c804472Sopenharmony_ci if (arr1[i] != arr2[i]) { 377c804472Sopenharmony_ci return false; 387c804472Sopenharmony_ci } 397c804472Sopenharmony_ci } 407c804472Sopenharmony_ci return true; 417c804472Sopenharmony_ci } 427c804472Sopenharmony_ci 437c804472Sopenharmony_ci TEST(PublicMethodsTest, UlltoaTest) 447c804472Sopenharmony_ci { 457c804472Sopenharmony_ci const int testValue = 123456789; 467c804472Sopenharmony_ci const int8_t expectedOutput[] = "75bcd15"; 477c804472Sopenharmony_ci 487c804472Sopenharmony_ci int8_t outputBuffer[PublicMethods::MAX_ITOA_BIT] = {0}; 497c804472Sopenharmony_ci uint32_t resultLength = PublicMethods::Ulltoa(testValue, outputBuffer); 507c804472Sopenharmony_ci // 验证返回值是否正确 517c804472Sopenharmony_ci ASSERT_EQ(std::size(expectedOutput) - 1, resultLength); // 减去 1,以排除空字符(‘\0’)的影响 527c804472Sopenharmony_ci // 验证结果字符串是否与预期相符 537c804472Sopenharmony_ci ASSERT_TRUE(CompareInt8Arrays(expectedOutput, outputBuffer, resultLength)); 547c804472Sopenharmony_ci } 557c804472Sopenharmony_ci}