| # Copyright 2024 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| description: "Required labels conformance tests" |
| section: |
| - name: "valid" |
| tests: |
| - name: "matching" |
| input: |
| spec: |
| value: |
| labels: |
| env: prod |
| experiment: "group b" |
| resource: |
| value: |
| labels: |
| env: prod |
| experiment: "group b" |
| release: "v0.1.0" |
| output: |
| expr: "optional.none()" |
| - name: "missing" |
| tests: |
| - name: "env" |
| input: |
| spec: |
| value: |
| labels: |
| env: prod |
| experiment: "group b" |
| resource: |
| value: |
| labels: |
| experiment: "group b" |
| release: "v0.1.0" |
| output: |
| value: "missing one or more required labels: [\"env\"]" |
| - name: "experiment" |
| input: |
| spec: |
| value: |
| labels: |
| env: prod |
| experiment: "group b" |
| resource: |
| value: |
| labels: |
| env: staging |
| release: "v0.1.0" |
| output: |
| value: "missing one or more required labels: [\"experiment\"]" |
| - name: "invalid" |
| tests: |
| - name: "env" |
| input: |
| spec: |
| value: |
| labels: |
| env: prod |
| experiment: "group b" |
| resource: |
| value: |
| labels: |
| env: staging |
| experiment: "group b" |
| release: "v0.1.0" |
| output: |
| value: "invalid values provided on one or more labels: [\"env\"]" |