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