/* Copyright 2014 CoreOS, Inc. 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 http://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. */ package waagent import ( "encoding/json" "os" "reflect" "testing" ) type mockFilesystem map[string][]byte func (m mockFilesystem) readFile(filename string) ([]byte, error) { if contents := m[filename]; contents != nil { return contents, nil } return nil, os.ErrNotExist } func TestFetchMetadata(t *testing.T) { for _, tt := range []struct { root string files mockFilesystem metadata map[string]string }{ { "/", mockFilesystem{}, nil, }, { "/", mockFilesystem{"/SharedConfig.xml": []byte("")}, nil, }, { "/var/lib/waagent", mockFilesystem{"/var/lib/waagent/SharedConfig.xml": []byte("")}, nil, }, { "/var/lib/waagent", mockFilesystem{"/var/lib/waagent/SharedConfig.xml": []byte(` `)}, map[string]string{ "local-ipv4": "100.73.202.64", "public-ipv4": "191.239.39.77", }, }, } { a := waagent{tt.root, tt.files.readFile} metadataBytes, err := a.FetchMetadata() if err != nil { t.Fatalf("bad error for %q: want %v, got %q", tt, nil, err) } var metadata map[string]string if len(metadataBytes) > 0 { if err := json.Unmarshal(metadataBytes, &metadata); err != nil { panic(err) } } if !reflect.DeepEqual(tt.metadata, metadata) { t.Fatalf("bad metadata for %q: want %q, got %q", tt, tt.metadata, metadata) } } } func TestFetchUserdata(t *testing.T) { for _, tt := range []struct { root string files mockFilesystem }{ { "/", mockFilesystem{}, }, { "/", mockFilesystem{"/CustomData": []byte{}}, }, { "/var/lib/waagent/", mockFilesystem{"/var/lib/waagent/CustomData": []byte{}}, }, } { a := waagent{tt.root, tt.files.readFile} _, err := a.FetchUserdata() if err != nil { t.Fatalf("bad error for %q: want %v, got %q", tt, nil, err) } } } func TestConfigRoot(t *testing.T) { for _, tt := range []struct { root string configRoot string }{ { "/", "/", }, { "/var/lib/waagent", "/var/lib/waagent", }, } { a := waagent{tt.root, nil} if configRoot := a.ConfigRoot(); configRoot != tt.configRoot { t.Fatalf("bad config root for %q: want %q, got %q", tt, tt.configRoot, configRoot) } } } func TestNewDatasource(t *testing.T) { for _, tt := range []struct { root string expectRoot string }{ { root: "", expectRoot: "", }, { root: "/var/lib/waagent", expectRoot: "/var/lib/waagent", }, } { service := NewDatasource(tt.root) if service.root != tt.expectRoot { t.Fatalf("bad root (%q): want %q, got %q", tt.root, tt.expectRoot, service.root) } } }