提交 64c05803 编写于 作者: T teacher-dong

【security】【mastere】access_token部件测试用例代码修改

Signed-off-by: Nteacher-dong <dongwang.wangdong@huawei.com>
Change-Id: I191aa66a3b28112e9a0b613e091fd7495764634f
上级 ac6ef494
...@@ -17,10 +17,9 @@ group("security") { ...@@ -17,10 +17,9 @@ group("security") {
testonly = true testonly = true
if (is_standard_system) { if (is_standard_system) {
deps = [ deps = [
#"user_iam/face_auth/js_api_test/function_test/userauth:ActsUserauthTest",
#"user_iam/face_auth/js_api_test/performance_test/performance:ActsUserauthPerformanceTest",
"access_token/AccessTokenTest_NoPermission_js:ActsAccessTokenJSApiTestNoPermission", "access_token/AccessTokenTest_NoPermission_js:ActsAccessTokenJSApiTestNoPermission",
"access_token/AccessTokenTest_Normal_js:ActsAccessTokenJSApiTestNormal", "access_token/AccessTokenTest_Normal_js:ActsAccessTokenJSApiTestNormal",
"huks_standard",
] ]
} }
} }
/* /*
* Copyright (C) 2021 Huawei Device Co., Ltd. * Copyright (C) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except compliance with the License. * you may not use this file except compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing,software * Unless required by applicable law or agreed to in writing,software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permission and * See the License for the specific language governing permission and
* limitations under the License. * limitations under the License.
*/ */
// @ts-nocheck // @ts-nocheck
import {describe, beforeEach, afterEach, it, expect} from 'deccjsunit/index' import {describe, beforeEach, afterEach, it, expect} from 'deccjsunit/index'
import abilityAccessCtrl from '@ohos.abilityAccessCtrl' import abilityAccessCtrl from '@ohos.abilityAccessCtrl'
import bundle from '@ohos.bundle' import bundle from '@ohos.bundle'
var PermissionFlag = { var PermissionFlag = {
PERMISSION_USER_SET: 1, PERMISSION_USER_SET: 1,
PERMISSION_USER_FIXED: 2, PERMISSION_USER_FIXED: 2,
PERMISSION_SYSTEM_FIXED: 3 PERMISSION_SYSTEM_FIXED: 3
}; };
const RESULT_FAIL = -1 const RESULT_FAIL = -1
const TIMEOUT = 1000; const TIMEOUT = 1000;
const DEFAULT_PERMISSION_FALG = 0 const DEFAULT_PERMISSION_FALG = 0
var permissionNameUser = "ohos.permission.ALPHA"; var permissionNameUser = "ohos.permission.ALPHA";
var tokenID = undefined var tokenID = undefined
describe('AccessTokenTest',function(){ describe('AccessTokenTest',function(){
console.log('##########start AccessTokenTests'); console.log('##########start AccessTokenTests');
beforeAll(async function (done){ beforeAll(async function (done){
var appInfo = await bundle.getApplicationInfo('ohos.acts.security.access_token.nopermission',0 ,100); var appInfo = await bundle.getApplicationInfo('ohos.acts.security.access_token.nopermission',0 ,100);
tokenID = appInfo.accessTokenId; tokenID = appInfo.accessTokenId;
console.log("AccessTokenTest accessTokenId:" + appInfo.accessTokenId + ", name:"+ appInfo.name + ", bundleName:" + appInfo.bundleName) console.log("AccessTokenTest accessTokenId:" + appInfo.accessTokenId + ", name:"+ appInfo.name
// setTimeout(done(),TIMEOUT); + ", bundleName:" + appInfo.bundleName)
console.info("sleep begin"); console.info("sleep begin");
sleep(TIMEOUT); sleep(TIMEOUT);
console.info("sleep end"); console.info("sleep end");
done(); done();
}) })
afterEach(function(){ afterEach(function(){
}) })
function sleep(delay){ function sleep(delay){
var start = (new Date()).getTime(); var start = (new Date()).getTime();
var next = (new Date()).getTime(); var next = (new Date()).getTime();
while (next - start < delay){ while (next - start < delay){
next = (new Date()).getTime(); next = (new Date()).getTime();
continue; continue;
} }
} }
/** /**
* @tc.number Test_grantUserGrantedPermission_007 * @tc.number Test_grantUserGrantedPermission_007
* @tc.name Test atManager.grantUserGrantedPermission. * @tc.name Test atManager.grantUserGrantedPermission.
* @tc.desc Grant permission that has ohos.permission.GRANT_SENSITIVE_PERMISSIONS. * @tc.desc Grant permission that has ohos.permission.GRANT_SENSITIVE_PERMISSIONS.
*/ */
it('Test_grantUserGrantedPermission_007', 0, async function(done){ it('Test_grantUserGrantedPermission_007', 0, async function(done){
console.info("sleep begin"); console.info("sleep begin");
sleep(1000); sleep(1000);
console.info("sleep end"); console.info("sleep end");
console.log("Test_grantUserGrantedPermission_007 start"); console.log("Test_grantUserGrantedPermission_007 start");
var atManager = abilityAccessCtrl.createAtManager(); var atManager = abilityAccessCtrl.createAtManager();
var result = await atManager.grantUserGrantedPermission(tokenID, permissionNameUser, PermissionFlag.PERMISSION_USER_SET); var result = await atManager.grantUserGrantedPermission(tokenID, permissionNameUser,
console.log("Test_grantUserGrantedPermission_007 tokenID"+ tokenID + "-" + result) PermissionFlag.PERMISSION_USER_SET);
expect(result).assertEqual(RESULT_FAIL); console.log("Test_grantUserGrantedPermission_007 tokenID"+ tokenID + "-" + result)
expect(result).assertEqual(RESULT_FAIL);
done();
}) done();
})
/**
* @tc.number Test_revokeUserGrantedPermission_007 /**
* @tc.name Test atManager.grantUserGrantedPermission. * @tc.number Test_revokeUserGrantedPermission_007
* @tc.desc Revoke permission that has ohos.permission.GRANT_SENSITIVE_PERMISSIONS. * @tc.name Test atManager.grantUserGrantedPermission.
*/ * @tc.desc Revoke permission that has ohos.permission.GRANT_SENSITIVE_PERMISSIONS.
it('Test_revokeUserGrantedPermission_007', 0, async function(done){ */
console.log("Test_revokeUserGrantedPermission_007 start"); it('Test_revokeUserGrantedPermission_007', 0, async function(done){
var atManager = abilityAccessCtrl.createAtManager(); console.log("Test_revokeUserGrantedPermission_007 start");
var result = await atManager.revokeUserGrantedPermission(tokenID, permissionNameUser, PermissionFlag.PERMISSION_USER_SET); var atManager = abilityAccessCtrl.createAtManager();
console.log("Test_revokeUserGrantedPermission_007 tokenID"+ tokenID + "-" + result) var result = await atManager.revokeUserGrantedPermission(tokenID, permissionNameUser,
expect(result).assertEqual(RESULT_FAIL); PermissionFlag.PERMISSION_USER_SET);
console.log("Test_revokeUserGrantedPermission_007 tokenID"+ tokenID + "-" + result)
done(); expect(result).assertEqual(RESULT_FAIL);
})
done();
/** })
* @tc.number Test_getPermissionFlags_005
* @tc.name Test atManager.getPermissionFlags. /**
* @tc.desc Get permission flag that has ohos.permission.GRANT_SENSITIVE_PERMISSIONS. * @tc.number Test_getPermissionFlags_005
*/ * @tc.name Test atManager.getPermissionFlags.
it('Test_getPermissionFlags_005', 0, async function(done){ * @tc.desc Get permission flag that has ohos.permission.GRANT_SENSITIVE_PERMISSIONS.
console.log("Test_getPermissionFlags_005 start"); */
var atManager = abilityAccessCtrl.createAtManager(); it('Test_getPermissionFlags_005', 0, async function(done){
var result = await atManager.getPermissionFlags(tokenID, permissionNameUser); console.log("Test_getPermissionFlags_005 start");
console.log("Test_getPermissionFlags_005 tokenID"+ tokenID + "-" + result) console.log("Test_getPermissionFlags_005 start");
expect(result).assertEqual(DEFAULT_PERMISSION_FALG); var atManager = abilityAccessCtrl.createAtManager();
var result = await atManager.getPermissionFlags(tokenID, permissionNameUser);
done(); console.log("Test_getPermissionFlags_005 tokenID"+ tokenID + "-" + result)
}) expect(result).assertEqual(DEFAULT_PERMISSION_FALG);
})
\ No newline at end of file done();
})
})
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册