behaviors

package
v1.19.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 14, 2020 License: Apache-2.0 Imports: 8 Imported by: 0

README

Behaviors Defining Conformance

The conformance program is intended to answer the question "What is Kubernetes?". That is, what features, functions, and APIs are needed in order to call something "Kubernetes". Since v1.9, this has been defined as passing a specific set of e2e tests. As part of the conformance behavior KEP, this instead is moved to an explicit list of "behaviors", which are captured in this directory tree. The e2e tests are used to validate whether specific behaviors are met, but the definition of conformance is based upon that list of approved behaviors. This allows separate reviewers for behaviors and tests, provides a description of conformance separate from long, complex tests with code, and enables the definition of conformance to encompass behaviors for which tests have not yet been written. All of this begs the question, though, "what is a behavior?".

In behavior driven development, it is sometimes defined as the "business logic" expected from the software. That is, it is a sequence of reactions to some stimulus: an API call, a component failure, a network request on the data plane, or some other action. We can classify these reactions into a few different types in Kubernetes:

  1. Transient runtime / communication state
  2. Cluster state changes observable via the control plane
  3. Cluster state changes observable via the data plane

Another way to think about this is that a behavior is the combination of the question and answer to "What happens when...".

A behavior will consist of:

  • A description of the initial conditions and stimulus
  • A description of the resulting reactions
  • If necessary, a sequencing (ordering) of those reactions

All this is still pretty vague, so it is helpful to enumerate some of the characteristics expected of behavior descriptions for conformance in particular.

  • Behaviors should be defined at the user-visible level. Things happening behind the scenes that are not visible to the user via the API or actual data plane execution do not need to be part of conformance.
  • Behaviors should describe portable features. That is, they should be expected to work as described across vendor systems.
  • Behaviors should be defined so they are minimally constraining; if a detail is not needed for portability, it should be left out.
  • Behaviors should not be tied to specific implementations of components, or even to the existence of specific components. If a vendor chooses to rewrite a component or replace it with something else, they should still pass conformance simply by meeting the expected behaviors.
  • Ordered sequencing of the reactions should be avoided unless absolutely necessary. For example, it is core to the initContainers functionality that they run before the main containers, so in that case ordering is required.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func BehaviorFileList added in v1.19.0

func BehaviorFileList(dir string) ([]string, error)

BehaviorFileList returns a list of eligible behavior files in or under dir

func ValidateSuite added in v1.19.0

func ValidateSuite(suite *Suite) error

ValidateSuite validates that the given suite has no duplicate behavior IDs

Types

type Area

type Area struct {
	Area   string  `json:"area,omitempty"`
	Suites []Suite `json:"suites,omitempty"`
}

Area is a conformance area composed of a list of test suites

type Behavior

type Behavior struct {
	ID          string `json:"id,omitempty"`
	APIObject   string `json:"apiObject,omitempty"`
	APIField    string `json:"apiField,omitempty"`
	APIType     string `json:"apiType,omitempty"`
	Description string `json:"description,omitempty"`
}

Behavior describes the set of properties for a conformance behavior

type ConformanceData added in v1.19.0

type ConformanceData struct {
	// A URL to the line of code in the kube src repo for the test. Omitted from the YAML to avoid exposing line number.
	URL string `yaml:"-"`
	// Extracted from the "Testname:" comment before the test
	TestName string
	// CodeName is taken from the actual ginkgo descriptions, e.g. `[sig-apps] Foo should bar [Conformance]`
	CodeName string
	// Extracted from the "Description:" comment before the test
	Description string
	// Version when this test is added or modified ex: v1.12, v1.13
	Release string
	// File is the filename where the test is defined. We intentionally don't save the line here to avoid meaningless changes.
	File string
	// Behaviors is the list of conformance behaviors tested by a particular e2e test
	Behaviors []string `yaml:"behaviors,omitempty"`
}

ConformanceData describes the structure of the conformance.yaml file

type Suite

type Suite struct {
	Suite       string     `json:"suite,omitempty"`
	Description string     `json:"description,omitempty"`
	Behaviors   []Behavior `json:"behaviors,omitempty"`
}

Suite is a conformance test suite composed of a list of behaviors

func LoadSuite added in v1.19.0

func LoadSuite(path string) (*Suite, error)

LoadSuite loads a Behavior Suite from .yaml file at path

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL