• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16import { paramMock } from "../utils"
17import { WantAgent } from "./ohos_wantAgent"
18
19export function mockSystemTimer() {
20  const systemTimer = {
21    TIMER_TYPE_REALTIME: '[PC preview] unknow TIMER_TYPE_REALTIME',
22    TIMER_TYPE_WAKEUP: '[PC preview] unknow TIMER_TYPE_WAKEUP',
23    TIMER_TYPE_EXACT: '[PC preview] unknow TIMER_TYPE_EXACT',
24    TIMER_TYPE_IDLE: '[PC preview] unknow TIMER_TYPE_IDLE',
25    createTimer: function (...args) {
26      console.warn("systemTimer.createTimer interface mocked in the Previewer. How this interface works on the" +
27        " Previewer may be different from that on a real device.")
28      const len = args.length
29      if (typeof args[len - 1] === 'function') {
30        args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramNumberMock)
31      } else {
32        return new Promise((resolve, reject) => {
33          resolve(paramMock.paramNumberMock);
34        })
35      }
36    },
37    startTimer: function (...args) {
38      console.warn("systemTimer.startTimer interface mocked in the Previewer. How this interface works on the" +
39        " Previewer may be different from that on a real device.")
40      const len = args.length
41      if (typeof args[len - 1] === 'function') {
42        args[len - 1].call(this, paramMock.businessErrorMock)
43      } else {
44        return new Promise((resolve, reject) => {
45          resolve();
46        })
47      }
48    },
49    stopTimer: function (...args) {
50      console.warn("systemTimer.stopTimer interface mocked in the Previewer. How this interface works on the" +
51        " Previewer may be different from that on a real device.")
52      const len = args.length
53      if (typeof args[len - 1] === 'function') {
54        args[len - 1].call(this, paramMock.businessErrorMock)
55      } else {
56        return new Promise((resolve, reject) => {
57          resolve();
58        })
59      }
60    },
61    destroyTimer: function (...args) {
62      console.warn("systemTimer.destroyTimer interface mocked in the Previewer. How this interface works on the" +
63        " Previewer may be different from that on a real device.")
64      const len = args.length
65      if (typeof args[len - 1] === 'function') {
66        args[len - 1].call(this, paramMock.businessErrorMock)
67      } else {
68        return new Promise((resolve, reject) => {
69          resolve();
70        })
71      }
72    }
73  }
74  const TimerOptions = {
75    type: '[PC Preview] unknown type',
76    repeat: '[PC Preview] unknown repeat',
77    interval: '[PC Preview] unknown interval',
78    wantAgent: WantAgent,
79    callback:'[PC Preview] unknown interval'
80  }
81  return systemTimer
82}
83