-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 上云周期任务添加最低任务间隔时间配置 --story=120737215 (#7621)
* feat: 上云周期任务添加最低任务间隔时间配置 --story=120737215 * fix: 修复逻辑问题 --story=120737215 * fix: 修复继承问题 --story=120737215
- Loading branch information
Showing
7 changed files
with
105 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community | ||
Edition) available. | ||
Copyright (C) 2017-2020 THL A29 Limited, a Tencent company. All rights reserved. | ||
Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://opensource.org/licenses/MIT | ||
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. | ||
""" | ||
from django.test import TestCase | ||
|
||
from gcloud.utils.strings import inspect_time | ||
|
||
|
||
class InspectTimeTestCase(TestCase): | ||
def test_inspect_time(self): | ||
cron = "* * * * *" | ||
shortest_time = 30 | ||
iter_count = 10 | ||
self.assertFalse(inspect_time(cron=cron, shortest_time=shortest_time, iter_count=iter_count)) | ||
|
||
def test_fail_inspect_time(self): | ||
cron = "*/15 * * * *" | ||
shortest_time = 30 | ||
iter_count = 10 | ||
self.assertFalse(inspect_time(cron=cron, shortest_time=shortest_time, iter_count=iter_count)) | ||
|
||
def test_success_inspect_time(self): | ||
cron = "15 2 * * *" | ||
shortest_time = 30 | ||
iter_count = 10 | ||
self.assertTrue(inspect_time(cron=cron, shortest_time=shortest_time, iter_count=iter_count)) | ||
|
||
def test_iter_count_inspect_time(self): | ||
cron = "*/15 * * * *" | ||
shortest_time = 30 | ||
iter_count = 100 | ||
self.assertFalse(inspect_time(cron=cron, shortest_time=shortest_time, iter_count=iter_count)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters