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) } }