“eba7327888ed76b7e277ef90ed143504934249c7”上不存在“source/common/git@gitcode.net:taosdata/tdengine.git”
OsAccountQuery.test.js 37.9 KB
Newer Older
1
15829070344 已提交
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
/*
 * 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 osaccount from '@ohos.account.osAccount'
import bundle from '@ohos.bundle'
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium'


const ERR_INVALID_PARAMETER = 12300002;
export default function ActsOsAccountThirdPartyTest_third_4() {
    describe('ActsOsAccountThirdPartyTest_third_4', function () {
        afterEach(async function (done) {
            console.debug("====>afterEach start====");
            var osAccountManager = osaccount.getAccountManager();
            var accounts = await osAccountManager.queryAllCreatedOsAccounts()
            for (i=0;i<accounts.length;i++){
                var localId = accounts[i].localId
                if(localId!=100){
                    await osAccountManager.removeOsAccount(localId)
                }
            }
            done();
        })
        /*
        * @tc.number  : ActsOsAccountQueryIdFormUid_0100
37
        * @tc.name    : getOsAccountLocalIdForUid callback
1
15829070344 已提交
38 39 40 41 42
        * @tc.desc    : Verify that the user localId is obtained by uid
        */
        it('ActsOsAccountQueryIdFormUid_0100', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryIdFormUid_0100 start====");
            var osAccountManager = osaccount.getAccountManager();
43
            var testLocalId = await osAccountManager.getOsAccountLocalId();
1
15829070344 已提交
44 45 46 47 48 49
            console.debug("====>testLocalId:" + testLocalId)
            console.debug("====>get AccountManager finish====");
            var bundleName = "com.example.actsosaccountthirdpartytest";
            var bundleInfo = await bundle.getBundleInfo(bundleName, bundle.BundleFlag.GET_BUNDLE_WITH_ABILITIES);
            var uid = bundleInfo.uid;
            console.debug("====>obtained uid:" + uid);
50
            osAccountManager.getOsAccountLocalIdForUid(uid, (err, localId)=>{
1
15829070344 已提交
51 52 53 54 55 56 57 58 59 60 61
                console.debug("====>get localId err: " + JSON.stringify(err));
                console.debug("====>localId obtained by uid:" + localId);
                expect(err).assertEqual(null);
                expect(localId).assertEqual(testLocalId);
                console.debug("====>ActsOsAccountQueryIdFormUid_0100 end====");
                done();
            });
        });

        /*
        * @tc.number  : ActsOsAccountQueryIdFormUid_0200
62
        * @tc.name    : getOsAccountLocalIdForUid promise
1
15829070344 已提交
63 64 65 66 67
        * @tc.desc    : Verify that the user localId is obtained by uid
        */
        it('ActsOsAccountQueryIdFormUid_0200', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryIdFormUid_0200 start====");
            var osAccountManager = osaccount.getAccountManager();
68
            var testLocalId = await osAccountManager.getOsAccountLocalId();
1
15829070344 已提交
69 70 71 72 73
            console.debug("====>get AccountManager finish====");
            var bundleName = "com.example.actsosaccountthirdpartytest";
            var bundleInfo = await bundle.getBundleInfo(bundleName, bundle.BundleFlag.GET_BUNDLE_WITH_ABILITIES);
            var uid = bundleInfo.uid;
            console.debug("====>obtained uid:" + uid);
74
            var localId = await osAccountManager.getOsAccountLocalIdForUid(uid);
1
15829070344 已提交
75 76 77 78 79 80 81 82
            console.debug("====>localId obtained by uid:" + localId);
            expect(localId).assertEqual(testLocalId);
            console.debug("====>ActsOsAccountQueryIdFormUid_0200 end====");
            done();
        });

        /*
        * @tc.number  : ActsOsAccountQueryIdFormUid_0300
83
        * @tc.name    : getOsAccountLocalIdForUid callback
1
15829070344 已提交
84 85 86 87 88 89 90
        * @tc.desc    : Authentication failed to query user by uid -1
        */
        it('ActsOsAccountQueryIdFormUid_0300', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryIdFormUid_0300 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            var incorrectUid = -1;
91
            osAccountManager.getOsAccountLocalIdForUid(incorrectUid, (err, localId)=>{
1
15829070344 已提交
92 93 94 95 96 97 98 99 100 101 102
                console.debug("====>get localId err: " + JSON.stringify(err));
                console.debug("====>localId obtained by uid:" + localId);
                expect(err.code).assertEqual(ERR_INVALID_PARAMETER);
                expect(localId).assertEqual(null);
                console.debug("====>ActsOsAccountQueryIdFormUid_0300 end====");
                done();
            });
        });

        /*
        * @tc.number  : ActsOsAccountQueryIdFormUid_0400
103
        * @tc.name    : getOsAccountLocalIdForUid promise
1
15829070344 已提交
104 105 106 107 108 109 110 111
        * @tc.desc    : Authentication failed to query user by uid -1
        */
        it('ActsOsAccountQueryIdFormUid_0400', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryIdFormUid_0400 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            var incorrectUid = -1;
            try{
112
                await osAccountManager.getOsAccountLocalIdForUid(incorrectUid);
1
15829070344 已提交
113 114 115 116 117 118 119 120 121 122
            }catch(err){
                console.debug("====>get localId by uid err:"  +JSON.stringify(err));
                expect(err.code).assertEqual(ERR_INVALID_PARAMETER);
                console.debug("====>ActsOsAccountQueryIdFormUid_0400 end====");
                done();
            }
        });

        /*
        * @tc.number  : ActsOsAccountQueryIdFormUid_0500
123
        * @tc.name    : getOsAccountLocalIdForUid callback
1
15829070344 已提交
124 125 126 127 128 129 130
        * @tc.desc    : Authentication failed to query user by uid 2147483648
        */
        it('ActsOsAccountQueryIdFormUid_0500', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryIdFormUid_0500 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            var incorrectUid = 2147483648;
131
            osAccountManager.getOsAccountLocalIdForUid(incorrectUid, (err, localId)=>{
1
15829070344 已提交
132 133 134 135 136 137 138 139 140 141 142
                console.debug("====>get localId err: " + JSON.stringify(err));
                console.debug("====>localId obtained by uid:" + localId);
                expect(err.code).assertEqual(ERR_INVALID_PARAMETER);
                expect(localId).assertEqual(null);
                console.debug("====>ActsOsAccountQueryIdFormUid_0500 end====");
                done();
            });
        });

        /*
        * @tc.number  : ActsOsAccountQueryIdFormUid_0600
143
        * @tc.name    : getOsAccountLocalIdForUid promise
1
15829070344 已提交
144 145 146 147 148 149 150 151
        * @tc.desc    : Authentication failed to query user by uid 2147483648
        */
        it('ActsOsAccountQueryIdFormUid_0600', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryIdFormUid_0600 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            var incorrectUid = 2147483648;
            try{
152
                await osAccountManager.getOsAccountLocalIdForUid(incorrectUid);
1
15829070344 已提交
153 154 155 156 157 158 159 160 161 162
            }catch(err){
                console.debug("====>get localId by uid err:"  +JSON.stringify(err));
                expect(err.code).assertEqual(ERR_INVALID_PARAMETER);
                console.debug("====>ActsOsAccountQueryIdFormUid_0600 end====");
                done();
            }
        });

        /*
        * @tc.number  : ActsOsAccountQueryIdFormProcess_0100
163
        * @tc.name    : getOsAccountLocalId callback
1
15829070344 已提交
164 165 166 167 168 169 170 171
        * @tc.desc    : Verify that the user localId obtained from the current process uid
        */
        it('ActsOsAccountQueryIdFormProcess_0100', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryIdFormProcess_0100 start====");
            var osAccountManager = osaccount.getAccountManager();
            var bundleName = "com.example.actsosaccountthirdpartytest";
            var bundleInfo = await bundle.getBundleInfo(bundleName, bundle.BundleFlag.GET_BUNDLE_WITH_ABILITIES);
            var uid = bundleInfo.uid;
172
            var testLocalId = await osAccountManager.getOsAccountLocalIdForUid(uid)
1
15829070344 已提交
173
            console.debug("====>get AccountManager finish====");
174
            osAccountManager.getOsAccountLocalId((err, localId)=>{
1
15829070344 已提交
175 176 177 178 179 180 181 182 183 184 185
                console.debug("====>get localId err: " + JSON.stringify(err));
                console.debug("====>localId obtained by process:" + localId);
                expect(err).assertEqual(null);
                expect(localId).assertEqual(testLocalId);
                console.debug("====>ActsOsAccountQueryIdFormProcess_0100 end====");
                done();
            });
        });

        /*
        * @tc.number  : ActsOsAccountQueryIdFormProcess_0200
186
        * @tc.name    : getOsAccountLocalId promise
1
15829070344 已提交
187 188 189 190 191 192 193 194
        * @tc.desc    : Verify that the user localId obtained from the current process uid
        */
        it('ActsOsAccountQueryIdFormProcess_0200', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryIdFormProcess_0200 start====");
            var osAccountManager = osaccount.getAccountManager();
            var bundleName = "com.example.actsosaccountthirdpartytest";
            var bundleInfo = await bundle.getBundleInfo(bundleName, bundle.BundleFlag.GET_BUNDLE_WITH_ABILITIES);
            var uid = bundleInfo.uid;
195
            var testLocalId = await osAccountManager.getOsAccountLocalIdForUid(uid)
1
15829070344 已提交
196 197
            console.debug("====>testLocalId obtained by process:" + testLocalId)
            console.debug("====>get AccountManager finish====");
198
            var localId = await osAccountManager.getOsAccountLocalId();
1
15829070344 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
            console.debug("====>localId obtained by process:" + localId);
            expect(localId).assertEqual(testLocalId);
            console.debug("====>ActsOsAccountQueryIdFormProcess_0200 end====");
            done();
        });

        /*
        * @tc.number  : ActsOsAccountgetType_0100
        * @tc.name    : getOsAccountType callback
        * @tc.desc    : Verify that the user type obtained from the current process uid
        */
        it('ActsOsAccountgetType_0100', 0, async function (done) {
            console.debug("====>ActsOsAccountgetType_0100 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            osAccountManager.getOsAccountType((err, accountType)=>{
                console.debug("====>get type err: " + JSON.stringify(err));
                console.debug("====>type obtained by process:" + JSON.stringify(accountType));
                expect(err).assertEqual(null);
218
                expect(accountType).assertEqual(0);
1
15829070344 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
                console.debug("====>ActsOsAccountgetType_0100 end====");
                done();
            });
        });

        /*
        * @tc.number  : ActsOsAccountgetType_0200
        * @tc.name    : getOsAccountType promise
        * @tc.desc    : Verify that the user type obtained from the current process uid
        */
        it('ActsOsAccountgetType_0200', 0, async function (done) {
            console.debug("====>ActsOsAccountgetType_0200 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            var accountType = await osAccountManager.getOsAccountType();
            console.debug("====>type obtained by process:" + JSON.stringify(accountType));
235
            expect(accountType).assertEqual(0);
1
15829070344 已提交
236 237 238 239 240 241
            console.debug("====>ActsOsAccountgetType_0200 end====");
            done();
        });

        /*
        * @tc.number  : ActsOsAccountQueryLocalIdSerial_0100
242
        * @tc.name    : getSerialNumberForOsAccountLocalId callback
1
15829070344 已提交
243 244 245 246 247
        * @tc.desc    : Verify query serialNumber by 100 user and query 100 user by serialNumber
        */
        it('ActsOsAccountQueryLocalIdSerial_0100', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0100 start====");
            var osAccountManager = osaccount.getAccountManager();
248
            var testLocalId = await osAccountManager.getOsAccountLocalId();
1
15829070344 已提交
249
            console.debug("====>get AccountManager finish====");
250
            osAccountManager.getSerialNumberForOsAccountLocalId(testLocalId, (err, serialNumber)=>{
1
15829070344 已提交
251 252 253 254 255 256 257
                console.debug("====>ger serialNumber err:" + JSON.stringify(err));
                console.debug("====>get serialNumber:" + serialNumber + " by localId: 100" );
                expect(err).assertEqual(null);
                var serialNumberStr = serialNumber.toString();
                var serialIntercept = serialNumberStr.substring(8);
                console.debug("====>truncate the last eight characters: " + serialIntercept);
                expect(serialIntercept).assertEqual("00000001");
258
                osAccountManager.getOsAccountLocalIdForSerialNumber(serialNumber, (err, localId)=>{
1
15829070344 已提交
259 260 261 262 263 264 265 266 267 268 269 270
                    console.debug("====>ger localId err:" + JSON.stringify(err));
                    console.debug("====>get localId:" + localId + " by serialNumber: " + serialNumber);
                    expect(err).assertEqual(null);
                    expect(localId).assertEqual(testLocalId);
                    console.debug("====>ActsOsAccountQueryLocalIdSerial_0100 end====");
                    done();
                })
            })
        });

        /*
        * @tc.number  : ActsOsAccountQueryLocalIdSerial_0200
271
        * @tc.name    : getSerialNumberForOsAccountLocalId promise
1
15829070344 已提交
272 273 274 275 276
        * @tc.desc    : Verify query serialNumber by 100 user and query 100 user by serialNumber
        */
        it('ActsOsAccountQueryLocalIdSerial_0200', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0200 start====");
            var osAccountManager = osaccount.getAccountManager();
277
            var testLocalId = await osAccountManager.getOsAccountLocalId();
1
15829070344 已提交
278
            console.debug("====>get AccountManager finish====");
279
            var serialNumber = await osAccountManager.getSerialNumberForOsAccountLocalId(testLocalId);
1
15829070344 已提交
280 281 282 283 284
            console.debug("====>get serialNumber:" + serialNumber + " by localId: 100" );
            var serialNumberStr = serialNumber.toString();
            var serialIntercept = serialNumberStr.substring(8);
            console.debug("====>truncate the last eight characters: " + serialIntercept);
            expect(serialIntercept).assertEqual("00000001");
285
            var localId = await osAccountManager.getOsAccountLocalIdForSerialNumber(serialNumber);
1
15829070344 已提交
286 287 288 289 290 291 292 293
            console.debug("====>get localId:" + localId + " by serialNumber: " + serialNumber);
            expect(localId).assertEqual(testLocalId);
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0200 end====");
            done();
        });

        /*
        * @tc.number  : ActsOsAccountQueryLocalIdSerial_0300
294
        * @tc.name    : getOsAccountLocalIdForSerialNumber callback
1
15829070344 已提交
295 296 297 298 299 300
        * @tc.desc    : Verify query serialNumber by 0 user and query 0 user by serialNumber
        */
        it('ActsOsAccountQueryLocalIdSerial_0300', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0300 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
301
            osAccountManager.getSerialNumberForOsAccountLocalId(0, (err, serialNumber)=>{
1
15829070344 已提交
302 303 304 305 306 307 308
                console.debug("====>ger serialNumber err:" + JSON.stringify(err));
                console.debug("====>get serialNumber:" + serialNumber + " by localId: 0" );
                expect(err).assertEqual(null);
                var serialNumberStr = serialNumber.toString();
                var serialIntercept = serialNumberStr.substring(8);
                console.debug("====>truncate the last eight characters: " + serialIntercept);
                expect(serialIntercept).assertEqual("00000000");
309
                osAccountManager.getOsAccountLocalIdForSerialNumber(serialNumber, (err, localId)=>{
1
15829070344 已提交
310 311 312 313 314 315 316 317 318 319 320 321
                    console.debug("====>ger localId err:" + JSON.stringify(err));
                    console.debug("====>get localId:" + localId + " by serialNumber: " + serialNumber);
                    expect(err).assertEqual(null);
                    expect(localId).assertEqual(0);
                    console.debug("====>ActsOsAccountQueryLocalIdSerial_0300 end====");
                    done();
                })
            })
        });

        /*
        * @tc.number  : ActsOsAccountQueryLocalIdSerial_0400
322
        * @tc.name    : getOsAccountLocalIdForSerialNumber promise
1
15829070344 已提交
323 324 325 326 327 328
        * @tc.desc    : Verify query serialNumber by 0 user and query 0 user by serialNumber
        */
        it('ActsOsAccountQueryLocalIdSerial_0400', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0400 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
329
            var serialNumber = await osAccountManager.getSerialNumberForOsAccountLocalId(0);
1
15829070344 已提交
330 331 332 333 334
            console.debug("====>get serialNumber:" + serialNumber + " by localId: 0" );
            var serialNumberStr = serialNumber.toString();
            var serialIntercept = serialNumberStr.substring(8);
            console.debug("====>truncate the last eight characters: " + serialIntercept);
            expect(serialIntercept).assertEqual("00000000");
335
            var localId = await osAccountManager.getOsAccountLocalIdForSerialNumber(serialNumber);
1
15829070344 已提交
336 337 338 339 340 341 342 343
            console.debug("====>get localId:" + localId + " by serialNumber: " + serialNumber);
            expect(localId).assertEqual(0);
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0400 end====");
            done();
        });

        /*
        * @tc.number  : ActsOsAccountQueryLocalIdSerial_0500
344
        * @tc.name    : getSerialNumberForOsAccountLocalId callback
1
15829070344 已提交
345 346 347 348 349 350 351 352 353 354 355 356 357 358
        * @tc.desc    : Verify the query for the newly created user serialNumber and query the owning user through the
        *               serialNumber
        */
        it('ActsOsAccountQueryLocalIdSerial_0500', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0500 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            var localId;
            osAccountManager.createOsAccount("osAccountNameIdSerialA", osaccount.OsAccountType.NORMAL, (err, data)=>{
                console.debug("====>create os account err: " + JSON.stringify(err));
                console.debug("====>create os account OsAccountInfo: " + JSON.stringify(data));
                expect(err).assertEqual(null);
                expect(data.localName).assertEqual("osAccountNameIdSerialA");
                expect(data.domainInfo.accountName == "").assertEqual(true)
359
                expect(data.type).assertEqual(1);
1
15829070344 已提交
360 361 362 363 364 365 366 367 368 369 370
                expect(data.constraints.length > 0).assertEqual(true);
                expect(data.isVerified).assertEqual(false);
                expect(data.distributedInfo.name != null).assertEqual(true);
                expect(data.domainInfo.domain == "").assertEqual(true);
		        expect(data.photo == "").assertEqual(true);
            	expect(data.createTime != "").assertEqual(true);
            	expect(data.lastLoginTime>=0).assertEqual(true);
            	expect(data.serialNumber.toString().length == 16).assertEqual(true);
            	expect(data.isActived).assertEqual(false);
            	expect(data.isCreateCompleted).assertEqual(true)
                localId = data.localId;
371
                osAccountManager.getSerialNumberForOsAccountLocalId(localId, (err, serialNumber)=>{
1
15829070344 已提交
372 373 374
                    console.debug("====>queryOsAccountById err:" + JSON.stringify(err));
                    console.debug("====>get serialNumber:" + serialNumber + " by localId: " + localId);
                    expect(err).assertEqual(null);
375
                    osAccountManager.getOsAccountLocalIdForSerialNumber(serialNumber, (err, getlocalId)=>{
1
15829070344 已提交
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
                        console.debug("====>ger localId err:" + JSON.stringify(err));
                        console.debug("====>get localId:" + getlocalId + " by serialNumber: " + serialNumber);
                        expect(err).assertEqual(null);
                        expect(getlocalId).assertEqual(localId);
                        osAccountManager.removeOsAccount(localId, (err)=>{
                            console.debug("====>remove localId: " + localId + " err:" + JSON.stringify(err));
                            expect(err).assertEqual(null);
                            console.debug("====>ActsOsAccountQueryLocalIdSerial_0500 end====");
                            done();
                        })
                    })
                })
            })
        });

        /*
        * @tc.number  : ActsOsAccountQueryLocalIdSerial_0600
393
        * @tc.name    : getOsAccountLocalIdForSerialNumber promise
1
15829070344 已提交
394 395 396 397 398 399 400 401 402 403 404 405
        * @tc.desc    : Verify the query for the newly created user serialNumber and query the owning user through the
        *               serialNumber
        */
        it('ActsOsAccountQueryLocalIdSerial_0600', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0600 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            var localId;
            var OsAccountInfo = await osAccountManager.createOsAccount("accountIdSerialB", osaccount.OsAccountType.GUEST);
            console.debug("====>create os account OsAccountInfo: " + JSON.stringify(OsAccountInfo));
            expect(OsAccountInfo.localName).assertEqual("accountIdSerialB");
            localId = OsAccountInfo.localId;
406
            var serialNumber = await osAccountManager.getSerialNumberForOsAccountLocalId(localId);
1
15829070344 已提交
407
            console.debug("====>get serialNumber:" + serialNumber + " by localId: " + localId);
408
            var getlocalId = await osAccountManager.getOsAccountLocalIdForSerialNumber(serialNumber);
1
15829070344 已提交
409 410 411 412 413 414 415 416 417 418 419 420
            console.debug("====>get localId:" + getlocalId + " by serialNumber: " + serialNumber);
            expect(getlocalId).assertEqual(localId);
            await osAccountManager.removeOsAccount(localId);
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0600 end====");
            done();
        });

        /*
        * @tc.number  : ActsOsAccountQueryCounts_0100
        * @tc.name    : getOsAccountCount callback
        * @tc.desc    : Verify to obtain the number os all os accounts created
        */
