123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- // 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 gce
- import (
- "fmt"
- "net"
- "reflect"
- "testing"
- //"github.com/rancher/os/netconf"
- "github.com/rancher/os/config/cloudinit/datasource"
- "github.com/rancher/os/config/cloudinit/datasource/metadata"
- "github.com/rancher/os/config/cloudinit/datasource/metadata/test"
- "github.com/rancher/os/config/cloudinit/pkg"
- )
- func TestType(t *testing.T) {
- want := "gce-metadata-service"
- if kind := (MetadataService{}).Type(); kind != want {
- t.Fatalf("bad type: want %q, got %q", want, kind)
- }
- }
- func TestFetchMetadata(t *testing.T) {
- for _, tt := range []struct {
- testName string
- root string
- metadataPath string
- resources map[string]string
- expect datasource.Metadata
- clientErr error
- expectErr error
- }{
- {
- testName: "one",
- root: "/",
- metadataPath: "computeMetadata/v1/",
- resources: map[string]string{},
- },
- {
- testName: "two",
- root: "/",
- metadataPath: "computeMetadata/v1/",
- resources: map[string]string{
- "/computeMetadata/v1/instance/hostname": "host",
- },
- expect: datasource.Metadata{
- Hostname: "host",
- },
- },
- {
- testName: "three",
- root: "/",
- metadataPath: "computeMetadata/v1/",
- resources: map[string]string{
- "/computeMetadata/v1/instance/hostname": "host",
- "/computeMetadata/v1/instance/network-interfaces/0/ip": "1.2.3.4",
- "/computeMetadata/v1/instance/network-interfaces/0/access-configs/0/external-ip": "5.6.7.8",
- },
- expect: datasource.Metadata{
- Hostname: "host",
- PrivateIPv4: net.ParseIP("1.2.3.4"),
- PublicIPv4: net.ParseIP("5.6.7.8"),
- // NetworkConfig: netconf.NetworkConfig{
- // Interfaces: map[string]netconf.InterfaceConfig{
- // "eth0": netconf.InterfaceConfig{
- // Addresses: []string{
- // "5.6.7.8",
- // "1.2.3.4",
- // },
- // },
- // },
- // },
- },
- },
- {
- testName: "four",
- clientErr: pkg.ErrTimeout{Err: fmt.Errorf("test error")},
- expectErr: pkg.ErrTimeout{Err: fmt.Errorf("test error")},
- },
- } {
- service := &MetadataService{metadata.Service{
- Root: tt.root,
- Client: &test.HTTPClient{Resources: tt.resources, Err: tt.clientErr},
- MetadataPath: tt.metadataPath,
- }}
- metadata, err := service.FetchMetadata()
- if Error(err) != Error(tt.expectErr) {
- t.Fatalf("bad error (%q): want \n%q\n, got \n%q\n", tt.resources, tt.expectErr, err)
- }
- if !reflect.DeepEqual(tt.expect, metadata) {
- t.Fatalf("bad fetch %s(%q): want \n%#v\n, got \n%#v\n", tt.testName, tt.resources, tt.expect, metadata)
- }
- }
- }
- func Error(err error) string {
- if err != nil {
- return err.Error()
- }
- return ""
- }
|