Skip to content

Latest commit

 

History

History
113 lines (84 loc) · 6.75 KB

confidence-level-joining.md

File metadata and controls

113 lines (84 loc) · 6.75 KB

Confidence Level Joining Example

This example illustrates how EiffelConfidenceLevelModifiedEvent can be used to capture and summarize a larger body of lower level results, such as test suite verdicts, effectively joining multiple flows in the continuous integration and delivery system.

A JSON array of all events used in this example can be found here.

Introduction

A common use case in continuous integration and delivery systems is to join many separate (and disparate) tests into a larger entity, providing a stamp of approval to the item under test. In Eiffel, such stamps are provided by EiffelConfidenceLevelModifiedEvent. This not only serves the purpose of raising the level of abstraction, thereby facilitating analysis and release decisions, but also provides a pragmatic extension point of the production pipeline: an external listener (e.g. a product looking to integrate the item under test) is not interested in tracking individual test case results, particularly as they may well change over time or even from execution to execution, but simply wants to know "Is this artifact good enough for me to pick up?".

Event Graph

alt text

Event-by-Event Explanation

ArtC1

The EiffelArtifactCreatedEvent is central in this example. It declares that a new artifact has been created, and (largely via links) documents how and from what it was built. At the time of this event we still know very little about the artifact: it has unique coordinates (its purl identity), but where to fetch it or whether it is any good remains to be seen.

CDef1

An EiffelCompositionDefinedEvent detailing a composition of items (such as source code revisions and other artifacts), from which the artifact declared by ArtC1 was built. The elements of the composition, the reason for defining the composition et cetera are excluded in this example.

EDef1

An EiffelEnvironmentDefinedEvent describing the environment in which the artifact declared by ArtC1 was built.

ArtP1

The EiffelArtifactPublishedEvent declaring that the created artifact now has been published, and consequently may be fetched. Since ArtC1 itself declares the purl identity, the artifact may be fetched using only that information (assuming a binary repository supporting this, such as Artifactory), but it is still recommended practice to explicitly declare when and where the artifact can be retrieved, in order to avoid outages or timing issues.

ActT1, ActT2, ActS1, ActS2, ActF1, ActF2

A set of EiffelActivityTriggeredEvent, EiffelActivityStartedEvent, EiffelActivityFinishedEvent reporting on the lifecycle of two independent activity executions being caused by the publication of the artifact. Note that the EiffelActivityStartedEvents and EiffelActivityFinishedEvents are "dead ends" in the graph: in this example, nothing occurs as a direct cause of the activity starting or finishing (although such a setup is, of course, entirely possible) and the work being done within the activity refers directly to the EiffelActivityTriggeredEvent as its context. This shows how, in one sense, this type of lifecycle events is superfluous: for the core functionality of this example it is perfectly possible to cut them out and let the EiffelTestCaseStartedEvents refer directly to ArtP1 as their cause. Activity events do provide important contextual information, however, as they allow monitoring of e.g. system performance, bottlenecks, queue times and execution durations. They also serve the purpose of clustering work; in this example, ActT1 and ActT2 may represent activities executed at wildly different times, at different locations and by different organizations.

TCT1, TCT2, TCT3, TCT4

EiffelTestCaseTriggeredEvents declaring that, as part of their respective activities, test cases have been triggered for execution. In this example only a very small number of test cases are executed - in reality, these events tend to be very numerous. Note that the cause of the execution can be traced to ArtC1 via CONTEXT and CAUSE links. This is not enough to unambiguously identify the item under test, however: it is entirely conceivable that the immediate cause for executing the test is completely independent from the item under test. Consequently the IUT link is used to reference ArtC1 directly.

TCS1, TCS2, TCS3, TCS4

EiffelTestCaseStartedEvents declaring that the previously triggered test case executions have commenced.

TCF1, TCF2, TCF3, TCF4

EiffelTestCaseFinishedEvents reporting the verdict of their respective test case executions.

CLM1

The EiffelConfidenceLevelModifiedEvent that summarizes all of the test case executions under a single headline. Note that the algorithm for determining this confidence level may be simple or relatively complex, but an important point of the event is that this algorithm is evaluated close to those tests, affording separation of concerns for users (human or automated) who simply want to know whether the relevant tests worked, whichever those tests happened to be at that point in time. This way the nitty gritty details are abstracted away. It doesn't end there, however: while not included in this example, CLM1 may in turn be but a building block of subsequent, even higher level EiffelConfidenceLevelModifiedEvents.