Document toolboxDocument toolbox

Defining Compliance Rules mandatory for successful CI

Here’s a pseudo-code example of a Compliance rule with a set of @tag annotations (described here):

package datamigrators # Rule tags (effectively user-defined, free-form attributes) @Tag("security") # Is a potential security vulnerability @Tag("portability") # Is a issues with assets' portability between dev, test, and prod environments @Tag("maintainability") # Is a potential maintainability issue @Tag("CorpDataWarehouse") # Is specific to the 'CorpDataWarehouse' team @Tag("fail-ci") # Is mandatory and so should fail continuous integration if breached # Rule definition <blah blah blah>

A subset of our Compliance rules (including the one above) us a specific tag value to identify those rules which are mandatory for CI success; these rules are considered of utmost importance, and may enforce constraints related to security, or portability across environments, for example. We can choose any value we wish for this identifying tag, however the tag we use in the rule must correspond with the tag referenced in the part of your CI pipeline which calls the mettleci compliance test command.

Specify which tags will cause a Continuous Integration run to fail

For example, you’ll see that the rule above defines a tag with the value fail-ci. In most environments the Continuous Integration pipeline will be configured to call the mettleci compliance test command twice:

  1. Warning breaches: The first call will be to determine which of your DataStage assets trigger those Compliance rules which do not have the fail-ci tag. This call will produce relevant output to your build system’s logs, but will not be configured to cause your build to abort.

  2. Fatal breaches: The second call will be to determine which of your DataStage assets trigger those Compliance rules which do have the fail-ci tag (i.e. a mutually exclusive set of rules from the first call). This call will again produce relevant output to your build system’s logs, but in this case it will be configured to cause your build to abort.

Again, the actual tag you choose to identify rules can be any value, as long as the tag in your rules and the tag used in your CI pipelines is the same value.

Practical examples

Here are some example calls to Compliance Test Command for each of the use cases described above.

Rules which only generate warnings would be identified as those rules not using the fail-ci tag and would be invoked using the ignore-test-failures option to prevent the pipeline from failing. e.g.

# Invoke a Compliance tests for NON-FATAL rules # Note that this call uses the 'ignore-test-failures' option $> mettleci compliance test -rules compliance_rules -assets datastage -report compliance_report_warn.xml -project-cache ./project-cache # Uses incremental testing to optimise Compliance performance. -exclude-tag 'fail-ci' # Exclude the set of rules which should cause CI to abort -junit # Produce JUnit output so CI build system can manage test results -test-suite compliance_warnings # Optional. Label these JUnit outputs as part of a 'compliance_warnings' test suite. -ignore-test-failures # Make this call succeed regardless of whether any rules fail!

Rules which abort the pipeline would be identified using the fail-ci tag and invoked without the ignore-test-failures option. e.g.

# Invoke a Compliance test for FATAL rules # Note that this call OMITS the 'ignore-test-failures' option $> mettleci compliance test -rules compliance_rules -assets datastage -report compliance_report_warn.xml -project-cache ./project-cache # Uses incremental testing to optimise Compliance performance. -include-tag 'fail-ci' # Use ONLY the set of rules which should cause CI to abort -junit # Produce JUnit output so CI build system can manage test results -test-suite compliance_failures # Optional. Label these JUnit outputs as part of a 'compliance_failures' test suite.

Use within a CI pipeline

In the context of a CI pipeline these calls would look like this example from Jenkins…

Firstly, let’s take a look the pseudocode of a reusable pipeline component in mci_compliance.groovy:

This reusable component, which acts as a wrapper for the mettleci compliance test command, takes a number of parameters, including values which will be used as operands for the -include-tag and -exclude-tag options.

In the main Jenkins pipeline definition we make two calls to the reusable compliance component, using appropriate settings for the include-tags, exclude-tags, and ignore-test-failures options:

 

See MettleCI System Integrations for more details of CI configuration.

 

© 2015-2024 Data Migrators Pty Ltd.