本文整理匯總了Golang中github.com/HewlettPackard/oneview-golang/i3s.I3SClient.CreateDeploymentPlan方法的典型用法代碼示例。如果您正苦於以下問題:Golang I3SClient.CreateDeploymentPlan方法的具體用法?Golang I3SClient.CreateDeploymentPlan怎麽用?Golang I3SClient.CreateDeploymentPlan使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/HewlettPackard/oneview-golang/i3s.I3SClient
的用法示例。
在下文中一共展示了I3SClient.CreateDeploymentPlan方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: 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)
}
}