
The 'All' parameter of the 'NewFinder' function controls property collection while searching the inventory. When 'All' is set to 'false', Finder collects the minimal set of object properties required to search inventory. When 'All' is set to 'true', Finder collects *all* object properties, which are *not* required to search inventory. Setting 'All' to 'true' is only useful when inspecting all properties of an object, such as by certain govc commands when the '-json' or '-dump' flags are specified. Changing All=false in VCP minimizes the SOAP payload size and marshalling required on both sides, without impacting any functionality.
72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
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 vclib
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/vmware/govmomi"
|
|
"github.com/vmware/govmomi/simulator"
|
|
)
|
|
|
|
func TestUtils(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
model := simulator.VPX()
|
|
// Child folder "F0" will be created under the root folder and datacenter folders,
|
|
// and all resources are created within the "F0" child folders.
|
|
model.Folder = 1
|
|
|
|
defer model.Remove()
|
|
err := model.Create()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
s := model.Service.NewServer()
|
|
defer s.Close()
|
|
|
|
c, err := govmomi.NewClient(ctx, s.URL, true)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
vc := &VSphereConnection{GoVmomiClient: c}
|
|
|
|
dc, err := GetDatacenter(ctx, vc, testDefaultDatacenter)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
finder := getFinder(dc)
|
|
datastores, err := finder.DatastoreList(ctx, "*")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
count := model.Count()
|
|
if count.Datastore != len(datastores) {
|
|
t.Errorf("got %d Datastores, expected: %d", len(datastores), count.Datastore)
|
|
}
|
|
|
|
_, err = finder.Datastore(ctx, testNameNotFound)
|
|
if !IsNotFound(err) {
|
|
t.Errorf("unexpected error: %s", err)
|
|
}
|
|
}
|