未验证 提交 a05c9736 编写于 作者: O openharmony_ci 提交者: Gitee

!5377 fix: 修改thermal用例失败问题monthly_0816

Merge pull request !5377 from zhengpengyue/cherry-pick-1662344603
...@@ -170,7 +170,6 @@ function test7() { ...@@ -170,7 +170,6 @@ function test7() {
thermal.subscribeThermalLevel((cool) => { thermal.subscribeThermalLevel((cool) => {
console.info("warm level is: " + cool); console.info("warm level is: " + cool);
expect(cool >= thermal.ThermalLevel.COOL && cool <= thermal.ThermalLevel.EMERGENCY).assertTrue(); expect(cool >= thermal.ThermalLevel.COOL && cool <= thermal.ThermalLevel.EMERGENCY).assertTrue();
done();
}) })
await new Promise((resolve, reject) => { await new Promise((resolve, reject) => {
setTimeout(() => { setTimeout(() => {
...@@ -180,6 +179,7 @@ function test7() { ...@@ -180,6 +179,7 @@ function test7() {
resolve(); resolve();
}, MSEC_1000 * 4); }, MSEC_1000 * 4);
}) })
done();
}) })
} }
...@@ -194,7 +194,6 @@ function test8() { ...@@ -194,7 +194,6 @@ function test8() {
thermal.subscribeThermalLevel((warm) => { thermal.subscribeThermalLevel((warm) => {
console.info("warm level is: " + warm); console.info("warm level is: " + warm);
expect(warm >= thermal.ThermalLevel.COOL && warm <= thermal.ThermalLevel.EMERGENCY).assertTrue(); expect(warm >= thermal.ThermalLevel.COOL && warm <= thermal.ThermalLevel.EMERGENCY).assertTrue();
done();
}) })
await new Promise((resolve, reject) => { await new Promise((resolve, reject) => {
setTimeout(() => { setTimeout(() => {
...@@ -204,6 +203,7 @@ function test8() { ...@@ -204,6 +203,7 @@ function test8() {
resolve(); resolve();
}, MSEC_1000 * 4); }, MSEC_1000 * 4);
}) })
done();
}) })
} }
...@@ -218,7 +218,6 @@ function test9() { ...@@ -218,7 +218,6 @@ function test9() {
thermal.subscribeThermalLevel((hot) => { thermal.subscribeThermalLevel((hot) => {
console.info("hot level is: " + hot); console.info("hot level is: " + hot);
expect(hot >= thermal.ThermalLevel.COOL && hot <= thermal.ThermalLevel.EMERGENCY).assertTrue(); expect(hot >= thermal.ThermalLevel.COOL && hot <= thermal.ThermalLevel.EMERGENCY).assertTrue();
done();
}) })
await new Promise((resolve, reject) => { await new Promise((resolve, reject) => {
setTimeout(() => { setTimeout(() => {
...@@ -228,6 +227,7 @@ function test9() { ...@@ -228,6 +227,7 @@ function test9() {
resolve(); resolve();
}, MSEC_1000 * 2); }, MSEC_1000 * 2);
}) })
done();
}) })
} }
...@@ -244,7 +244,6 @@ function test10() { ...@@ -244,7 +244,6 @@ function test10() {
console.info("overheated level is: " + overheated); console.info("overheated level is: " + overheated);
expect(overheated >= thermal.ThermalLevel.COOL && expect(overheated >= thermal.ThermalLevel.COOL &&
overheated <= thermal.ThermalLevel.EMERGENCY).assertTrue(); overheated <= thermal.ThermalLevel.EMERGENCY).assertTrue();
done();
}) })
await new Promise((resolve, reject) => { await new Promise((resolve, reject) => {
setTimeout(() => { setTimeout(() => {
...@@ -254,6 +253,7 @@ function test10() { ...@@ -254,6 +253,7 @@ function test10() {
resolve(); resolve();
}, MSEC_1000 * 2); }, MSEC_1000 * 2);
}) })
done();
}) })
} }
...@@ -268,7 +268,6 @@ function test11() { ...@@ -268,7 +268,6 @@ function test11() {
thermal.subscribeThermalLevel((warning) => { thermal.subscribeThermalLevel((warning) => {
console.info("warning level is: " + warning); console.info("warning level is: " + warning);
expect(warning >= thermal.ThermalLevel.COOL && warning <= thermal.ThermalLevel.EMERGENCY).assertTrue(); expect(warning >= thermal.ThermalLevel.COOL && warning <= thermal.ThermalLevel.EMERGENCY).assertTrue();
done();
}) })
await new Promise((resolve, reject) => { await new Promise((resolve, reject) => {
setTimeout(() => { setTimeout(() => {
...@@ -278,6 +277,7 @@ function test11() { ...@@ -278,6 +277,7 @@ function test11() {
resolve(); resolve();
}, MSEC_1000 * 4); }, MSEC_1000 * 4);
}) })
done();
}) })
} }
...@@ -292,7 +292,6 @@ function test12() { ...@@ -292,7 +292,6 @@ function test12() {
thermal.subscribeThermalLevel((emergency) => { thermal.subscribeThermalLevel((emergency) => {
console.info("emergency level is: " + emergency); console.info("emergency level is: " + emergency);
expect(emergency >= thermal.ThermalLevel.COOL && emergency <= thermal.ThermalLevel.EMERGENCY).assertTrue(); expect(emergency >= thermal.ThermalLevel.COOL && emergency <= thermal.ThermalLevel.EMERGENCY).assertTrue();
done();
}) })
await new Promise((resolve, reject) => { await new Promise((resolve, reject) => {
setTimeout(() => { setTimeout(() => {
...@@ -302,6 +301,7 @@ function test12() { ...@@ -302,6 +301,7 @@ function test12() {
resolve(); resolve();
}, MSEC_1000 * 4); }, MSEC_1000 * 4);
}) })
done();
}) })
} }
...@@ -316,7 +316,6 @@ function test13() { ...@@ -316,7 +316,6 @@ function test13() {
thermal.subscribeThermalLevel((cool) => { thermal.subscribeThermalLevel((cool) => {
console.info("cool level is: " + cool); console.info("cool level is: " + cool);
expect(cool >= thermal.ThermalLevel.COOL && cool <= thermal.ThermalLevel.EMERGENCY).assertTrue(); expect(cool >= thermal.ThermalLevel.COOL && cool <= thermal.ThermalLevel.EMERGENCY).assertTrue();
done();
}) })
await new Promise((resolve, reject) => { await new Promise((resolve, reject) => {
setTimeout(() => { setTimeout(() => {
...@@ -326,5 +325,6 @@ function test13() { ...@@ -326,5 +325,6 @@ function test13() {
resolve(); resolve();
}, MSEC_1000 * 4); }, MSEC_1000 * 4);
}) })
done();
}) })
}} }}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册