J
jinhaihw 已提交
421
          it('ActsOsAccountQueryCounts_0100', 0, async function (done) {
1
15829070344 已提交
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
            console.debug("====>ActsOsAccountQueryCounts_0100 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            var obtainCount = 0;
            var localIdFir;
            var localIdSec;
            osAccountManager.getOsAccountCount((err, data)=>{
                console.debug("====>obtains the number of all os accounts created err:" + JSON.stringify(err));
                console.debug("====>obtains the number of all os accounts created data:" + data);
                expect(err).assertEqual(null);
                obtainCount = data;
                osAccountManager.createOsAccount("osAccountNameIdSerialE", osaccount.OsAccountType.NORMAL, (err, data)=>{
                    console.debug("====>create first os account err: " + JSON.stringify(err));
                    console.debug("====>create first os account OsAccountInfo: " + JSON.stringify(data));
                    localIdFir = data.localId;
                    expect(err).assertEqual(null);
                    expect(data.localName).assertEqual("osAccountNameIdSerialE");
J
jinhaihw 已提交
439 440 441 442 443 444
                 //   osAccountManager.createOsAccount("osAccountIdSerialF", osaccount.OsAccountType.NORMAL, (err, data)=>{
                  //      console.debug("====>create second os account err: " + JSON.stringify(err));
                   //     console.debug("====>create second os account OsAccountInfo: " + JSON.stringify(data));
                   //     localIdSec = data.localId;
                   //     expect(err).assertEqual(null);
                    //    expect(data.localName).assertEqual("osAccountIdSerialF");
1
15829070344 已提交
445 446 447 448
                        osAccountManager.getOsAccountCount((err, count)=>{
                            console.debug("====>obtains the number of all os accounts created err:" + JSON.stringify(err));
                            console.debug("====>obtains the number of all os accounts created count:" + count);
                            expect(err).assertEqual(null);
J
jinhaihw 已提交
449
                            count = count - 1;
1
15829070344 已提交
450 451 452 453 454
                            expect(count).assertEqual(obtainCount);
                            osAccountManager.removeOsAccount(localIdFir, (err)=>{
                                console.debug("====>remove localId: " + localIdFir + " err:" + JSON.stringify(err));
                                expect(err).assertEqual(null);
                                osAccountManager.getOsAccountCount((err, data)=>{
J
jinhaihw 已提交
455
                                  console.debug("====>obtains the number accounts created err:" + JSON.stringify(err));
1
15829070344 已提交
456
                                    console.debug("====>obtains the number accounts created data:" + data);
J
jinhaihw 已提交
457 458 459 460 461 462
                                  expect(err).assertEqual(null);
                                //    data = data - 1;
                                   expect(data).assertEqual(obtainCount);
                                 //   osAccountManager.removeOsAccount(localIdSec, (err)=>{
                                  //      console.debug("====>remove localId: " + localIdSec + " err:" + JSON.stringify(err));
                                  //      expect(err).assertEqual(null);
1
15829070344 已提交
463 464
                                        console.debug("====>ActsOsAccountQueryCounts_0100 end====");
                                        done();
J
jinhaihw 已提交
465 466
                                   // })
                               })
1
15829070344 已提交
467 468
                            })
                        })
J
jinhaihw 已提交
469
                   // })
1
15829070344 已提交
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
                })
            })
        })

        /*
        * @tc.number  : ActsOsAccountQueryCounts_0200
        * @tc.name    : getOsAccountCount promise
        * @tc.desc    : Verify to obtain the number os all os accounts created
        */
        it('ActsOsAccountQueryCounts_0200', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryCounts_0200 start====");
            var osAccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            var obtainCount = await osAccountManager.getOsAccountCount();
            console.debug("====>obtains the number of all os accounts created:" + obtainCount);
            var osAccountFir = await osAccountManager.createOsAccount("osAccountIdSerialG", osaccount.OsAccountType.NORMAL);
            console.debug("====>create first os account OsAccountInfo: " + JSON.stringify(osAccountFir));
            var localIdFir = osAccountFir.localId;
            expect(osAccountFir.localName).assertEqual("osAccountIdSerialG");
J
jinhaihw 已提交
489 490 491 492
           // var osAccountSec = await osAccountManager.createOsAccount("osAccountIdSerialH", osaccount.OsAccountType.NORMAL);
           // console.debug("====>create second os account OsAccountInfo: " + JSON.stringify(osAccountSec));
          //  var localIdSec = osAccountSec.localId;
           // expect(osAccountSec.localName).assertEqual("osAccountIdSerialH");
1
15829070344 已提交
493 494
            var countFir = await osAccountManager.getOsAccountCount();            
            console.debug("====>obtains the number of all os accounts created count:" + countFir);
J
jinhaihw 已提交
495
            countFir = countFir - 1;
1
15829070344 已提交
496 497 498
            expect(countFir).assertEqual(obtainCount);
            await osAccountManager.removeOsAccount(localIdFir);
            console.debug("====>remove localId: " + localIdFir);
J
jinhaihw 已提交
499 500 501 502 503 504
          //  var countSec = await osAccountManager.getOsAccountCount();
          //  console.debug("====>obtains the number accounts created count:" + countSec);
          //  countSec = countSec - 1;
          //  expect(countSec).assertEqual(obtainCount);
           // await osAccountManager.removeOsAccount(localIdSec);
           // console.debug("====>remove localId: " + localIdSec);
1
15829070344 已提交
505 506 507 508
            console.debug("====>ActsOsAccountQueryCounts_0200 end====");
            done();
        })

