forked from grafana/tanka
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(k8s): Set default labels and annotations from spec.json
- Loading branch information
1 parent
e8b3805
commit 073e616
Showing
4 changed files
with
128 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
package process | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/google/go-cmp/cmp" | ||
|
||
"github.com/grafana/tanka/pkg/kubernetes/manifest" | ||
"github.com/grafana/tanka/pkg/spec/v1alpha1" | ||
) | ||
|
||
func TestResourceDefaults(t *testing.T) { | ||
cases := []struct { | ||
name string | ||
beforeAnnotations map[string]string | ||
beforeLabels map[string]string | ||
specAnnotations map[string]string | ||
specLabels map[string]string | ||
expectedAnnotations map[string]string | ||
expectedLabels map[string]string | ||
}{ | ||
// resource without a namespace: set it | ||
{ | ||
name: "No change", | ||
}, | ||
{ | ||
name: "Add annotation", | ||
specAnnotations: map[string]string{"a": "b"}, | ||
expectedAnnotations: map[string]string{"a": "b"}, | ||
}, | ||
{ | ||
name: "Add Label", | ||
specLabels: map[string]string{"a": "b"}, | ||
expectedLabels: map[string]string{"a": "b"}, | ||
}, | ||
{ | ||
name: "Add leaves existing", | ||
beforeAnnotations: map[string]string{"1": "2"}, | ||
beforeLabels: map[string]string{"1": "2"}, | ||
specAnnotations: map[string]string{"a": "b"}, | ||
specLabels: map[string]string{"a": "b"}, | ||
expectedAnnotations: map[string]string{"a": "b", "1": "2"}, | ||
expectedLabels: map[string]string{"a": "b", "1": "2"}, | ||
}, | ||
{ | ||
name: "Existing overrides spec", | ||
beforeAnnotations: map[string]string{"a": "c", "1": "2"}, | ||
beforeLabels: map[string]string{"a": "c", "1": "2"}, | ||
specAnnotations: map[string]string{"a": "b"}, | ||
specLabels: map[string]string{"a": "b"}, | ||
expectedAnnotations: map[string]string{"a": "c", "1": "2"}, | ||
expectedLabels: map[string]string{"a": "c", "1": "2"}, | ||
}, | ||
} | ||
|
||
for _, c := range cases { | ||
t.Run(c.name, func(t *testing.T) { | ||
cfg := v1alpha1.Config{ | ||
Spec: v1alpha1.Spec{ | ||
ResourceDefaults: v1alpha1.ResourceDefaults{ | ||
Annotations: c.specAnnotations, | ||
Labels: c.specLabels, | ||
}, | ||
}, | ||
} | ||
|
||
before := manifest.Manifest{ | ||
"kind": "Deployment", | ||
} | ||
for k, v := range c.beforeAnnotations { | ||
before.Metadata().Annotations()[k] = v | ||
} | ||
for k, v := range c.beforeLabels { | ||
before.Metadata().Labels()[k] = v | ||
} | ||
|
||
expected := manifest.Metadata{} | ||
for k, v := range c.expectedAnnotations { | ||
expected.Annotations()[k] = v | ||
} | ||
for k, v := range c.expectedLabels { | ||
expected.Labels()[k] = v | ||
} | ||
|
||
result := ResourceDefaults(manifest.List{before}, cfg) | ||
actual := result[0] | ||
if diff := cmp.Diff(expected, actual.Metadata()); diff != "" { | ||
t.Error(diff) | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters