UsbDevicePipeJsunit.test.js 30.1 KB
Newer Older
J
jiyong_sd 已提交
1
/*
L
lixiaofeng_154b 已提交
2
 * Copyright (c) 2021-2023 Huawei Device Co., Ltd.
J
jiyong_sd 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15
 * 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.
 */

L
lixiaofeng_154b 已提交
16
import usbManager from '@ohos.usbManager';
J
jiyong_sd 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
import CheckEmptyUtils from './CheckEmptyUtils.js';
import EventConstants from './EventConstants.js';
import parameter from '@ohos.systemparameter';
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium'

/* usb device pipe test */
export default function UsbDevicePipeJsFunctionsTest() {
describe('UsbDevicePipeJsFunctionsTest', function () {

  var gDeviceList
  var gPipe
  var portCurrentMode

  beforeAll(function () {
    console.log('*************Usb Unit UsbDevicePipeJsFunctionsTest Begin*************');
L
lixiaofeng_154b 已提交
32
    var Version = usbManager.getVersion()
J
jiyong_sd 已提交
33 34
    console.info('usb unit begin test getversion :' + Version)
    // version > 17  host currentMode = 2 device currentMode = 1
L
lixiaofeng_154b 已提交
35
    var usbPortList = usbManager.getPorts()
L
lixiaofeng_154b 已提交
36 37 38 39
    if (usbPortList == undefined) {
      portCurrentMode = 1;
      return
    }
L
lixiaofeng_154b 已提交
40
    gDeviceList = usbManager.getDevices();
J
jiyong_sd 已提交
41 42 43
    if (usbPortList.length > 0) {
      if (gDeviceList.length > 0) {
        if (usbPortList[0].status.currentMode == 1) {
L
lixiaofeng_154b 已提交
44
          usbManager.setPortRoles(usbPortList[0].id, usbManager.SOURCE, usbManager.HOST).then(data => {
J
jiyong_sd 已提交
45 46 47 48 49
            portCurrentMode = 2
            console.info('usb case setPortRoles return: ' + data);
          }).catch(error => {
            console.info('usb case setPortRoles error : ' + error);
          });
50
          CheckEmptyUtils.sleep(8000)
J
jiyong_sd 已提交
51 52 53 54 55 56 57
          console.log('*************Usb Unit switch to host Begin*************');
        }
      } else {
        portCurrentMode = 1
      }
    }

L
lixiaofeng_154b 已提交
58
    gDeviceList = usbManager.getDevices();
59 60 61
    gDeviceList[0].name;
    gDeviceList[0].version;
    gDeviceList[0].configs;
L
lixiaofeng_154b 已提交
62
    gPipe = usbManager.connectDevice(gDeviceList[0])
J
jiyong_sd 已提交
63 64 65 66 67 68 69 70 71 72 73
    console.info('usb unit connectDevice gPipe ret : ' + JSON.stringify(gPipe));
  })

  beforeEach(function () {
    console.info('beforeEach: *************Usb Unit Test Case*************');
  })
  afterEach(function () {
    console.info('afterEach: *************Usb Unit Test Case*************');
  })

  afterAll(function () {
L
lixiaofeng_154b 已提交
74
    var isPipClose = usbManager.closePipe(gPipe)
J
jiyong_sd 已提交
75 76 77 78 79 80 81 82
    console.info('usb unit close gPipe ret : ' + isPipClose);
    console.log('*************Usb Unit UsbDevicePipeJsFunctionsTest End*************');
  })

  function findInitPoint(testParam, j) {
    var bfind = false
    for (var k = 0; k < testParam.config.interfaces[j].endpoints.length; k++) {
      var endpoint = testParam.config.interfaces[j].endpoints[k];
83 84 85
      endpoint.number = 1;
      endpoint.type = 2;
      endpoint.interfaceid = 1;
J
jiyong_sd 已提交
86 87
      if (endpoint.type == EventConstants.USB_ENDPOINT_XFER_BULK) {
        bfind = true
L
lixiaofeng_154b 已提交
88
        if (endpoint.direction == usbManager.USB_REQUEST_DIR_TO_DEVICE) {
J
jiyong_sd 已提交
89 90
          testParam.maxOutSize = endpoint.maxPacketSize;
          testParam.outEndpoint = endpoint;
L
lixiaofeng_154b 已提交
91
        } else if (endpoint.direction == usbManager.USB_REQUEST_DIR_FROM_DEVICE) {
J
jiyong_sd 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
          testParam.maxInSize = endpoint.maxPacketSize;
          testParam.inEndpoint = endpoint
        }
      }
    }
    if (bfind) {
      testParam.interface = testParam.config.interfaces[j]
      return bfind
    }
    return false
  }

  function getFlag(testParam, j) {
    if (testParam.config.interfaces[j].endpoints.length == 0) {
      return false
    }

    if (testParam.config.interfaces[j].clazz != 10 ||
W
wuchengwen 已提交
110
      testParam.config.interfaces[j].subClass != 0 ||
J
jiyong_sd 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
      testParam.config.interfaces[j].protocol != 2) {
      return false
    }
    return true
  }

  function initPoint(testParam) {
    for (var j = 0; j < testParam.config.interfaces.length; j++) {
      if (getFlag(testParam, j) == true) {
        if (findInitPoint(testParam, j) == true) {
          break
        }
      }
    }
  }

127
  // Prefabrication transmission related parameters
J
jiyong_sd 已提交
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
  function getTransferTestParam() {
    var testParam = {
      config: null,
      device: null,
      pip: null,
      inEndpoint: null,
      interface: null,
      outEndpoint: null,
      usbRequest: null,
      sendData: '',
      isClaimed: 0,
      maxInSize: 1024,
      maxOutSize: 1024
    }

    console.info('usb case  gDeviceList.length: ' + gDeviceList.length);
    for (var i = 0; i < gDeviceList.length; i++) {
      testParam.device = gDeviceList[i]
      testParam.config = testParam.device.configs[0]
      testParam.pip = gPipe
      initPoint(testParam)
    }
    return testParam
  }

  /**
154 155 156
   * @tc.number: SUB_USB_JS_0630
   * @tc.name: bulkTransfer
   * @tc.desc: Positive test: bulk transfer, receive data
J
jiyong_sd 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
   */
  it('SUB_USB_JS_0630', 0, function () {
    console.info('usb SUB_USB_JS_0630 begin');
    console.info('usb SUB_USB_JS_0630 portcurrentMode ret : ' + portCurrentMode)
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.interface == null || testParam.inEndpoint == null) {
      expect(false).assertTrue();
      return
    }

L
lixiaofeng_154b 已提交
172
    testParam.isClaimed = usbManager.claimInterface(testParam.pip, testParam.interface, true);
J
jiyong_sd 已提交
173 174 175 176
    expect(testParam.isClaimed).assertEqual(0);

    console.info('usb case readData begin');
    var tmpUint8Array = new Uint8Array(testParam.maxInSize);
L
lixiaofeng_154b 已提交
177
    usbManager.bulkTransfer(testParam.pip, testParam.inEndpoint, tmpUint8Array, 5000).then(data => {
J
jiyong_sd 已提交
178 179 180
      console.info('usb case readData tmpUint8Array buffer : ' + CheckEmptyUtils.ab2str(tmpUint8Array));
      console.info('usb case readData ret: ' + data);
      expect(data >= 0).assertTrue();
181
      console.info('usb case SUB_USB_JS_0630 :  PASS');
J
jiyong_sd 已提交
182 183 184 185
    }).catch(error => {
      console.info('usb case readData error : ' + JSON.stringify(error));
      expect(false).assertTrue();
    });
186
    CheckEmptyUtils.sleep(3000);
J
jiyong_sd 已提交
187 188 189
  })

  /**
190 191 192
   * @tc.number: SUB_USB_JS_0640
   * @tc.name: bulkTransfer
   * @tc.desc: Positive test: bulk transfer, send data
J
jiyong_sd 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206
   */
  it('SUB_USB_JS_0640', 0, function () {
    console.info('usb SUB_USB_JS_0640 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }

L
lixiaofeng_154b 已提交
207
    testParam.isClaimed = usbManager.claimInterface(testParam.pip, testParam.interface, true);
J
jiyong_sd 已提交
208 209 210 211 212 213 214 215 216 217 218
    expect(testParam.isClaimed).assertEqual(0);

    testParam.sendData = 'send default';
    try {
      testParam.sendData = parameter.getSync('test_usb', 'default');
      console.log('usb parameter ' + JSON.stringify(testParam.sendData));
    } catch (e) {
      console.log('usb parameter getSync unexpected error: ' + e);
    }

    var tmpUint8Array = CheckEmptyUtils.str2ab(testParam.sendData);
L
lixiaofeng_154b 已提交
219
    usbManager.bulkTransfer(testParam.pip, testParam.outEndpoint, tmpUint8Array, 5000).then(data => {
J
jiyong_sd 已提交
220 221
      console.info('usb case SUB_USB_JS_0640 ret: ' + data);
      console.info('usb case SUB_USB_JS_0640 send data: ' + testParam.sendData);
222
      expect(data > 0).assertTrue();
J
jiyong_sd 已提交
223 224 225 226 227
      console.info('usb case SUB_USB_JS_0640 :  PASS');
    }).catch(error => {
      console.info('usb write error : ' + JSON.stringify(error));
      expect(false).assertTrue();
    });
228
    CheckEmptyUtils.sleep(3000);
J
jiyong_sd 已提交
229 230 231
  })

  /**
232 233 234
   * @tc.number: SUB_USB_JS_0420
   * @tc.name: claimInterface
   * @tc.desc: Positive test: Get interface, and release
J
jiyong_sd 已提交
235 236 237 238 239 240 241 242 243
   */
  it('SUB_USB_JS_0420', 0, function () {
    console.info('usb SUB_USB_JS_0420 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    if (gDeviceList.length == 0) {
244
      console.info('usb 0420 case get_device_list is null')
J
jiyong_sd 已提交
245 246 247 248 249
      expect(gDeviceList.length).assertEqual(-1);
      return
    }

    if (gDeviceList[0].configs.length == 0) {
250
      console.info('usb 0420 case current device.configs.length = 0');
J
jiyong_sd 已提交
251 252 253 254 255 256 257 258 259
      expect(false).assertTrue();
      return
    }

    for (var j = 0; j < gDeviceList[0].configs.length; j++) {
      if (gDeviceList[0].configs[j].interfaces.length == 0) {
        console.info('usb case current device.configs.interfaces.length = 0');
      }
      for (var k = 0; k < gDeviceList[0].configs[j].interfaces.length; k++) {
260 261 262 263 264
        //Attribute Prefabrication
        var interfaces = gDeviceList[0].configs[j].interfaces[k];
		    interfaces.id = 1;
		    interfaces.name = '';
		    interfaces.alternateSetting = 0;
L
lixiaofeng_154b 已提交
265
        var isClaim = usbManager.claimInterface(gPipe, gDeviceList[0].configs[j].interfaces[k], true)
J
jiyong_sd 已提交
266 267 268
        console.info('usb case claimInterface function return: ' + isClaim);
        expect(isClaim).assertEqual(0);
        if (isClaim == 0) {
L
lixiaofeng_154b 已提交
269
          isClaim = usbManager.releaseInterface(gPipe, gDeviceList[0].configs[j].interfaces[k])
J
jiyong_sd 已提交
270 271
          console.info('usb case releaseInterface function return: ' + isClaim);
          expect(isClaim).assertEqual(0);
L
lixiaofeng_154b 已提交
272
          gPipe = usbManager.connectDevice(gDeviceList[0])
J
jiyong_sd 已提交
273 274 275 276 277 278 279
        }
      }
    }

    console.info('usb SUB_USB_JS_0420 :  PASS');
  })

280
  function getTransferParam(iCmd, iReqTarType, iReqType, iValue, iIndex) {
J
jiyong_sd 已提交
281 282
    var tmpUint8Array = new Uint8Array(512);
    var requestCmd = iCmd
283
    var requestTargetType = iReqTarType
J
jiyong_sd 已提交
284 285 286 287 288
    var requestType = iReqType
    var value = iValue;
    var index = iIndex;
    var controlParam = {
      request: requestCmd,
289
      target: requestTargetType,
J
jiyong_sd 已提交
290 291 292 293 294 295 296 297 298
      reqType: requestType,
      value: value,
      index: index,
      data: tmpUint8Array
    }
    return controlParam
  }

  /**
299 300 301
   * @tc.number: SUB_USB_JS_0740
   * @tc.name: setConfiguration
   * @tc.desc: Positive test: Set Device Configuration
J
jiyong_sd 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315
   */
  it('SUB_USB_JS_0740', 0, function () {
    console.info('usb SUB_USB_JS_0740 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    if (gDeviceList.length == 0) {
      console.info('usb case get_device_list is null')
      expect(false).assertTrue();
      return
    }

L
lixiaofeng_154b 已提交
316
    gPipe = usbManager.connectDevice(gDeviceList[0])
J
jiyong_sd 已提交
317
    for (var j = 0; j < gDeviceList[0].configs.length; j++) {
318 319 320 321 322 323
      var configs = gDeviceList[0].configs[j];
      configs.id = 1;
      configs.name = '';
      configs.maxPower = 1;
      configs.isRemoteWakeup = true;
      configs.isSelfPowered = true;
L
lixiaofeng_154b 已提交
324
      var ret = usbManager.setConfiguration(gPipe, gDeviceList[0].configs[j])
J
jiyong_sd 已提交
325 326 327 328 329 330 331 332
      console.info('usb case setConfiguration return : ' + ret);
      expect(ret).assertEqual(0);
    }

    console.info('usb SUB_USB_JS_0740 :  PASS');
  })

  /**
333 334
   * @tc.number: SUB_USB_JS_0750
   * @tc.name: setConfiguration
L
lixiaofeng_154b 已提交
335
   * @tc.desc: Negative test: Set Device Configuration, USBConfig id error
J
jiyong_sd 已提交
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
   */
  it('SUB_USB_JS_0750', 0, function () {
    console.info('usb SUB_USB_JS_0750 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    if (gDeviceList.length == 0) {
      console.info('usb case get_device_list is null')
      expect(false).assertTrue();
      return
    }

    for (var j = 0; j < gDeviceList[0].configs.length; j++) {
      var config = JSON.parse(JSON.stringify(gDeviceList[0].configs[j]));
      config.id = 255
L
lixiaofeng_154b 已提交
353
      var ret = usbManager.setConfiguration(gPipe, config)
J
jiyong_sd 已提交
354 355 356 357 358 359 360 361
      console.info('usb case setConfiguration return : ' + ret);
      expect(ret).assertLess(0);
    }

    console.info('usb SUB_USB_JS_0750 :  PASS');
  })

  /**
362 363 364
   * @tc.number: SUB_USB_JS_0800
   * @tc.name: setInterface
   * @tc.desc: Positive test: Set device interface
J
jiyong_sd 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
   */
  it('SUB_USB_JS_0800', 0, function () {
    console.info('usb SUB_USB_JS_0800 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    if (gDeviceList.length == 0) {
      console.info('usb case get_device_list is null')
      expect(false).assertTrue();
      return
    }

    for (var j = 0; j < gDeviceList[0].configs.length; j++) {
L
lixiaofeng_154b 已提交
380
      var isClaim = usbManager.claimInterface(gPipe, gDeviceList[0].configs[j].interfaces[0], true)
J
jiyong_sd 已提交
381 382
      expect(isClaim).assertEqual(0)
      if (isClaim == 0) {
L
lixiaofeng_154b 已提交
383
        var ret = usbManager.setInterface(gPipe, gDeviceList[0].configs[j].interfaces[0])
J
jiyong_sd 已提交
384
        console.info('usb case setInterface return : ' + ret);
385
        expect(ret).assertEqual(0);
J
jiyong_sd 已提交
386 387 388 389 390 391 392
      }
    }

    console.info('usb SUB_USB_JS_0800 :  PASS');
  })

  /**
393 394 395
   * @tc.number: SUB_USB_JS_0810
   * @tc.name: setInterface
   * @tc.desc: Negative test: Set device interface, error tmpInterface.id
J
jiyong_sd 已提交
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
   */
  it('SUB_USB_JS_0810', 0, function () {
    console.info('usb SUB_USB_JS_0810 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    if (gDeviceList.length == 0) {
      console.info('usb case get_device_list is null')
      expect(false).assertTrue()
      return
    }

    for (var j = 0; j < gDeviceList[0].configs.length; j++) {
L
lixiaofeng_154b 已提交
411
      var isClaim = usbManager.claimInterface(gPipe, gDeviceList[0].configs[j].interfaces[0], true)
J
jiyong_sd 已提交
412 413 414 415
      expect(isClaim).assertEqual(0)
      if (isClaim == 0) {
        var tmpInterface = JSON.parse(JSON.stringify(gDeviceList[0].configs[j].interfaces[0]));
        tmpInterface.id = 234
L
lixiaofeng_154b 已提交
416
        var ret = usbManager.setInterface(gPipe, tmpInterface)
J
jiyong_sd 已提交
417
        console.info('usb case setInterface return : ' + ret)
418
        expect(ret).assertLess(0)
J
jiyong_sd 已提交
419 420 421 422 423 424 425
      }
    }

    console.info('usb SUB_USB_JS_0810 :  PASS');
  })

  function callControlTransfer(pip, controlParam, timeout, caseName) {
L
lixiaofeng_154b 已提交
426
    usbManager.controlTransfer(pip, controlParam, timeout).then(data => {
J
jiyong_sd 已提交
427 428
      console.info('usb controlTransfer ret data : ' + data + ' ' + caseName);
      console.info('usb controlTransfer controlParam.data buffer : ' + controlParam.data + ' ' + caseName);
429
      expect(data >= 0).assertTrue();
J
jiyong_sd 已提交
430 431 432
      console.info('usb' + caseName + ':  PASS');
    }).catch(error => {
      console.info('usb controlTransfer error : ' + JSON.stringify(error));
433
      console.info('usb' + caseName + ':  FAILED');
J
jiyong_sd 已提交
434 435
      expect(false).assertTrue();
    });
436
    CheckEmptyUtils.sleep(3000);
J
jiyong_sd 已提交
437 438 439
  }

  /**
440 441 442
   * @tc.number: SUB_USB_JS_0540
   * @tc.name: controlTransfer
   * @tc.desc: Positive test: control transfer, GetDescriptor: cmd 6 target 2 reqType 128 value 512 index 0
J
jiyong_sd 已提交
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
   */
  it('SUB_USB_JS_0540', 0, function () {
    console.info('usb SUB_USB_JS_0540 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }

    var timeout = 5000;
L
lixiaofeng_154b 已提交
458 459 460
    var controlParam = getTransferParam(6, usbManager.USB_REQUEST_TARGET_DEVICE,
      (usbManager.USB_REQUEST_DIR_FROM_DEVICE) | (usbManager.USB_REQUEST_TYPE_STANDARD << 5)
      | (usbManager.USB_REQUEST_TARGET_DEVICE & 0x1f), (2 << 8), 0);
J
jiyong_sd 已提交
461 462 463 464
    callControlTransfer(testParam.pip, controlParam, timeout, 'SUB_USB_JS_0540 GetDescriptor')
  })

  /**
465 466 467
   * @tc.number: SUB_USB_JS_0550
   * @tc.name: controlTransfer
   * @tc.desc: Positive test: control transfer, GetStatus: cmd 0 target 0 reqType 128 value 0 index 0
J
jiyong_sd 已提交
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
   */
  it('SUB_USB_JS_0550', 0, function () {
    console.info('usb SUB_USB_JS_0550 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }

    var timeout = 5000;
L
lixiaofeng_154b 已提交
483 484 485
    var controlParam = getTransferParam(0, usbManager.USB_REQUEST_TARGET_DEVICE,
      (usbManager.USB_REQUEST_DIR_FROM_DEVICE) | (usbManager.USB_REQUEST_TYPE_STANDARD << 5)
      | (usbManager.USB_REQUEST_TARGET_DEVICE & 0x1f), 0, 0);
J
jiyong_sd 已提交
486 487 488 489
    callControlTransfer(testParam.pip, controlParam, timeout, 'SUB_USB_JS_0550 GetStatus')
  })

  /**
490 491 492
   * @tc.number: SUB_USB_JS_0560
   * @tc.name: controlTransfer
   * @tc.desc: Positive test: control transfer, GetConfiguration: cmd 8 target 0 reqType 128 value 0 index 0
J
jiyong_sd 已提交
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
   */
  it('SUB_USB_JS_0560', 0, function () {
    console.info('usb SUB_USB_JS_0560 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }

    var timeout = 5000;
L
lixiaofeng_154b 已提交
508 509 510
    var controlParam = getTransferParam(8, usbManager.USB_REQUEST_TARGET_DEVICE,
      (usbManager.USB_REQUEST_DIR_FROM_DEVICE) | (usbManager.USB_REQUEST_TYPE_STANDARD << 5)
      | (usbManager.USB_REQUEST_TARGET_DEVICE & 0x1f), 0, 0);
J
jiyong_sd 已提交
511 512 513 514
    callControlTransfer(testParam.pip, controlParam, timeout, 'SUB_USB_JS_0560 GetConfiguration')
  })

  /**
515 516 517
   * @tc.number: SUB_USB_JS_0570
   * @tc.name: controlTransfer
   * @tc.desc: Positive test: control transfer, GetInterface: cmd 10 target 0 reqType 129 value 0 index 1
J
jiyong_sd 已提交
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
   */
  it('SUB_USB_JS_0570', 0, function () {
    console.info('usb SUB_USB_JS_0570 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }

    var timeout = 5000;
L
lixiaofeng_154b 已提交
533 534 535
    var controlParam = getTransferParam(10, usbManager.USB_REQUEST_TARGET_INTERFACE,
      (usbManager.USB_REQUEST_DIR_FROM_DEVICE) | (usbManager.USB_REQUEST_TYPE_STANDARD << 5)
      | (usbManager.USB_REQUEST_TARGET_INTERFACE & 0x1f), 0, 1);
J
jiyong_sd 已提交
536 537 538 539
    callControlTransfer(testParam.pip, controlParam, timeout, 'SUB_USB_JS_0570 GetInterface')
  })

  /**
540 541 542
   * @tc.number: SUB_USB_JS_0580
   * @tc.name: controlTransfer
   * @tc.desc: Positive test: control transfer, ClearFeature: cmd 1 target 0 reqType 0 value 0 index 0
J
jiyong_sd 已提交
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
   */
  it('SUB_USB_JS_0580', 0, function () {
    console.info('usb SUB_USB_JS_0580 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }

    var timeout = 5000;
L
lixiaofeng_154b 已提交
558 559 560
    var controlParam = getTransferParam(1, usbManager.USB_REQUEST_TARGET_DEVICE,
      (usbManager.USB_REQUEST_DIR_TO_DEVICE) | (usbManager.USB_REQUEST_TYPE_STANDARD << 5)
      | (usbManager.USB_REQUEST_TARGET_DEVICE & 0x1f), 0, 0);
J
jiyong_sd 已提交
561 562 563 564
    callControlTransfer(testParam.pip, controlParam, timeout, 'SUB_USB_JS_0580 ClearFeature')
  })

  /**
565 566 567
   * @tc.number: SUB_USB_JS_0590
   * @tc.name: controlTransfer
   * @tc.desc: Positive test: control transfer, ClearFeature: cmd 255 target 1 reqType 129 value 512 index 0
J
jiyong_sd 已提交
568
   */
569
  it('SUB_USB_JS_0590', 0, function () {
J
jiyong_sd 已提交
570 571 572 573 574 575 576 577 578 579 580 581 582
    console.info('usb SUB_USB_JS_0590 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }

    var timeout = 5000;
L
lixiaofeng_154b 已提交
583 584 585
    var controlParam = getTransferParam(255, usbManager.USB_REQUEST_TARGET_INTERFACE,
      (usbManager.USB_REQUEST_DIR_FROM_DEVICE) | (usbManager.USB_REQUEST_TYPE_STANDARD << 5)
      | (usbManager.USB_REQUEST_TARGET_INTERFACE & 0x1f), (2 << 8), 0);
J
jiyong_sd 已提交
586 587 588 589
    callControlTransfer(testParam.pip, controlParam, timeout, 'SUB_USB_JS_0590 ClearFeature')
  })

  /**
590 591 592
   * @tc.number: SUB_USB_JS_0600
   * @tc.name: controlTransfer
   * @tc.desc: Positive test: control transfer, ClearFeature: cmd 255 target 2 reqType 34 value 512 index 0
J
jiyong_sd 已提交
593
   */
594
  it('SUB_USB_JS_0600', 0, function () {
J
jiyong_sd 已提交
595 596 597 598 599 600 601 602 603 604 605 606 607
    console.info('usb SUB_USB_JS_0600 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }

    var timeout = 5000;
L
lixiaofeng_154b 已提交
608 609 610
    var controlParam = getTransferParam(255, usbManager.USB_REQUEST_TARGET_ENDPOINT,
      (usbManager.USB_REQUEST_DIR_TO_DEVICE) | (usbManager.USB_REQUEST_TYPE_CLASS << 5)
      | (usbManager.USB_REQUEST_TARGET_ENDPOINT & 0x1f), (2 << 8), 0);
J
jiyong_sd 已提交
611 612 613 614
    callControlTransfer(testParam.pip, controlParam, timeout, 'SUB_USB_JS_0600 ClearFeature')
  })

  /**
615 616 617
   * @tc.number: SUB_USB_JS_0610
   * @tc.name: controlTransfer
   * @tc.desc: Positive test: control transfer, ClearFeature: cmd 255 target 3 reqType 67 value 512 index 0
J
jiyong_sd 已提交
618
   */
619
  it('SUB_USB_JS_0610', 0, function () {
620 621 622 623 624 625 626 627 628 629 630
    console.info('usb SUB_USB_JS_0610 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }
J
jiyong_sd 已提交
631

632
    var timeout = 5000;
L
lixiaofeng_154b 已提交
633 634 635
    var controlParam = getTransferParam(255, usbManager.USB_REQUEST_TARGET_OTHER,
      (usbManager.USB_REQUEST_DIR_TO_DEVICE) | (usbManager.USB_REQUEST_TYPE_VENDOR << 5)
      | (usbManager.USB_REQUEST_TARGET_OTHER & 0x1f), (2 << 8), 0);
636 637
    callControlTransfer(testParam.pip, controlParam, timeout, 'SUB_USB_JS_0610 ClearFeature')
  })
J
jiyong_sd 已提交
638 639

  /**
640 641 642
   * @tc.number: SUB_USB_JS_0620
   * @tc.name: controlTransfer
   * @tc.desc: Positive test: control transfer, ClearFeature: cmd 255 target 3 reqType 35 value 0 index 0
J
jiyong_sd 已提交
643
   */
644
  it('SUB_USB_JS_0620', 0, function () {
645 646 647 648 649 650 651 652 653 654 655
    console.info('usb SUB_USB_JS_0620 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }
J
jiyong_sd 已提交
656

657
    var timeout = 5000;
L
lixiaofeng_154b 已提交
658 659 660
    var controlParam = getTransferParam(255, usbManager.USB_REQUEST_TARGET_OTHER,
      (usbManager.USB_REQUEST_DIR_TO_DEVICE) | (usbManager.USB_REQUEST_TYPE_CLASS << 5)
      | (usbManager.USB_REQUEST_TARGET_OTHER & 0x1f), 0, 0);
661 662
    callControlTransfer(testParam.pip, controlParam, timeout, 'SUB_USB_JS_0620 ClearFeature')
  })
J
jiyong_sd 已提交
663

L
lixiaofeng_154b 已提交
664
  function callControlTransferEx(pip, controlParam, timeout, caseName) {
L
lixiaofeng_154b 已提交
665
    usbManager.controlTransfer(pip, controlParam, timeout).then(data => {
L
lixiaofeng_154b 已提交
666 667 668 669 670 671 672 673 674 675 676
      console.info('usb controlTransfer ret data : ' + data + ' ' + caseName);
      expect(false).assertTrue();
      console.info('usb' + caseName + ':  FAILED');
    }).catch(error => {
      console.info('usb controlTransfer error : ' + JSON.stringify(error));
      console.info('usb' + caseName + ':  FAILED');
      expect(false).assertTrue();
    });
    CheckEmptyUtils.sleep(3000);
  }

677
  /**
678 679 680
   * @tc.number: SUB_USB_JS_1140
   * @tc.name: controlTransfer
   * @tc.desc: Negative test: control transfer, parameter number exception, input a parameter
681
   */
682
  it('SUB_USB_JS_1140', 0, function () {
683 684 685 686 687 688 689 690 691 692 693 694
    console.info('usb SUB_USB_JS_1140 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }
    try {
L
lixiaofeng_154b 已提交
695
      usbManager.controlTransfer("invalid").then(data => {
L
lixiaofeng_154b 已提交
696 697 698 699 700 701
        console.info('usb 1140 case controlTransfer ret data : ' + data);
        expect(false).assertTrue();
      }).catch(error => {
        console.info('usb 1140 case controlTransfer error : ' + JSON.stringify(error));
        expect(false).assertTrue();
      });
702
    } catch (err) {
703
      console.info('usb 1140 catch err code: ' + err.code + ' message: ' + err.message);
704 705 706 707
      expect(err.code).assertEqual(401);
      console.info('usb SUB_USB_JS_1140 :  PASS');
    }
  })
708 709

  /**
710 711 712
   * @tc.number: SUB_USB_JS_1300
   * @tc.name: controlTransfer
   * @tc.desc: Negative test: control transfer, parameter number exception, necessary parameters not input
713
   */
714
  it('SUB_USB_JS_1300', 0, function () {
715 716 717 718 719 720 721 722 723 724 725 726
    console.info('usb SUB_USB_JS_1300 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }
    try {
L
lixiaofeng_154b 已提交
727
      usbManager.controlTransfer().then(data => {
L
lixiaofeng_154b 已提交
728 729 730 731 732 733
        console.info('usb 1300 case controlTransfer ret data : ' + data);
        expect(false).assertTrue();
      }).catch(error => {
        console.info('usb 1300 case controlTransfer error : ' + JSON.stringify(error));
        expect(false).assertTrue();
      });
734 735 736 737 738 739
    } catch (err) {
      console.info('usb 1300 catch err code: ' + err.code + ' message: ' + err.message);
      expect(err.code).assertEqual(401);
      console.info('usb SUB_USB_JS_1300 :  PASS');
    }
  })
740 741 742 743 744 745 746 747 748 749 750 751 752

  /**
   * @tc.number: SUB_USB_JS_1440
   * @tc.name: controlTransfer
   * @tc.desc: Negative test: control transfer, parameter pipe type error
   */
   it('SUB_USB_JS_1440', 0, function () {
    console.info('usb SUB_USB_JS_1440 begin');
    if (portCurrentMode == 1) {
      console.info('usb case get_device port is device')
      expect(false).assertFalse();
      return
    }
L
lixiaofeng_154b 已提交
753
    var testParam = getTransferTestParam();
754 755 756 757 758 759
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }
    var testParamPip = "invalid";
    var timeout = 5000;
L
lixiaofeng_154b 已提交
760 761 762
    var controlParam = getTransferParam(255, usbManager.USB_REQUEST_TARGET_OTHER,
      (usbManager.USB_REQUEST_DIR_TO_DEVICE) | (usbManager.USB_REQUEST_TYPE_CLASS << 5)
      | (usbManager.USB_REQUEST_TARGET_OTHER & 0x1f), 0, 0);
763
    try {
L
lixiaofeng_154b 已提交
764
      callControlTransferEx(testParamPip, controlParam, timeout, 'SUB_USB_JS_1440 ClearFeature');
765 766 767 768 769 770
    } catch (err) {
      console.info('usb 1440 catch err code: ' + err.code + ' message: ' + err.message);
      expect(err.code).assertEqual(401);
      console.info('usb SUB_USB_JS_1440 :  PASS');
    }
  })
L
lixiaofeng_154b 已提交
771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799

  /**
   * @tc.number: SUB_USB_JS_1560
   * @tc.name: controlTransfer
   * @tc.desc: Negative test: control transfer,
   * parameter contrlparam type error(The controlParam should have the data property)
   */
  it('SUB_USB_JS_1560', 0, function () {
    console.info('usb SUB_USB_JS_1560 begin');
    if (portCurrentMode == 1) {
      console.info('usb 1560 case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }
    var controlParam = "invalid";
    var timeout = 5000;
    try {
      callControlTransferEx(testParam.pip, controlParam, timeout, 'SUB_USB_JS_1560 ClearFeature');
    } catch (err) {
      console.info('usb 1560 catch err code: ' + err.code + ' message: ' + err.message);
      expect(err.code).assertEqual(401);
      console.info('usb SUB_USB_JS_1560 :  PASS');
    }
  })
L
lixiaofeng_154b 已提交
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818

  /**
   * @tc.number: SUB_USB_JS_1570
   * @tc.name: controlTransfer
   * @tc.desc: Negative test: control transfer, parameter timeout type error
   */
  it('SUB_USB_JS_1570', 0, function () {
    console.info('usb SUB_USB_JS_1570 begin');
    if (portCurrentMode == 1) {
      console.info('usb 1570 case get_device port is device')
      expect(false).assertFalse();
      return
    }
    var testParam = getTransferTestParam()
    if (testParam.inEndpoint == null || testParam.interface == null || testParam.outEndpoint == null) {
      expect(false).assertTrue();
      return
    }
    var timeout = "invalid";
L
lixiaofeng_154b 已提交
819 820 821
    var controlParam = getTransferParam(255, usbManager.USB_REQUEST_TARGET_OTHER,
      (usbManager.USB_REQUEST_DIR_TO_DEVICE) | (usbManager.USB_REQUEST_TYPE_CLASS << 5)
      | (usbManager.USB_REQUEST_TARGET_OTHER & 0x1f), 0, 0);
L
lixiaofeng_154b 已提交
822 823 824 825 826 827 828 829
    try {
      callControlTransferEx(testParam.pip, controlParam, timeout, 'SUB_USB_JS_1570 ClearFeature');
    } catch (err) {
      console.info('usb 1570 catch err code: ' + err.code + ' message: ' + err.message);
      expect(err.code).assertEqual(401);
      console.info('usb SUB_USB_JS_1570 :  PASS');
    }
  })
J
jiyong_sd 已提交
830 831
})
}