J
jinhaihw 已提交
509

1
15829070344 已提交
510 511
        /*
        * @tc.number  : ActsOsAccountGetActivedOsAccountIds_0100
512
        * @tc.name    : getActivatedOsAccountLocalIds callback
1
15829070344 已提交
513 514 515 516 517
        * @tc.desc    : query activated osAccount Ids
        */
        it('ActsOsAccountGetActivedOsAccountIds_0100', 0, async function (done) {
            console.debug("====>ActsOsAccountGetActivedOsAccountIds_0100 start====");
            var osAccountManager = osaccount.getAccountManager();
518
            osAccountManager.getActivatedOsAccountLocalIds((err,dataArray)=>{
1
15829070344 已提交
519 520 521 522 523 524 525 526 527 528
                console.info("====>ActsOsAccountGQueryActicedOsAccountIds_0100 err :" + JSON.stringify(err));
                expect(err).assertEqual(null)
                console.info("====>ActsOsAccountGQueryActicedOsAccountIds_0100 dataArray:" + dataArray);
                expect(dataArray.length).assertEqual(1)
                done();
            })
        })
        
        /*
        * @tc.number  : ActsOsAccountGetActivedOsAccountIds_0200
529
        * @tc.name    : getActivatedOsAccountLocalIds promise
1
15829070344 已提交
530 531 532 533 534
        * @tc.desc    : query activated osAccount Ids
        */
        it('ActsOsAccountGetActivedOsAccountIds_0200', 0, async function (done) {
            console.debug("====>ActsOsAccountGetActivedOsAccountIds_0200 start====");
            var osAccountManager = osaccount.getAccountManager(); 
535
            osAccountManager.getActivatedOsAccountLocalIds().then((dataArray)=>{
1
15829070344 已提交
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586
                console.debug("====>ActsOsAccountGetActivedOsAccountIds_0200 data" + JSON.stringify(dataArray))
                expect(dataArray.length).assertEqual(1)
                done();
            }).catch((err)=>{
                console.info("====>ActsOsAccountGetActivedOsAccountIds_0200 err " + JSON.stringify(err));
                expect(err).assertFalse(null)
                done();
            });
        })


        /*
        * @tc.number  : ActsOsAccountCheckConstraints_0300
        * @tc.name    : Constraints callback
        * @tc.desc    : get 0 local user all constraints
        */
        it('ActsOsAccountCheckConstraints_3100', 0, async function(done){
            console.debug("====>ActsOsAccountCheckConstraints_3100 start====");
            var AccountManager = osaccount.getAccountManager();
            console.debug("====>get AccountManager finish====");
            AccountManager.getOsAccountConstraints(0, (err, constraints)=>{
                console.debug("====>getOsAccountConstraints err:" + JSON.stringify(err));
                console.debug("====>getOsAccountConstraints:" + JSON.stringify(constraints));
                expect(err).assertEqual(null);
                expect(constraints.length).assertEqual(0);
                console.debug("====>ActsOsAccountCheckConstraints_3100 end====");
                done();
            })
        })

        /*
        * @tc.number  : ActsOsAccountCheckConstraints_0400
        * @tc.name    : Constraints promise
        * @tc.desc    : get 0 local user all constraints
        */
        it('ActsOsAccountCheckConstraints_3200', 0, async function(done){
            console.debug("====>ActsOsAccountCheckConstraints_3200 start====");
            var AccountManager = osaccount.getAccountManager();
            console.debug("get AccountManager finish====");
            AccountManager.getOsAccountConstraints(0).then((data)=>{
                console.debug("====>ActsOsAccountCheckConstraints_3200 getOsAccountConstraints data:" + data);
                done();
            }).catch((err)=>{
                console.debug("====>ActsOsAccountCheckConstraints_3200 getOsAccountConstraints err:" + JSON.stringify(err));
                expect().assertFalse()
                done();
            })
        })

        /**
        * @tc.number     ActsOsAccountQueryDomainTest_0300
587 588
        * @tc.name       Test createOsAccountForDomain getOsAccountLocalIdForDomain callback
        * @tc.desc       Test createOsAccountForDomain getOsAccountLocalIdForDomain API functionality
1
15829070344 已提交
589 590 591 592
        */
        it('ActsOsAccountQueryDomainTest_0300', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryDomainTest_0100 start====");
            var osAccountManager = osaccount.getAccountManager();
593
            osAccountManager.getOsAccountLocalIdForDomain({domain: "", accountName: ""}, (err)=>{
1
15829070344 已提交
594 595 596 597 598 599 600 601 602
                console.debug("====>ActsOsAccountQueryDomainTest_0300 err:" + JSON.stringify(err));
                expect(err.code != 0).assertEqual(true)
                console.debug("====>ActsOsAccountQueryDomainTest_0300 end====");
                done();
            })
        });

        /**
        * @tc.number     ActsOsAccountQueryDomainTest_0400
603 604
        * @tc.name       Test createOsAccountForDomain getOsAccountLocalIdForDomain pormise
        * @tc.desc       Test createOsAccountForDomain getOsAccountLocalIdForDomain API functionality
1
15829070344 已提交
605 606 607 608
        */
         it('ActsOsAccountQueryDomainTest_0400', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryDomainTest_0400 start====");
            var osAccountManager = osaccount.getAccountManager();
609
            osAccountManager.getOsAccountLocalIdForDomain({domain: "", accountName: ""}).then((accountID)=>{
1
15829070344 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
                console.debug("ActsOsAccountQueryDomainTest_0400 accountID:" + JSON.stringify(accountID))
                done();
            }).catch((err)=>{
                console.debug("ActsOsAccountQueryDomainTest_0400 err:" + JSON.stringify(err))
                expect(err.code != 0).assertEqual(true)
                done();
            })
        });

        /*
        * @tc.number  : ActsOsAccountGetCurrent_2100
        * @tc.name    : getCurrentOsAccount callback
        * @tc.desc    : Get the os account information to which the application belongs
        */
        it('ActsOsAccountGetCurrent_2100', 0, async function(done){
            console.debug("====>ActsOsAccountGetCurrent_2100 start====");
            var AccountManager = osaccount.getAccountManager();
            console.debug("====>get os AccountManager finish====");
            AccountManager.getCurrentOsAccount((err, data)=>{
                console.debug("====>getCurrentOsAccount err:" + JSON.stringify(err));
                console.debug("====>getCurrentOsAccount data:" + JSON.stringify(data));
                expect(err).assertEqual(null);
                console.debug("====>ActsOsAccountGetCurrent_2100 end====");
                done();
            })
        })

        /*
        * @tc.number  : ActsOsAccountGetCurrent_1800
        * @tc.name    : getCurrentOsAccount promise
        * @tc.desc    : Get the os account information to which the application belongs
        */
        it('ActsOsAccountGetCurrent_2200', 0, async function(done){
            console.debug("====>ActsOsAccountGetCurrent_2200 start====");
            var AccountManager = osaccount.getAccountManager();
            console.debug("====>get os AccountManager finish====");
            var data = await AccountManager.getCurrentOsAccount();
            console.debug("====>getCurrentOsAccount data:" + JSON.stringify(data));
            expect(data.localId).assertEqual(100);
649
             expect(data.type).assertEqual(0);
1
15829070344 已提交
650 651 652 653 654 655 656 657 658 659 660 661
            var serialNumberStr = data.serialNumber.toString();
            var serialIntercept = serialNumberStr.substring(8);
            console.debug("====>truncate the last eight characters: " + serialIntercept);
            expect(serialIntercept).assertEqual("00000001");
            expect(data.isCreateCompleted).assertTrue();
            console.debug("====>ActsOsAccountGetCurrent_2200 end====");
            done();
        })


        /*
        * @tc.number  : ActsOsAccountCheckConstraints_3300
662
        * @tc.name    : checkOsAccountConstraintEnabled callback
1
15829070344 已提交
663 664 665 666 667 668
        * @tc.desc    : the application call interface does not meet the permissions
        */
        it('ActsOsAccountCheckConstraints_3300', 0, async function(done){
            console.debug("====>ActsOsAccountCheckConstraints_3300 start====");
            var AccountManager = osaccount.getAccountManager();
            console.debug("====>get os AccountManager finish====");
669 670
            AccountManager.checkOsAccountConstraintEnabled(100, "constraint.bluetooth", (err, result)=>{
                console.debug("====>checkOsAccountConstraintEnabled err:" + JSON.stringify(err));
1
15829070344 已提交
671 672 673 674 675 676 677 678 679
                expect(err).assertEqual(null);
                expect(result).assertTrue();
                console.debug("====>ActsOsAccountCheckConstraints_3300 end====");
                done();
            })
        })

        /*
        * @tc.number  : ActsOsAccountPermission_3400
680
        * @tc.name    : checkOsAccountConstraintEnabled promise
1
15829070344 已提交
681 682 683 684 685 686 687
        * @tc.desc    : the application call interface does not meet the permissions
        */
        it('ActsOsAccountCheckConstraints_3400', 0, async function(done){
            console.debug("====>ActsOsAccountCheckConstraints_3400 start====");
            var AccountManager = osaccount.getAccountManager();
            console.debug("====>get os AccountManager finish====");
            try{
688
                await AccountManager.checkOsAccountConstraintEnabled(100, "constraint.bluetooth");
1
15829070344 已提交
689 690 691
                done();
            }
            catch(err){
692
                console.debug("====>checkOsAccountConstraintEnabled err:" + JSON.stringify(err));
1
15829070344 已提交
693 694 695 696 697 698 699
                expect(err).assertEqual(null);
                console.debug("====>ActsOsAccountCheckConstraints_3400 end====");
                done();
            }
        })       
    })
}