1/* 2 * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved. 3 * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without modification, 6 * are permitted provided that the following conditions are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright notice, this list of 9 * conditions and the following disclaimer. 10 * 11 * 2. Redistributions in binary form must reproduce the above copyright notice, this list 12 * of conditions and the following disclaimer in the documentation and/or other materials 13 * provided with the distribution. 14 * 15 * 3. Neither the name of the copyright holder nor the names of its contributors may be used 16 * to endorse or promote products derived from this software without specific prior written 17 * permission. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 21 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 */ 31#include "stdio.h" 32#include <climits> 33#include <gtest/gtest.h> 34 35#include "lt_net_netdb.h" 36 37using namespace testing::ext; 38namespace OHOS { 39class NetDbTest : public testing::Test { 40public: 41 static void SetUpTestCase(void) 42 { 43 struct sched_param param = { 0 }; 44 int currThreadPolicy, ret; 45 ret = pthread_getschedparam(pthread_self(), &currThreadPolicy, ¶m); 46 param.sched_priority = TASK_PRIO_TEST; 47 ret = pthread_setschedparam(pthread_self(), SCHED_RR, ¶m); 48 } 49 static void TearDownTestCase(void) {} 50}; 51 52#if defined(LOSCFG_USER_TEST_SMOKE) && defined(LOSCFG_USER_TEST_NET_NETDB) 53/* * 54 * @tc.name: NetNetDbTest001 55 * @tc.desc: function for NetDbTest 56 * @tc.type: FUNC 57 */ 58HWTEST_F(NetDbTest, NetNetDbTest001, TestSize.Level0) 59{ 60 NetNetDbTest001(); 61} 62 63/* * 64 * @tc.name: NetNetDbTest013 65 * @tc.desc: function for NetDbTest 66 * @tc.type: FUNC 67 */ 68HWTEST_F(NetDbTest, NetNetDbTest013, TestSize.Level0) 69{ 70 NetNetDbTest013(); 71} 72 73#endif 74 75#if defined(LOSCFG_USER_TEST_FULL) 76/* * 77 * @tc.name: NetNetDbTest018 78 * @tc.desc: function for NetDbTest 79 * @tc.type: FUNC 80 */ 81HWTEST_F(NetDbTest, NetNetDbTest018, TestSize.Level0) 82{ 83 NetNetDbTest018(); 84} 85 86/* * 87 * @tc.name: NetNetDbTest002 88 * @tc.desc: function for NetDbTest 89 * @tc.type: FUNC 90 */ 91HWTEST_F(NetDbTest, NetNetDbTest002, TestSize.Level0) 92{ 93 NetNetDbTest002(); 94} 95 96/* * 97 * @tc.name: NetNetDbTest003 98 * @tc.desc: function for NetDbTest 99 * @tc.type: FUNC 100 */ 101HWTEST_F(NetDbTest, NetNetDbTest003, TestSize.Level0) 102{ 103 NetNetDbTest003(); 104} 105 106/* * 107 * @tc.name: NetNetDbTest004 108 * @tc.desc: function for NetDbTest 109 * @tc.type: FUNC 110 */ 111HWTEST_F(NetDbTest, NetNetDbTest004, TestSize.Level0) 112{ 113 NetNetDbTest004(); 114} 115 116/* * 117 * @tc.name: NetNetDbTest006 118 * @tc.desc: function for NetDbTest 119 * @tc.type: FUNC 120 */ 121HWTEST_F(NetDbTest, NetNetDbTest006, TestSize.Level0) 122{ 123 NetNetDbTest006(); 124} 125 126/* * 127 * @tc.name: NetNetDbTest007 128 * @tc.desc: function for NetDbTest 129 * @tc.type: FUNC 130 */ 131HWTEST_F(NetDbTest, NetNetDbTest007, TestSize.Level0) 132{ 133 NetNetDbTest007(); 134} 135 136/* * 137 * @tc.name: NetNetDbTest008 138 * @tc.desc: function for NetDbTest 139 * @tc.type: FUNC 140 */ 141HWTEST_F(NetDbTest, NetNetDbTest008, TestSize.Level0) 142{ 143 NetNetDbTest008(); 144} 145 146/* * 147 * @tc.name: NetNetDbTest009 148 * @tc.desc: function for NetDbTest 149 * @tc.type: FUNC 150 */ 151HWTEST_F(NetDbTest, NetNetDbTest009, TestSize.Level0) 152{ 153 NetNetDbTest009(); 154} 155 156/* * 157 * @tc.name: NetNetDbTest010 158 * @tc.desc: function for NetDbTest 159 * @tc.type: FUNC 160 */ 161HWTEST_F(NetDbTest, NetNetDbTest010, TestSize.Level0) 162{ 163 NetNetDbTest010(); 164} 165 166/* * 167 * @tc.name: NetNetDbTest011 168 * @tc.desc: function for NetDbTest 169 * @tc.type: FUNC 170 */ 171HWTEST_F(NetDbTest, NetNetDbTest011, TestSize.Level0) 172{ 173 NetNetDbTest011(); 174} 175 176/* * 177 * @tc.name: NetNetDbTest012 178 * @tc.desc: function for NetDbTest 179 * @tc.type: FUNC 180 */ 181HWTEST_F(NetDbTest, NetNetDbTest012, TestSize.Level0) 182{ 183 NetNetDbTest012(); 184} 185 186/* * 187 * @tc.name: NetNetDbTest015 188 * @tc.desc: function for NetDbTest 189 * @tc.type: FUNC 190 */ 191HWTEST_F(NetDbTest, NetNetDbTest015, TestSize.Level0) 192{ 193 NetNetDbTest015(); 194} 195 196/* * 197 * @tc.name: NetNetDbTest016 198 * @tc.desc: function for NetDbTest 199 * @tc.type: FUNC 200 */ 201HWTEST_F(NetDbTest, NetNetDbTest016, TestSize.Level0) 202{ 203 NetNetDbTest016(); 204} 205 206/* * 207 * @tc.name: NetNetDbTest017 208 * @tc.desc: function for NetDbTest 209 * @tc.type: FUNC 210 */ 211HWTEST_F(NetDbTest, NetNetDbTest017, TestSize.Level0) 212{ 213 NetNetDbTest017(); 214} 215 216/* * 217 * @tc.name: NetNetDbTest019 218 * @tc.desc: function for NetDbTest 219 * @tc.type: FUNC 220 */ 221HWTEST_F(NetDbTest, NetNetDbTest019, TestSize.Level0) 222{ 223 NetNetDbTest019(); 224} 225 226/* * 227 * @tc.name: NetNetDbTest020 228 * @tc.desc: function for NetDbTest 229 * @tc.type: FUNC 230 */ 231HWTEST_F(NetDbTest, NetNetDbTest020, TestSize.Level0) 232{ 233 NetNetDbTest020(); 234} 235 236/* * 237 * @tc.name: NetNetDbTest021 238 * @tc.desc: function for NetDbTest 239 * @tc.type: FUNC 240 */ 241HWTEST_F(NetDbTest, NetNetDbTest021, TestSize.Level0) 242{ 243 NetNetDbTest021(); 244} 245 246/* * 247 * @tc.name: NetNetDbTest022 248 * @tc.desc: function for NetDbTest 249 * @tc.type: FUNC 250 */ 251HWTEST_F(NetDbTest, NetNetDbTest022, TestSize.Level0) 252{ 253 NetNetDbTest022(); 254} 255 256#endif 257} 258