本文整理匯總了Golang中github.com/HewlettPackard/oneview-golang/i3s.I3SClient.GetOSBuildPlanByName方法的典型用法代碼示例。如果您正苦於以下問題:Golang I3SClient.GetOSBuildPlanByName方法的具體用法?Golang I3SClient.GetOSBuildPlanByName怎麽用?Golang I3SClient.GetOSBuildPlanByName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/HewlettPackard/oneview-golang/i3s.I3SClient
的用法示例。
在下文中一共展示了I3SClient.GetOSBuildPlanByName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: TestDeleteOSBuildPlan
func TestDeleteOSBuildPlan(t *testing.T) {
var (
d *I3STest
c *i3s.I3SClient
testName string
testOSBuildPlan i3s.OSBuildPlan
)
if os.Getenv("I3S_TEST_ACCEPTANCE") == "true" {
d, c = getTestDriverA("test_os_build_plan")
if c == nil {
t.Fatalf("Failed to execute getTestDriver() ")
}
testName = d.Tc.GetTestData(d.Env, "Name").(string)
err := c.DeleteOSBuildPlan(testName)
assert.NoError(t, err, "DeleteOSBuildPlan err-> %s", err)
testOSBuildPlan, err = c.GetOSBuildPlanByName(testName)
assert.NoError(t, err, "GetOSBuildPlanByName with deleted os build plan-> %+v", err)
assert.Equal(t, "", testOSBuildPlan.Name, fmt.Sprintf("Problem getting os build plan name, %+v", testOSBuildPlan))
} else {
_, c = getTestDriverU("test_os_build_plan")
err := c.DeleteOSBuildPlan("footest")
assert.Error(t, err, fmt.Sprintf("ALL ok, no error, caught as expected: %s,%+v\n", err, testOSBuildPlan))
}
}
示例2: TestGetOSBuildPlanByName
func TestGetOSBuildPlanByName(t *testing.T) {
var (
d *I3STest
c *i3s.I3SClient
testName string
)
if os.Getenv("I3S_TEST_ACCEPTANCE") == "true" {
d, c = getTestDriverA("test_os_build_plan")
if c == nil {
t.Fatalf("Failed to execute getTestDriver() ")
}
testName = d.Tc.GetTestData(d.Env, "Name").(string)
testOSBuildPlan, err := c.GetOSBuildPlanByName(testName)
assert.NoError(t, err, "GetOSBuildPlanByName thew an error -> %s", err)
assert.Equal(t, testName, testOSBuildPlan.Name)
testOSBuildPlan, err = c.GetOSBuildPlanByName("bad")
assert.NoError(t, err, "GetOSBuildPlanByName with fake name -> %s", err)
assert.Equal(t, "", testOSBuildPlan.Name)
} else {
d, c = getTestDriverU("test_os_build_plan")
testName = d.Tc.GetTestData(d.Env, "Name").(string)
data, err := c.GetOSBuildPlanByName(testName)
assert.Error(t, err, fmt.Sprintf("ALL ok, no error, caught as expected: %s,%+v\n", err, data))
}
}
示例3: TestCreateOSBuildPlan
func TestCreateOSBuildPlan(t *testing.T) {
var (
d *I3STest
c *i3s.I3SClient
testName string
)
if os.Getenv("I3S_TEST_ACCEPTANCE") == "true" {
d, c = getTestDriverA("test_os_build_plan")
if c == nil {
t.Fatalf("Failed to execute getTestDriver() ")
}
// find out if the test os build plan already exist
testName = d.Tc.GetTestData(d.Env, "Name").(string)
testOSBuildPlan, err := c.GetOSBuildPlanByName(testName)
assert.NoError(t, err, "CreateOSBuildPlan get the OS BuildPlan error -> %s", err)
if testOSBuildPlan.URI.IsNil() {
testOSBuildPlan = i3s.OSBuildPlan{
Name: testName,
Type: d.Tc.GetTestData(d.Env, "Type").(string),
OEBuildPlanType: d.Tc.GetTestData(d.Env, "OEBuildPlanType").(string),
}
err := c.CreateOSBuildPlan(testOSBuildPlan)
assert.NoError(t, err, "CreateOSBuildPlan error -> %s", err)
err = c.CreateOSBuildPlan(testOSBuildPlan)
assert.Error(t, err, "CreateOSBuildPlan should error because the OSBuildPlan already exists, err-> %s", err)
} else {
log.Warnf("The osBuildPlan already exist, so skipping CreateOSBuildPlan test for %s", testName)
}
// reload the os build plan that we just created
testOSBuildPlan, err = c.GetOSBuildPlanByName(testName)
assert.NoError(t, err, "GetOSBuildPlan error -> %s", err)
}
}