HiTraceChainJsunit.test.ets 17.2 KB
Newer Older
J
jiyong_sd 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
// @ts-nocheck
/**
 * Copyright (c) 2021 Huawei Device 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.
 */
import {describe, it, expect} from "hypium/index";
import hiTraceChain from '@ohos.hiTraceChain'
import hiTraceMeter from '@ohos.hiTraceMeter'

export default function hiTraceChainJsunit() {
  describe('hiTraceChainTest', function () {
    console.log("************* byTraceHiDebug Test start*************");

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceFlag_INCLUDE_ASYNC_0100
     * @tc.name      : INCLUDE_ASYNC
     * @tc.desc      : enum test
     */
    it('DFX_HiTraceChain_HiTraceFlag_INCLUDE_ASYNC_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceFlag_INCLUDE_ASYNC_0100 Test start*************");
      try {
        expect(1).assertEqual(hiTraceChain.HiTraceFlag.INCLUDE_ASYNC);
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceFlag_INCLUDE_ASYNC_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceFlag_DONOT_CREATE_SPAN_0100
     * @tc.name      : DONOT_CREATE_SPAN
     * @tc.desc      : enum test
     */
    it('DFX_HiTraceChain_HiTraceFlag_DONOT_CREATE_SPAN_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceFlag_DONOT_CREATE_SPAN_0100 Test start*************");
      try {
        expect(1 << 1).assertEqual(hiTraceChain.HiTraceFlag.DONOT_CREATE_SPAN);
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceFlag_DONOT_CREATE_SPAN_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceFlag_TP_INFO_0100
     * @tc.name      : TP_INFO
     * @tc.desc      : enum test
     */
    it('DFX_HiTraceChain_HiTraceFlag_TP_INFO_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceFlag_TP_INFO_0100 Test start*************");
      try {
        expect(1 << 2).assertEqual(hiTraceChain.HiTraceFlag.TP_INFO);
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceFlag_TP_INFO_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceFlag_NO_BE_INFO_0100
     * @tc.name      : NO_BE_INFO
     * @tc.desc      : enum test
     */
    it('DFX_HiTraceChain_HiTraceFlag_NO_BE_INFO_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceFlag_NO_BE_INFO_0100 Test start*************");
      try {
        expect(1 << 3).assertEqual(hiTraceChain.HiTraceFlag.NO_BE_INFO);
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceFlag_NO_BE_INFO_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceFlag_DISABLE_LOG_0100
     * @tc.name      : DISABLE_LOG
     * @tc.desc      : enum test
     */
    it('DFX_HiTraceChain_HiTraceFlag_DISABLE_LOG_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceFlag_DISABLE_LOG_0100 Test start*************");
      try {
        expect(1 << 4).assertEqual(hiTraceChain.HiTraceFlag.DISABLE_LOG);
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceFlag_DISABLE_LOG_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceFlag_FAILURE_TRIGGER_0100
     * @tc.name      : FAILURE_TRIGGER
     * @tc.desc      : enum test
     */
    it('DFX_HiTraceChain_HiTraceFlag_FAILURE_TRIGGER_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceFlag_FAILURE_TRIGGER_0100 Test start*************");
      try {
        expect(1 << 5).assertEqual(hiTraceChain.HiTraceFlag.FAILURE_TRIGGER);
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceFlag_FAILURE_TRIGGER_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceFlag_D2D_TP_INFO_0100
     * @tc.name      : D2D_TP_INFO
     * @tc.desc      : enum test
     */
    it('DFX_HiTraceChain_HiTraceFlag_D2D_TP_INFO_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceFlag_D2D_TP_INFO_0100 Test start*************");
      try {
        expect(1 << 6).assertEqual(hiTraceChain.HiTraceFlag.D2D_TP_INFO);
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceFlag_D2D_TP_INFO_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceTracepointType_CS_0100
     * @tc.name      : CS
     * @tc.desc      : enum test
     */
    it('DFX_HiTraceChain_HiTraceTracepointType_CS_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceTracepointType_CS_0100 Test start*************");
      try {
        expect(0).assertEqual(hiTraceChain.HiTraceTracepointType.CS);
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceTracepointType_CS_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceTracepointType_CR_0100
     * @tc.name      : CR
     * @tc.desc      : enum test
     */
    it('DFX_HiTraceChain_HiTraceTracepointType_CR_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceTracepointType_CR_0100 Test start*************");
      try {
        expect(1).assertEqual(hiTraceChain.HiTraceTracepointType.CR);
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceTracepointType_CR_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceTracepointType_SS_0100
     * @tc.name      : SS
     * @tc.desc      : enum test
     */
    it('DFX_HiTraceChain_HiTraceTracepointType_SS_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceTracepointType_SS_0100 Test start*************");
      try {
        expect(2).assertEqual(hiTraceChain.HiTraceTracepointType.SS);
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceTracepointType_SS_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceChain_chainId_0100
     * @tc.name      : chainId
     * @tc.desc      : chainId test
     */
    it('DFX_HiTraceChain_HiTraceChain_chainId_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceChain_chainId_0100 Test start*************");
      try {
        let hiTraceId = {
          chainId: 1,
          spanId: 2,
          parentSpanId: 3
        }
        hiTraceChain.setId(hiTraceId);
        expect(true).assertTrue();
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceChain_chainId_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceChain_spanId_0100
     * @tc.name      : spanId
     * @tc.desc      : spanId test
     */
    it('DFX_HiTraceChain_HiTraceChain_spanId_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceChain_spanId_0100 Test start*************");
      try {
        let hiTraceId = {
          chainId: 2,
          spanId: 3,
          parentSpanId: 4
        }
        hiTraceChain.setId(hiTraceId);
        expect(true).assertTrue();
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceChain_spanId_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceChain_createSpan_0100
     * @tc.name      : createSpan
     * @tc.desc      : createSpan method test
     */
    it('DFX_HiTraceChain_HiTraceChain_createSpan_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceChain_createSpan_0100 Test start*************");
      try {
        let hiTraceId = hiTraceChain.createSpan();
        console.log("DFX_HiTraceChain_HiTraceChain_createSpan_0100 chainId " + hiTraceId.chainId);
        console.log("DFX_HiTraceChain_HiTraceChain_createSpan_0100 spanId " + hiTraceId.spanId);
        console.log("DFX_HiTraceChain_HiTraceChain_createSpan_0100 parentSpanId " + hiTraceId.parentSpanId);
        expect(true).assertTrue();
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceChain_createSpan_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceChain_setId_0100
     * @tc.name      : setId
     * @tc.desc      : setId method test
     */
    it('DFX_HiTraceChain_HiTraceChain_setId_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceChain_setId_0100 Test start*************");
      try {
        let hiTraceId = {
          chainId: 3,
          spanId: 4,
          parentSpanId: 5
        }
        hiTraceChain.setId(hiTraceId);
        expect(true).assertTrue();
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceChain_setId_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceChain_end_0100
     * @tc.name      : end
     * @tc.desc      : end test
     */
    it('DFX_HiTraceChain_HiTraceChain_end_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceChain_end_0100 Test start*************");
      try {
        let hiTraceId = {
          chainId: 5,
          spanId: 6,
          parentSpanId: 7
        }
        hiTraceChain.end(hiTraceId);
        expect(true).assertTrue();
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceChain_end_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceChain_clearId_0100
     * @tc.name      : clearId
     * @tc.desc      : clearId test
     */
    it('DFX_HiTraceChain_HiTraceChain_clearId_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceChain_clearId_0100 Test start*************");
      try {
        hiTraceChain.clearId();
        expect(true).assertTrue();
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceChain_clearId_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceChain_tracepoint_0100
     * @tc.name      : tracepoint
     * @tc.desc      : tracepoint test
     */
    it('DFX_HiTraceChain_HiTraceChain_tracepoint_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceChain_tracepoint_0100 Test start*************");
      try {
        let hiTraceId = {
          chainId: 5,
          spanId: 6,
          parentSpanId: 7
        }
        hiTraceChain.tracepoint(hiTraceChain.HiTraceCommunicationMode.DEFAULT, hiTraceChain.HiTraceTracepointType.CS, hiTraceId);
        expect(true).assertTrue();
      } catch (error) {
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceChain_tracepoint_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceChain_isValid_0100
     * @tc.name      : isValid
     * @tc.desc      : isValid method test
     */
    it('DFX_HiTraceChain_HiTraceChain_isValid_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceChain_isValid_0100 Test start*************");
      try {
        let hiTraceId = hiTraceChain.createSpan();
        let isValid = hiTraceChain.isValid(hiTraceId);
        console.log("DFX_HiTraceChain_HiTraceChain_isValid_0100 isValid " + isValid);
        expect(true).assertTrue();
      } catch (error) {
        console.log("DFX_HiTraceChain_HiTraceChain_isValid_0100 error " + error);
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceChain_isValid_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceChain_enableFlag_0100
     * @tc.name      : enableFlag
     * @tc.desc      : enableFlag method test
     */
    it('DFX_HiTraceChain_HiTraceChain_enableFlag_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceChain_enableFlag_0100 Test start*************");
      try {
        let hiTraceId = hiTraceChain.createSpan();
        hiTraceChain.enableFlag(hiTraceId, hiTraceChain.HiTraceFlag.DEFAULT);
        expect(true).assertTrue();
      } catch (error) {
        console.log("DFX_HiTraceChain_HiTraceChain_enableFlag_0100 error " + error);
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceChain_enableFlag_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100
     * @tc.name      : isFlagEnabled
     * @tc.desc      : isFlagEnabled method test
     */
    it('DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100 Test start*************");
      try {
        let hiTraceId = hiTraceChain.createSpan();
        let isFlagEnabled = hiTraceChain.isFlagEnabled(hiTraceId, hiTraceChain.HiTraceFlag.DEFAULT);
        console.log("DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100 isFlagEnabled " + isFlagEnabled);
        expect(true).assertTrue();
      } catch (error) {
        console.log("DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100 error " + error);
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceMeter_HiTraceMeter_startTrace_0100
     * @tc.name      : startTrace
     * @tc.desc      : Records a trace marking it as the start of a task, can with the expected completion time between
                       startTrace and finishTrace.
     */
    it('DFX_HiTraceMeter_HiTraceMeter_startTrace_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceMeter_HiTraceMeter_startTrace_0100 Test start*************");
      try {
        hiTraceMeter.startTrace('testName', 1);
      } catch (error) {
        console.log("DFX_HiTraceMeter_HiTraceMeter_startTrace_0100 error " + error);
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceMeter_HiTraceMeter_startTrace_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceMeter_HiTraceMeter_finishTrace_0100
     * @tc.name      : finishTrace
     * @tc.desc      : Records a trace and marks it as the end of a task.
     */
    it('DFX_HiTraceMeter_HiTraceMeter_finishTrace_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceMeter_HiTraceMeter_finishTrace_0100 Test start*************");
      try {
        hiTraceMeter.finishTrace('testName', 1);
      } catch (error) {
        console.log("DFX_HiTraceMeter_HiTraceMeter_finishTrace_0100 error " + error);
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceMeter_HiTraceMeter_finishTrace_0100 Test end*************");
      done();
    });

    /*
     * @tc.number    : DFX_HiTraceMeter_HiTraceMeter_traceByValue_0100
     * @tc.name      : traceByValue
     * @tc.desc      : Records a trace and marks it as the end of a task.
     */
    it('DFX_HiTraceMeter_HiTraceMeter_traceByValue_0100', 0, async function (done) {
      console.log("************* DFX_HiTraceMeter_HiTraceMeter_traceByValue_0100 Test start*************");
      try {
        hiTraceMeter.traceByValue('testName', 2);
      } catch (error) {
        console.log("DFX_HiTraceMeter_HiTraceMeter_traceByValue_0100 error " + error);
        expect().assertFail();
      }
      console.log("************* DFX_HiTraceMeter_HiTraceMeter_traceByValue_0100 Test end*************");
      done();
    });
    console.log("************* byTraceHiDebug Test end*************");
  })
}