2017-10-10 02:44:55 +00:00
|
|
|
# Copyright 2015-2017 Espressif Systems (Shanghai) PTE 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 os
|
|
|
|
|
|
|
|
import yaml
|
|
|
|
|
|
|
|
|
|
|
|
class Job(dict):
|
|
|
|
"""
|
|
|
|
Gitlab CI job
|
|
|
|
|
|
|
|
:param job: job data loaded from .gitlab-ci.yml
|
|
|
|
:param job_name: job name
|
|
|
|
"""
|
|
|
|
def __init__(self, job, job_name):
|
|
|
|
super(Job, self).__init__(job)
|
|
|
|
self["name"] = job_name
|
2018-05-15 03:51:56 +00:00
|
|
|
self.tags = set(self["tags"])
|
2017-10-10 02:44:55 +00:00
|
|
|
|
|
|
|
def match_group(self, group):
|
|
|
|
"""
|
|
|
|
Match group by tags of job.
|
|
|
|
All filters values of group should be included in tags.
|
|
|
|
|
|
|
|
:param group: case group to match
|
|
|
|
:return: True or False
|
|
|
|
"""
|
|
|
|
match_result = False
|
2018-05-15 03:51:56 +00:00
|
|
|
if "case group" not in self and group.ci_job_match_keys == self.tags:
|
|
|
|
# group not assigned and all tags match
|
2017-10-10 02:44:55 +00:00
|
|
|
match_result = True
|
|
|
|
return match_result
|
|
|
|
|
|
|
|
def assign_group(self, group):
|
|
|
|
"""
|
|
|
|
assign a case group to a test job.
|
|
|
|
|
|
|
|
:param group: the case group to assign
|
|
|
|
"""
|
|
|
|
self["case group"] = group
|
|
|
|
|
|
|
|
def output_config(self, file_path):
|
|
|
|
"""
|
|
|
|
output test config to the given path.
|
|
|
|
file name will be job_name.yml
|
|
|
|
|
|
|
|
:param file_path: output file path
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
file_name = os.path.join(file_path, self["name"] + ".yml")
|
|
|
|
if "case group" in self:
|
|
|
|
with open(file_name, "w") as f:
|
2018-01-31 10:59:10 +00:00
|
|
|
yaml.dump(self["case group"].output(), f, default_flow_style=False)
|