Home
last modified time | relevance | path

Searched refs:match (Results 1 – 25 of 101) sorted by relevance

12345

/test/xts/acts/startup/startup_standard/deviceinfo/src/main/js/test/
DDeviceInfoJsUnit.test.js84 let arr = manufactureInfo.match(str);
113 let arr = brandInfo.match(str);
164 let arr = productSeriesInfo.match(str);
215 let arr = softwareModelInfo.match(str);
244 let arr = hardwareModelInfo.match(str);
273 let arr = hardwareProfileInfo.match(str);
302 let arr = serialInfo.match(str);
331 let arr = bootloaderVersionInfo.match(str);
360 let arr = abiListInfo.match(str);
389 let arr = securityPatchTagInfo.match(str);
[all …]
/test/xts/acts/security/certificate_framework/js_api_test_oh41/src/main/ets/test/
DcrlMatch.test.ets54 * @tc.name check X509CRL match for parameter null
70 x509CRL.match(null);
81 * @tc.name check X509CRL match for parameter undefined
97 x509CRL.match(undefined);
108 * @tc.name check X509CRL match for parameter empty
124 const result = x509CRL.match({});
135 * @tc.name check X509CRL match for parameter issuer all match
154 const result = x509CRL.match(param);
165 * @tc.name check X509CRL match for parameter issuer partly match
184 const result = x509CRL.match(param);
[all …]
DcertMatch.test.ets61 * @tc.name check X509CRL match for parameter null
77 x509Cert.match(null);
88 * @tc.name check X509CRL match for parameter undefined
104 x509Cert.match(undefined);
115 * @tc.name check X509CRL match for parameter empty
134 * @tc.name check X509CRL match for parameter x509Cert, the cert is in collection
164 * @tc.name check X509CRL match for parameter x509Cert, the cert is not in collection
195 * @tc.name check X509CRL match for parameter validDate, in incorrect format
206 pemCert0.match(param);
217 * @tc.name check X509CRL match for parameter validDate, in duration
[all …]
/test/xts/acts/startup/startup_standard/init_ndkTest/entry/src/main/ets/test/
DinitNdk.test.ets39 let arr = deviceTypeInfo.match(str);
65 let arr = deviceTypeInfo.match(str);
86 let arr = manufactureInfo.match(str);
111 let arr = manufactureInfo.match(str);
132 let arr = brandInfo.match(str);
157 let arr = brandInfo.match(str);
179 let arr = marketNameInfo.match(str);
206 let arr = marketNameInfo.match(str);
228 let arr = productSeriesInfo.match(str);
254 let arr = productSeriesInfo.match(str);
[all …]
/test/xts/acts/arkui/ace_ets_web_dev_webviewControllerError/entry/src/main/ets/test/
DwebViewContWebMessageExtReturnError.test.ets75 …Utils.registerEvent("testWebMessageExtGetStringError","The type does not match with the value of t…
86 …Utils.registerEvent("testWebMessageExtGetNumberError","The type does not match with the value of t…
97 …Utils.registerEvent("testWebMessageExtGetBooleanError","The type does not match with the value of …
108 …Utils.registerEvent("testWebMessageExtGetArrayBufferError","The type does not match with the value…
119 …Utils.registerEvent("testWebMessageExtGetArrayError","The type does not match with the value of th…
130 …Utils.registerEvent("testWebMessageExtGetErrorError","The type does not match with the value of th…
DwebViewContJsMessageExtReturnError.test.ets75 …Utils.registerEvent("testJsMessageExtGetStringError","The type does not match with the value of th…
86 …Utils.registerEvent("testJsMessageExtGetNumberError","The type does not match with the value of th…
97 …Utils.registerEvent("testJsMessageExtGetBooleanError","The type does not match with the value of t…
108 …Utils.registerEvent("testJsMessageExtGetArrayBufferError","The type does not match with the value …
119 …Utils.registerEvent("testJsMessageExtGetArrayError","The type does not match with the value of the…
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/
Dparser_lite.py133 if re.match(pattern, line.strip()):
135 elif re.match(r'(\d+) test[s]? from (.*)', message):
220 matcher = re.match(r'(.*) \((\d+) ms\)(.*)', message)
268 matcher = re.match(r'.* Running (\d+) test[s]? from .*', message)
280 matcher = re.match(r'(\d+) test[s]? from (.*)', message)
292 matcher = re.match(r'.*\((\d+) ms total\)', message)
303 matcher = re.match(r'.*\((\d+) ms total\)', message)
399 self.class_result = re.compile('^([a-zA-Z]+.*)\\.$').match(line)
404 '\\s+([a-zA-Z_]+[\\S]*)(.*)?(\\s+.*)?$').match(line)
567 return re.match(r"[\s\S]*(Tests)[\s\S]*(Failures)[\s\S]*(Ignored)[\s\S]*", line)
[all …]
Dparser.py123 if re.match(pattern, line.strip()):
125 elif re.match(r'(\d+) test[s]? from (.*)', message):
209 matcher = re.match(r'(.*) \((\d+) ms\)', message)
263 matcher = re.match(r'Running (\d+) test[s]? from .*', message)
276 matcher = re.match(r'(\d+) test[s]? from (.*)', message)
291 matcher = re.match(r'.*\((\d+) ms total\)', message)
301 matcher = re.match(r'.*\((\d+) ms total\)', message)
379 class_matcher = re.match('^([a-zA-Z]+.*)\\.$', line)
380 method_matcher = re.match('\\s+([a-zA-Z_]+[\\S]*)(.*)?(\\s+.*)?$',
696 (year, re.match(self.pattern, message).group().strip())
[all …]
/test/testfwk/arkxtest/uitest/test/
Dui_driver_test.cpp300 bool match = true; in TEST_F() local
301 match = match && window.bundleName_ == filterBundle["bundleName"].get<string>(); in TEST_F()
302 return match; in TEST_F()
312 bool match = true; in TEST_F() local
313 match = match && window.bundleName_ == filterBundleNotFind["bundleName"].get<string>(); in TEST_F()
314 return match; in TEST_F()
375 bool match = true; in TEST_F() local
376 match = match && window.actived_ == filterActive["actived"].get<bool>(); in TEST_F()
378 return match; in TEST_F()
/test/xts/acts/security/certificate_framework/js_api_test_oh41/src/main/ets/test/utils/common/
DcommonFunction.ets154 const match = str.match(reg);
156 if (match) {
157 temp = match.map((h) => {
/test/xts/acts/ability/ability_runtime/actsnfcselecttypes/ActsNFCSelectTypesTest/entry/src/main/ets/test/
DAbility.test.ets53 …* @tc.desc: Set the Want parameter, test the specified Types type, and match the corresponding app…
97 …* @tc.desc: Set the Want parameter, test the specified Types type, and match the corresponding app…
141 …* @tc.desc: Set the Want parameter, test the specified Types type, and match the corresponding app…
173 …* @tc.desc: Set the Want parameter, test the specified Types type, and match the corresponding app…
217 …* @tc.desc: Set the Want parameter, test the specified Types type, and match the corresponding app…
260 …* @tc.desc: Set the Want parameter, test the specified Types type, and match the corresponding app…
301 …* @tc.desc: Set the Want parameter, test the specified Types type, and match the corresponding app…
345 …* @tc.desc: Set the Want parameter, test the specified Types type, and match the corresponding app…
391 …* @tc.desc: Set the Want parameter, test the specified Types type, and match the corresponding app…
435 …* @tc.desc: Set the Want parameter, test the specified Types type, and match the corresponding app…
[all …]
/test/testfwk/arkxtest/uitest/core/
Dwidget_selector.cpp76 for (auto &match : selfMatchers_) { in Describe() local
77 ss << match.Describe() << ","; in Describe()
/test/xts/acts/validator/acts_validator/src/main/ets/pages/Experience/
DDeskFps.ets94 let matches = report.match(reg);
99 let fpsValues = matches.map(match => parseInt(match.substring(4)));
/test/testfwk/arkxtest/jsunit/src/module/config/
DconfigService.js55 return !this.stress.match(STRESS_RULE) ? 1 : Number.parseInt(this.stress);
100 if (!params.stress.match(STRESS_RULE)) {
110 …classArray.forEach(item => !item.match(nameRule) ? this.filterValid.push(`${key}:${params[key]}`) …
/test/xts/acts/barrierfree/accessiblecheckability/
Dhvigorw.bat46 echo Please set the NODE_HOME variable in your environment to match the
59 echo Please set the NODE_HOME variable in your environment to match the
/test/xts/acts/graphic/nativedrawing/
Dhvigorw.bat47 echo Please set the NODE_HOME variable in your environment to match the
60 echo Please set the NODE_HOME variable in your environment to match the
/test/xts/acts/graphic/nativeimage/
Dhvigorw.bat47 echo Please set the NODE_HOME variable in your environment to match the
60 echo Please set the NODE_HOME variable in your environment to match the
/test/xts/acts/barrierfree/accessiblesendevent/
Dhvigorw.bat46 echo Please set the NODE_HOME variable in your environment to match the
59 echo Please set the NODE_HOME variable in your environment to match the
/test/xts/acts/barrierfree/accessibleregisterstate/
Dhvigorw.bat46 echo Please set the NODE_HOME variable in your environment to match the
59 echo Please set the NODE_HOME variable in your environment to match the
/test/xts/acts/arkcompiler/esmodule/esmodule_entry/
Dhvigorw.bat47 echo Please set the NODE_HOME variable in your environment to match the
60 echo Please set the NODE_HOME variable in your environment to match the
/test/xts/tools/sample/AppSampleF/
Dhvigorw.bat48 echo Please set the NODE_HOME variable in your environment to match the
61 echo Please set the NODE_HOME variable in your environment to match the
/test/xts/tools/sample/AppSampleE/
Dhvigorw.bat48 echo Please set the NODE_HOME variable in your environment to match the
61 echo Please set the NODE_HOME variable in your environment to match the
/test/xts/acts/arkui/ace_ets_web_napis/
Dhvigorw.bat46 echo Please set the NODE_HOME variable in your environment to match the
59 echo Please set the NODE_HOME variable in your environment to match the
/test/xts/acts/barrierfree/accessiblecaptionconfiguration/
Dhvigorw.bat46 echo Please set the NODE_HOME variable in your environment to match the
59 echo Please set the NODE_HOME variable in your environment to match the
/test/xts/acts/arkcompiler/esmodule/esmodule_ohostestlib/
Dhvigorw.bat47 echo Please set the NODE_HOME variable in your environment to match the
60 echo Please set the NODE_HOME variable in your environment to match the

12345