1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package config
- import (
- "fmt"
- "strings"
- "testing"
- yaml "github.com/cloudfoundry-incubator/candiedyaml"
- "github.com/rancher/os/util"
- )
- func testValidate(t *testing.T, cfg []byte, contains string) {
- fmt.Printf("Testing %s, contains %s", string(cfg), contains)
- validationErrors, err := ValidateBytes(cfg)
- if err != nil {
- t.Fatal(err)
- }
- if contains == "" && len(validationErrors.Errors()) != 0 {
- fmt.Printf("validationErrors: %v", validationErrors.Errors())
- t.Fail()
- }
- if !strings.Contains(fmt.Sprint(validationErrors.Errors()), contains) {
- t.Fail()
- }
- }
- func TestValidate(t *testing.T) {
- testValidate(t, []byte("{}"), "")
- testValidate(t, []byte(`rancher:
- log: true`), "")
- testValidate(t, []byte(`write_files:
- - container: console
- path: /etc/rc.local
- permissions: "0755"
- owner: root
- content: |
- #!/bin/bash
- wait-for-docker`), "")
- testValidate(t, []byte(`rancher:
- docker:
- extra_args: ['--insecure-registry', 'my.registry.com']`), "")
- testValidate(t, []byte("bad_key: {}"), "Additional property bad_key is not allowed")
- testValidate(t, []byte("rancher: []"), "rancher: Invalid type. Expected: object, given: array")
- var fullConfig map[string]interface{}
- if err := util.ConvertIgnoreOmitEmpty(CloudConfig{}, &fullConfig); err != nil {
- t.Fatal(err)
- }
- fullConfigBytes, err := yaml.Marshal(fullConfig)
- if err != nil {
- t.Fatal(err)
- }
- testValidate(t, fullConfigBytes, "")
- }
|