func TestCreateProfileTemplate(t *testing.T) { var ( d *OVTest c *ov.OVClient testName string ) if os.Getenv("ONEVIEW_TEST_ACCEPTANCE") == "true" { d, c = getTestDriverA("test_server_profile_template") if c == nil { t.Fatalf("Failed to execute getTestDriver() ") } // find out if the test Server Profile Template already exist testName = d.Tc.GetTestData(d.Env, "Name").(string) testServerProfileTemplate, err := c.GetProfileTemplateByName(testName) assert.NoError(t, err, "CreateServerProfileTemplate get the ServerProfileTemplate error -> %s", err) if testServerProfileTemplate.URI.IsNil() { testServerProfileTemplate = ov.ServerProfile{ Name: testName, Type: d.Tc.GetTestData(d.Env, "Type").(string), ServerHardwareTypeURI: utils.NewNstring(d.Tc.GetTestData(d.Env, "ServerHardwareTypeUri").(string)), EnclosureGroupURI: utils.NewNstring(d.Tc.GetTestData(d.Env, "EnclosureGroupUri").(string)), } err := c.CreateProfileTemplate(testServerProfileTemplate) assert.NoError(t, err, "CreateServerProfileTemplate error -> %s", err) //err = c.CreateProfileTemplate(testServerProfileTemplate) //assert.Error(t, err, "CreateServerProfileTemplate should error because the Server Profile Template already exists, err-> %s", err) } else { log.Warnf("The serverProfileTemplate already exist, so skipping CreateServerProfileTemplate test for %s", testName) } // reload the test profile that we just created testServerProfileTemplate, err = c.GetProfileTemplateByName(testName) assert.NoError(t, err, "GetServerProfileTemplate error -> %s", err) } }