All files / src/rules cds_parser_error.ts

100% Statements 51/51
91.66% Branches 11/12
100% Functions 6/6
100% Lines 51/51

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 511x 1x 1x 1x 1x 1x 1x 1x 1x 1x 10965x 10965x 10965x 10965x 32705x 32705x 32705x 32705x 32705x 32705x 32705x 32705x 10965x 10965x 10419x 10419x 10965x 10965x 258x 258x 10965x 10965x 260x 260x 10965x 10965x 326x 326x 326x 326x 4x 4x 4x 2x 2x 4x 326x 326x 326x 10965x 10965x
import {Issue} from "../issue";
import {IRule, IRuleMetadata, RuleTag} from "./_irule";
import {IObject} from "../objects/_iobject";
import {IRegistry} from "../_iregistry";
import {BasicRuleConfig} from "./_basic_rule_config";
import {CDSMetadataExtension, DataDefinition} from "../objects";
 
export class CDSParserErrorConf extends BasicRuleConfig {
}
 
export class CDSParserError implements IRule {
  private conf = new CDSParserErrorConf();
 
  public getMetadata(): IRuleMetadata {
    return {
      key: "cds_parser_error",
      title: "CDS Parser Error",
      shortDescription: `CDS parsing`,
      extendedInformation: `Parses CDS and issues parser errors`,
      tags: [RuleTag.Syntax],
    };
  }
 
  public getConfig() {
    return this.conf;
  }
 
  public setConfig(conf: CDSParserErrorConf) {
    this.conf = conf;
  }
 
  public initialize(_reg: IRegistry): IRule {
    return this;
  }
 
  public run(object: IObject): Issue[] {
    const issues: Issue[] = [];
 
    if ((object.getType() === "DDLS" && object instanceof DataDefinition) ||
        (object.getType() === "DDLX" && object instanceof CDSMetadataExtension)) {
      const hasError = object.hasParserError();
      const file = object.findSourceFile();
      if (hasError === true && file) {
        issues.push(Issue.atRow(file, 1, "CDS Parser error", this.getMetadata().key, this.getConfig().severity));
      }
    }
 
    return issues;
  }
 
}