/* Copyright (c) 2019 VMware, Inc. All Rights Reserved. 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 rest_test import ( "bytes" "context" "io/ioutil" "net/http" "strings" "testing" "github.com/vmware/govmomi/simulator" "github.com/vmware/govmomi/vapi/internal" "github.com/vmware/govmomi/vapi/rest" "github.com/vmware/govmomi/vim25" _ "github.com/vmware/govmomi/vapi/simulator" ) func TestSession(t *testing.T) { simulator.Test(func(ctx context.Context, vc *vim25.Client) { c := rest.NewClient(vc) session, err := c.Session(ctx) if err != nil { t.Fatal(err) } if session != nil { t.Fatal("expected nil session") } err = c.Login(ctx, simulator.DefaultLogin) if err != nil { t.Fatal(err) } session, err = c.Session(ctx) if err != nil { t.Fatal(err) } if session == nil { t.Fatal("expected non-nil session") } }) } func TestWithHeaders(t *testing.T) { simulator.Test(func(ctx context.Context, vc *vim25.Client) { c := rest.NewClient(vc) if err := c.Login(ctx, simulator.DefaultLogin); err != nil { t.Fatal(err) } // Assign the headers. ctx = c.WithHeader(ctx, http.Header{ "client-token": []string{"unique-token"}, "pid": []string{"2", "3", "4"}, }) req, err := http.NewRequest( http.MethodPost, c.Resource(internal.DebugEcho).String(), strings.NewReader("Hello, world.")) if err != nil { t.Fatal(err) } // Send a rest.RawResponse into the decoder to capture the raw // response data. var res rest.RawResponse if err := c.Do(ctx, req, &res); err != nil { t.Fatal(err) } // Read the raw response. data, err := ioutil.ReadAll(&res.Buffer) if err != nil { t.Fatal(err) } // Assert all of the request headers were echoed back to the client. if !bytes.Contains(data, []byte("Client-Token: unique-token")) { t.Fatal("missing Client-Token: unique-token") } if !bytes.Contains(data, []byte("Pid: 2")) { t.Fatal("missing Pid: 2") } if !bytes.Contains(data, []byte("Pid: 3")) { t.Fatal("missing Pid: 3") } if !bytes.Contains(data, []byte("Pid: 4")) { t.Fatal("missing Pid: 4") } }) }