OsAccountQuery.test.js 38.0 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 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
/*
 * 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
        * @tc.name    : queryOsAccountLocalIdFromUid callback
        * @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();
            var testLocalId = await osAccountManager.queryOsAccountLocalIdFromProcess();
            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);
            osAccountManager.queryOsAccountLocalIdFromUid(uid, (err, localId)=>{
                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
        * @tc.name    : queryOsAccountLocalIdFromUid promise
        * @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();
            var testLocalId = await osAccountManager.queryOsAccountLocalIdFromProcess();
            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);
            var localId = await osAccountManager.queryOsAccountLocalIdFromUid(uid);
            console.debug("====>localId obtained by uid:" + localId);
            expect(localId).assertEqual(testLocalId);
            console.debug("====>ActsOsAccountQueryIdFormUid_0200 end====");
            done();
        });

        /*
        * @tc.number  : ActsOsAccountQueryIdFormUid_0300
        * @tc.name    : queryOsAccountLocalIdFromUid callback
        * @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;
            osAccountManager.queryOsAccountLocalIdFromUid(incorrectUid, (err, localId)=>{
                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
        * @tc.name    : queryOsAccountLocalIdFromUid promise
        * @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{
                await osAccountManager.queryOsAccountLocalIdFromUid(incorrectUid);
            }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
        * @tc.name    : queryOsAccountLocalIdFromUid callback
        * @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;
            osAccountManager.queryOsAccountLocalIdFromUid(incorrectUid, (err, localId)=>{
                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
        * @tc.name    : queryOsAccountLocalIdFromUid promise
        * @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{
                await osAccountManager.queryOsAccountLocalIdFromUid(incorrectUid);
            }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
        * @tc.name    : queryOsAccountLocalIdFromProcess callback
        * @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;
            var testLocalId = await osAccountManager.queryOsAccountLocalIdFromUid(uid)
            console.debug("====>get AccountManager finish====");
            osAccountManager.queryOsAccountLocalIdFromProcess((err, localId)=>{
                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
        * @tc.name    : queryOsAccountLocalIdFromProcess promise
        * @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;
            var testLocalId = await osAccountManager.queryOsAccountLocalIdFromUid(uid)
            console.debug("====>testLocalId obtained by process:" + testLocalId)
            console.debug("====>get AccountManager finish====");
            var localId = await osAccountManager.queryOsAccountLocalIdFromProcess();
            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 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
            console.debug("====>ActsOsAccountgetType_0200 end====");
            done();
        });

        /*
        * @tc.number  : ActsOsAccountQueryLocalIdSerial_0100
        * @tc.name    : querySerialNumberByOsAccountLocalId callback
        * @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();
            var testLocalId = await osAccountManager.queryOsAccountLocalIdFromProcess();
            console.debug("====>get AccountManager finish====");
            osAccountManager.querySerialNumberByOsAccountLocalId(testLocalId, (err, serialNumber)=>{
                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");
                osAccountManager.queryOsAccountLocalIdBySerialNumber(serialNumber, (err, localId)=>{
                    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
        * @tc.name    : querySerialNumberByOsAccountLocalId promise
        * @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();
            var testLocalId = await osAccountManager.queryOsAccountLocalIdFromProcess();
            console.debug("====>get AccountManager finish====");
            var serialNumber = await osAccountManager.querySerialNumberByOsAccountLocalId(testLocalId);
            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");
            var localId = await osAccountManager.queryOsAccountLocalIdBySerialNumber(serialNumber);
            console.debug("====>get localId:" + localId + " by serialNumber: " + serialNumber);
            expect(localId).assertEqual(testLocalId);
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0200 end====");
            done();
        });

        /*
        * @tc.number  : ActsOsAccountQueryLocalIdSerial_0300
        * @tc.name    : queryOsAccountLocalIdBySerialNumber callback
        * @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====");
            osAccountManager.querySerialNumberByOsAccountLocalId(0, (err, serialNumber)=>{
                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");
                osAccountManager.queryOsAccountLocalIdBySerialNumber(serialNumber, (err, localId)=>{
                    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
        * @tc.name    : queryOsAccountLocalIdBySerialNumber promise
        * @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====");
            var serialNumber = await osAccountManager.querySerialNumberByOsAccountLocalId(0);
            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");
            var localId = await osAccountManager.queryOsAccountLocalIdBySerialNumber(serialNumber);
            console.debug("====>get localId:" + localId + " by serialNumber: " + serialNumber);
            expect(localId).assertEqual(0);
            console.debug("====>ActsOsAccountQueryLocalIdSerial_0400 end====");
            done();
        });

        /*
        * @tc.number  : ActsOsAccountQueryLocalIdSerial_0500
        * @tc.name    : querySerialNumberByOsAccountLocalId callback
        * @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 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
                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;
                osAccountManager.querySerialNumberByOsAccountLocalId(localId, (err, serialNumber)=>{
                    console.debug("====>queryOsAccountById err:" + JSON.stringify(err));
                    console.debug("====>get serialNumber:" + serialNumber + " by localId: " + localId);
                    expect(err).assertEqual(null);
                    osAccountManager.queryOsAccountLocalIdBySerialNumber(serialNumber, (err, getlocalId)=>{
                        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
        * @tc.name    : queryOsAccountLocalIdBySerialNumber promise
        * @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;
            var serialNumber = await osAccountManager.querySerialNumberByOsAccountLocalId(localId);
            console.debug("====>get serialNumber:" + serialNumber + " by localId: " + localId);
            var getlocalId = await osAccountManager.queryOsAccountLocalIdBySerialNumber(serialNumber);
            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 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 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 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 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
        /*
        * @tc.number  : ActsOsAccountGetActivedOsAccountIds_0100
        * @tc.name    : getActivatedOsAccountIds callback
        * @tc.desc    : query activated osAccount Ids
        */
        it('ActsOsAccountGetActivedOsAccountIds_0100', 0, async function (done) {
            console.debug("====>ActsOsAccountGetActivedOsAccountIds_0100 start====");
            var osAccountManager = osaccount.getAccountManager();
            osAccountManager.getActivatedOsAccountIds((err,dataArray)=>{
                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
        * @tc.name    : getActivatedOsAccountIds promise
        * @tc.desc    : query activated osAccount Ids
        */
        it('ActsOsAccountGetActivedOsAccountIds_0200', 0, async function (done) {
            console.debug("====>ActsOsAccountGetActivedOsAccountIds_0200 start====");
            var osAccountManager = osaccount.getAccountManager(); 
            osAccountManager.getActivatedOsAccountIds().then((dataArray)=>{
                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
        * @tc.name       Test createOsAccountForDomain queryOsAccountLocalIdFromDomain callback
        * @tc.desc       Test createOsAccountForDomain queryOsAccountLocalIdFromDomain API functionality
        */
        it('ActsOsAccountQueryDomainTest_0300', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryDomainTest_0100 start====");
            var osAccountManager = osaccount.getAccountManager();
            osAccountManager.queryOsAccountLocalIdFromDomain({domain: "", accountName: ""}, (err)=>{
                console.debug("====>ActsOsAccountQueryDomainTest_0300 err:" + JSON.stringify(err));
                expect(err.code != 0).assertEqual(true)
                console.debug("====>ActsOsAccountQueryDomainTest_0300 end====");
                done();
            })
        });

        /**
        * @tc.number     ActsOsAccountQueryDomainTest_0400
        * @tc.name       Test createOsAccountForDomain queryOsAccountLocalIdFromDomain pormise
        * @tc.desc       Test createOsAccountForDomain queryOsAccountLocalIdFromDomain API functionality
        */
         it('ActsOsAccountQueryDomainTest_0400', 0, async function (done) {
            console.debug("====>ActsOsAccountQueryDomainTest_0400 start====");
            var osAccountManager = osaccount.getAccountManager();
            osAccountManager.queryOsAccountLocalIdFromDomain({domain: "", accountName: ""}).then((accountID)=>{
                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 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699
            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
        * @tc.name    : checkConstraintEnabled callback
        * @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====");
            AccountManager.checkConstraintEnabled(100, "constraint.bluetooth", (err, result)=>{
                console.debug("====>checkConstraintEnabled err:" + JSON.stringify(err));
                expect(err).assertEqual(null);
                expect(result).assertTrue();
                console.debug("====>ActsOsAccountCheckConstraints_3300 end====");
                done();
            })
        })

        /*
        * @tc.number  : ActsOsAccountPermission_3400
        * @tc.name    : checkConstraintEnabled promise
        * @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{
                await AccountManager.checkConstraintEnabled(100, "constraint.bluetooth");
                done();
            }
            catch(err){
                console.debug("====>checkConstraintEnabled err:" + JSON.stringify(err));
                expect(err).assertEqual(null);
                console.debug("====>ActsOsAccountCheckConstraints_3400 end====");
                done();
            }
        })       
    })
}