提交 899c38b2 编写于 作者: Z zhangfuzhi

新增http证书用例

Signed-off-by: Nzhangfuzhi <zhangfuzhi1@huawei.com>
上级 5bfae602
......@@ -17,6 +17,7 @@ group("netmanager_base") {
testonly = true
if (is_standard_system) {
deps = [
"actshttpscertificatetest:ActsHttpsCertificateTest",
"dns:ActsDNSTest",
"jshttp:ActsJSHTTPTest",
"network_nopermission:ActsNetworkNopermissionTest",
......
# Copyright (c) 2023 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("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsHttpsCertificateTest") {
hap_profile = "./src/main/config.json"
deps = [
":hjs_demo_js_assets",
":hjs_demo_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsHttpsCertificateTest"
part_name = "netmanager_ext"
subsystem_name = "communication"
}
ohos_js_assets("hjs_demo_js_assets") {
js2abc = true
hap_profile = "./src/main/config.json"
source_dir = "./src/main/js"
}
ohos_resources("hjs_demo_resources") {
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
{
"description": "Function test of Https Certificate Test",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "900000",
"bundle-name": "com.ohos.actshttpscertificatetest",
"package-name": "com.ohos.actshttpscertificatetest",
"shell-timeout": "900000",
"testcase-timeout": "30000"
},
"kits": [
{
"test-file-name": [
"$module.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
},
{
"type" : "ShellKit",
"run-command" : [
"mkdir /etc/ssl/test",
"mv /etc/ssl/certs/cacert.pem /etc/ssl/test/cacert.pem"
]
},
{
"type" : "ShellKit",
"teardown-command" : [
"mv /etc/ssl/test/cacert.pem /etc/ssl/certs/cacert.pem"
]
}
]
}
{
"app": {
"bundleName": "com.ohos.actshttpscertificatetest",
"vendor": "ohos",
"version": {
"code": 10000,
"name": "1.0.0"
},
"apiVersion": {
"compatible": 4,
"target": 10,
"releaseType": "Release"
}
},
"deviceConfig": {},
"module": {
"package": "com.ohos.actshttpscertificatetest",
"name": ".entry",
"mainAbility": ".MainAbility",
"srcPath":"",
"deviceType": [
"tablet",
"default",
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"orientation": "unspecified",
"formsEnabled": false,
"name": ".MainAbility",
"srcLanguage": "js",
"srcPath": "MainAbility",
"icon": "$media:icon",
"description": "$string:MainAbility_desc",
"label": "$string:MainAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
},
{
"orientation": "unspecified",
"formsEnabled": false,
"name": ".TestAbility",
"srcLanguage": "js",
"srcPath": "TestAbility",
"icon": "$media:icon",
"description": "$string:TestAbility_desc",
"label": "$string:TestAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
}
],
"reqPermissions": [
{
"name" : "ohos.permission.INTERNET",
"reason" : "need use ohos.permission.INTERNET"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
},
{
"pages": [
"pages/index/index"
],
"name": ".TestAbility",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
],
"testRunner": {
"name": "OpenHarmonyTestRunner",
"srcPath": "TestRunner"
}
}
}
\ No newline at end of file
/*
* Copyright (C) 2023 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.
*/
export default {
onCreate() {
console.info('TestApplication onCreate')
},
onDestroy() {
console.info("TestApplication onDestroy");
}
};
\ No newline at end of file
{
"strings": {
"hello": "Hello",
"world": "World"
},
"Files": {
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
},
"Files": {
}
}
\ No newline at end of file
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
/*
* Copyright (C) 2023 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 file from '@system.file';
import app from '@system.app';
import device from '@system.device';
import router from '@system.router';
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
import { Hypium } from '@ohos/hypium'
import testsuite from '../../../test/List.test'
const injectRef = Object.getPrototypeOf(global) || global
injectRef.regeneratorRuntime = require('@babel/runtime/regenerator');
export default {
data: {
title: ''
},
onInit () {
this.title = this.$t('strings.world');
},
onShow () {
console.info('onShow finish!');
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator();
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments();
console.info('start run testcase!!!')
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite);
},
onReady () {
},
};
\ No newline at end of file
/*
* Copyright (c) 2023 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.
*/
export default {
onCreate() {
console.info('TestApplication onCreate');
},
onDestroy() {
console.info('TestApplication onDestroy');
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
},
"Files": {
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
},
"Files": {
}
}
\ No newline at end of file
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}
.title {
font-size: 60px;
text-align: center;
width: 100%;
height: 40%;
margin: 10px;
}
@media screen and (device-type: phone) and (orientation: landscape) {
.title {
font-size: 60px;
}
}
@media screen and (device-type: tablet) and (orientation: landscape) {
.title {
font-size: 100px;
}
}
\ No newline at end of file
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* Copyright (c) 2023 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.
*/
export default {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
}
}
/*
* Copyright (c) 2023 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 AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry';
function translateParamsToString(parameters) {
const keySet = new Set([
'-s class', '-s notClass', '-s suite', '-s itName',
'-s level', '-s testType', '-s size', '-s timeout',
'-s package', '-s dryRun'
])
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams += ' ' + key + ' ' + parameters[key]
}
}
return targetParams.trim()
}
export default {
onPrepare() {
console.info('OpenHarmonyTestRunner OnPrepare');
},
onRun() {
console.log('OpenHarmonyTestRunner onRun run');
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments();
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator();
var testAbilityName = abilityDelegatorArguments.parameters['-p'] + '.MainAbility';
var cmd = 'aa start -d 0 -a ' + testAbilityName + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' ' + translateParamsToString(abilityDelegatorArguments.parameters);
var debug = abilityDelegatorArguments.parameters["-D"]
console.info('debug value : '+debug)
if (debug == 'true')
{
cmd += ' -D'
}
console.info('cmd : '+cmd);
abilityDelegator.executeShellCommand(cmd, (err, data) => {
console.info('executeShellCommand : err : ' + JSON.stringify(err));
console.info('executeShellCommand : data : ' + data.stdResult);
console.info('executeShellCommand : data : ' + data.exitCode);
});
}
};
/**
* Copyright (C) 2023 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 NetworkManagerCaPathTest from './NetworkManagerCaPathTest.test.js';
export default function testsuite() {
NetworkManagerCaPathTest();
}
/**
* Copyright (C) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License")
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { describe, it, expect } from '@ohos/hypium';
import http from '@ohos.net.http';
export default function NetworkManagerCaPathTest() {
describe('NetworkManagerCaPathTest', function () {
let URL1 = "https://www.openharmony.cn";
let httpRequestOptions1 = {
method: http.RequestMethod.GET,
header: {
'Content-Type': 'application/json'
},
caPath: "/data/storage/el2/base/files/OpenHarmonyCA.pem"
}
let httpRequestOptions2 = {
method: http.RequestMethod.GET,
header: {
'Content-Type': 'application/json'
},
caPath: ""
}
let httpRequestOptions3 = {
method: http.RequestMethod.GET,
header: {
'Content-Type': 'application/json'
}
}
/**
* @tc.number SUB_Telephony_NetStack_HTTPSCertificateManagement_0100
* @tc.name request: input https://www.openharmony.cn/ & error of caPath by Async
* @tc.desc Function test
*/
it("SUB_Telephony_NetStack_HTTPSCertificateManagement_0100", 0, function (done) {
let CASE_NAME = 'SUB_Telephony_NetStack_HTTPSCertificateManagement_0100';
let httpRequest = http.createHttp();
httpRequest.request(URL1, httpRequestOptions1, (err, data) => {
if (err) {
console.info(`${CASE_NAME} httpsRequest fail, err: ${JSON.stringify(err)}`);
expect(err.code == 2300077).assertTrue();
done();
} else {
console.info(`${CASE_NAME} httpsRequest success, data: ${JSON.stringify(data)}`);
expect(false).assertTrue();
done();
}
});
});
/**
* @tc.number SUB_Telephony_NetStack_HTTPSCertificateManagement_0200
* @tc.name request: input https://www.openharmony.cn/ & null of caPath by Async
* @tc.desc Function test
*/
it("SUB_Telephony_NetStack_HTTPSCertificateManagement_0200", 0, function (done) {
let CASE_NAME = 'SUB_Telephony_NetStack_HTTPSCertificateManagement_0200';
let httpRequest = http.createHttp();
httpRequest.request(URL1, httpRequestOptions2, (err, data) => {
if (err) {
console.info(`${CASE_NAME} httpsRequest fail, err: ${JSON.stringify(err)}`);
expect(err.code == 2300077).assertTrue();
done();
} else {
console.info(`${CASE_NAME} httpsRequest success, data: ${JSON.stringify(data)}`);
expect(false).assertTrue();
done();
}
});
});
/**
* @tc.number SUB_Telephony_NetStack_HTTPSCertificateManagement_0300
* @tc.name request: input https://www.openharmony.cn/ & default of caPath by Async
* @tc.desc Function test
*/
it("SUB_Telephony_NetStack_HTTPSCertificateManagement_0300", 0, function (done) {
let CASE_NAME = 'SUB_Telephony_NetStack_HTTPSCertificateManagement_0300';
let httpRequest = http.createHttp();
httpRequest.request(URL1, httpRequestOptions3, (err, data) => {
if (err) {
console.info(`${CASE_NAME} httpsRequest fail, err: ${JSON.stringify(err)}`);
expect(err.code == 2300077).assertTrue();
done();
} else {
console.info(`${CASE_NAME} httpsRequest success, data: ${JSON.stringify(data)}`);
expect(false).assertTrue();
done();
}
});
});
});
}
\ No newline at end of file
{
"string": [
{
"name": "app_name",
"value": "Sim Test"
},
{
"name": "mainability_description",
"value": "Sim Test - sim manager interface test"
},
{
"name": "MainAbility_desc",
"value": "description"
},
{
"name": "MainAbility_label",
"value": "label"
},
{
"name": "TestAbility_desc",
"value": "description"
},
{
"name": "TestAbility_label",
"value": "label"
}
]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册