Skip to content
Snippets Groups Projects

fix importance bug

Merged Timm Fitschen requested to merge f-importance into dev
Files
32
+ 110
0
#
# This file is a part of the CaosDB Project.
#
# Copyright (C) 2021 Timm Fitsche <t.fitschen@indiscale.com>
# Copyright (C) 2021 IndiScale GmbH <info@indiscale.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
# Five columns:
# DOMAIN_ID, ENTITY_ID, TRANSACTION, JOB, JOB_FAILURE_SEVERITY
# general rules
0,0,INSERT,CheckPropValid,ERROR
0,0,INSERT,CheckParValid,ERROR
0,0,INSERT,CheckParOblPropPresent,ERROR
0,0,INSERT,CheckValueParsable,ERROR
0,0,UPDATE,CheckPropValid,ERROR
0,0,UPDATE,CheckParValid,ERROR
0,0,UPDATE,CheckParOblPropPresent,ERROR
0,0,UPDATE,CheckValueParsable,ERROR
0,0,DELETE,CheckReferenceDependencyExistent,ERROR
0,0,DELETE,CheckChildDependencyExistent,ERROR
# role specific rules
## recordtype rules
0,1,INSERT,CheckNamePresent,ERROR
0,1,INSERT,CheckPropPresent,WARN
0,1,INSERT,SetImpToRecByDefault,ERROR
0,1,UPDATE,CheckNamePresent,ERROR
0,1,UPDATE,CheckPropPresent,WARN
0,1,UPDATE,SetImpToRecByDefault,ERROR
## record rules
0,2,INSERT,CheckNamePresent,WARN
0,2,INSERT,CheckPropPresent,WARN
0,2,INSERT,CheckParPresent,ERROR
0,2,INSERT,SetImpToFix,ERROR
0,2,UPDATE,CheckNamePresent,WARN
0,2,UPDATE,CheckPropPresent,WARN
0,2,UPDATE,CheckParPresent,ERROR
0,2,UPDATE,SetImpToFix,ERROR
## file rules
0,3,INSERT,CheckNamePresent,WARN
0,3,INSERT,MatchFileProp,ERROR
0,3,INSERT,CheckTargetPathValid,ERROR
0,3,INSERT,SetImpToFix,ERROR
0,3,UPDATE,CheckNamePresent,WARN
0,3,UPDATE,MatchFileProp,ERROR
0,3,UPDATE,CheckTargetPathValid,ERROR
0,3,UPDATE,SetImpToFix,ERROR
## property rules
0,4,INSERT,CheckDatatypePresent,ERROR
0,4,UPDATE,CheckDatatypePresent,ERROR
0,4,INSERT,CheckNamePresent,ERROR
0,4,UPDATE,CheckNamePresent,ERROR
0,4,INSERT,SetImpToFix,ERROR
0,4,UPDATE,SetImpToFix,ERROR
## query template rules
0,8,UPDATE,CheckQueryTemplate,ERROR
0,8,INSERT,CheckQueryTemplate,ERROR
# data type specific rules
## reference rules
0,11,INSERT,CheckRefidPresent,WARN
0,11,INSERT,CheckRefidValid,ERROR
0,11,INSERT,CheckRefidIsaParRefid,WARN
0,11,UPDATE,CheckRefidPresent,WARN
0,11,UPDATE,CheckRefidValid,ERROR
0,11,UPDATE,CheckRefidIsaParRefid,WARN
## integer rules
0,12,INSERT,CheckUnitPresent,WARN
0,12,INSERT,ParseUnit,WARN
0,12,UPDATE,CheckUnitPresent,WARN
0,12,UPDATE,ParseUnit,WARN
## double rules
0,13,INSERT,CheckUnitPresent,WARN
0,13,INSERT,ParseUnit,WARN
0,13,UPDATE,CheckUnitPresent,WARN
0,13,UPDATE,ParseUnit,WARN
## filereference rules
0,17,INSERT,CheckRefidValid,ERROR
0,17,INSERT,CheckRefidIsaParRefid,ERROR
0,17,UPDATE,CheckRefidValid,ERROR
0,17,UPDATE,CheckRefidIsaParRefid,ERROR
Loading