123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- // Copyright 2015 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 configdrive
- import (
- "reflect"
- "testing"
- "github.com/rancher/os/config/cloudinit/datasource"
- "github.com/rancher/os/config/cloudinit/datasource/test"
- )
- func TestFetchMetadata(t *testing.T) {
- for _, tt := range []struct {
- root string
- files test.MockFilesystem
- metadata datasource.Metadata
- }{
- {
- root: "/",
- files: test.NewMockFilesystem(test.File{Path: "/openstack/latest/meta_data.json", Contents: ""}),
- },
- {
- root: "/",
- files: test.NewMockFilesystem(test.File{Path: "/openstack/latest/meta_data.json", Contents: `{"ignore": "me"}`}),
- },
- {
- root: "/",
- files: test.NewMockFilesystem(test.File{Path: "/openstack/latest/meta_data.json", Contents: `{"hostname": "host"}`}),
- metadata: datasource.Metadata{Hostname: "host"},
- },
- {
- root: "/media/configdrive",
- files: test.NewMockFilesystem(test.File{Path: "/media/configdrive/openstack/latest/meta_data.json", Contents: `{"hostname": "host", "network_config": {"content_path": "config_file.json"}, "public_keys":{"1": "key1", "2": "key2"}}`},
- test.File{Path: "/media/configdrive/openstack/config_file.json", Contents: "make it work"},
- ),
- metadata: datasource.Metadata{
- Hostname: "host",
- SSHPublicKeys: map[string]string{
- "1": "key1",
- "2": "key2",
- },
- },
- },
- } {
- cd := ConfigDrive{tt.root, tt.files.ReadFile, nil, true}
- metadata, err := cd.FetchMetadata()
- if err != nil {
- t.Fatalf("bad error for %+v: want %v, got %q", tt, nil, err)
- }
- if !reflect.DeepEqual(tt.metadata, metadata) {
- t.Fatalf("bad metadata for %+v: want %#v, got %#v", tt, tt.metadata, metadata)
- }
- }
- }
- func TestFetchUserdata(t *testing.T) {
- for _, tt := range []struct {
- root string
- files test.MockFilesystem
- userdata string
- }{
- {
- "/",
- test.NewMockFilesystem(),
- "",
- },
- {
- "/",
- test.NewMockFilesystem(test.File{Path: "/openstack/latest/user_data", Contents: "userdata"}),
- "userdata",
- },
- {
- "/media/configdrive",
- test.NewMockFilesystem(test.File{Path: "/media/configdrive/openstack/latest/user_data", Contents: "userdata"}),
- "userdata",
- },
- } {
- cd := ConfigDrive{tt.root, tt.files.ReadFile, nil, true}
- userdata, err := cd.FetchUserdata()
- if err != nil {
- t.Fatalf("bad error for %+v: want %v, got %q", tt, nil, err)
- }
- if string(userdata) != tt.userdata {
- t.Fatalf("bad userdata for %+v: want %q, got %q", tt, tt.userdata, userdata)
- }
- }
- }
- func TestConfigRoot(t *testing.T) {
- for _, tt := range []struct {
- root string
- configRoot string
- }{
- {
- "/",
- "/openstack",
- },
- {
- "/media/configdrive",
- "/media/configdrive/openstack",
- },
- } {
- cd := ConfigDrive{tt.root, nil, nil, true}
- if configRoot := cd.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: "/media/configdrive",
- expectRoot: "/media/configdrive",
- },
- } {
- service := NewDatasource(tt.root)
- if service.root != tt.expectRoot {
- t.Fatalf("bad root (%q): want %q, got %q", tt.root, tt.expectRoot, service.root)
- }
- }
- }
|