func (s *provisionerSuite) SetUpTest(c *gc.C) { s.JujuConnSuite.SetUpTest(c) // We're testing with address allocation on by default. There are // separate tests to check the behavior when the flag is not // enabled. s.SetFeatureFlags(feature.AddressAllocation) var err error s.machine, err = s.State.AddMachine("quantal", state.JobManageModel) c.Assert(err, jc.ErrorIsNil) password, err := utils.RandomPassword() c.Assert(err, jc.ErrorIsNil) err = s.machine.SetPassword(password) c.Assert(err, jc.ErrorIsNil) err = s.machine.SetInstanceInfo("i-manager", "fake_nonce", nil, nil, nil, nil, nil) c.Assert(err, jc.ErrorIsNil) s.st = s.OpenAPIAsMachine(c, s.machine.Tag(), password, "fake_nonce") c.Assert(s.st, gc.NotNil) err = s.machine.SetProviderAddresses(network.NewAddress("0.1.2.3")) c.Assert(err, jc.ErrorIsNil) // Create the provisioner API facade. s.provisioner = s.st.Provisioner() c.Assert(s.provisioner, gc.NotNil) s.ModelWatcherTests = apitesting.NewModelWatcherTests(s.provisioner, s.BackingState, apitesting.HasSecrets) s.APIAddresserTests = apitesting.NewAPIAddresserTests(s.provisioner, s.BackingState) }
func (s *modelSuite) SetUpTest(c *gc.C) { s.JujuConnSuite.SetUpTest(c) conn, _ := s.OpenAPIAsNewMachine(c) agentAPI := apiagent.NewState(conn) c.Assert(agentAPI, gc.NotNil) s.ModelWatcherTests = apitesting.NewModelWatcherTests( agentAPI, s.BackingState, apitesting.NoSecrets) }
func (s *provisionerSuite) SetUpTest(c *gc.C) { s.JujuConnSuite.SetUpTest(c) var err error s.machine, err = s.State.AddMachine("quantal", state.JobManageModel) c.Assert(err, jc.ErrorIsNil) password, err := utils.RandomPassword() c.Assert(err, jc.ErrorIsNil) err = s.machine.SetPassword(password) c.Assert(err, jc.ErrorIsNil) err = s.machine.SetInstanceInfo("i-manager", "fake_nonce", nil, nil, nil, nil, nil) c.Assert(err, jc.ErrorIsNil) s.st = s.OpenAPIAsMachine(c, s.machine.Tag(), password, "fake_nonce") c.Assert(s.st, gc.NotNil) err = s.machine.SetProviderAddresses(network.NewAddress("0.1.2.3")) c.Assert(err, jc.ErrorIsNil) // Create the provisioner API facade. s.provisioner = provisioner.NewState(s.st) c.Assert(s.provisioner, gc.NotNil) s.ModelWatcherTests = apitesting.NewModelWatcherTests(s.provisioner, s.BackingState) s.APIAddresserTests = apitesting.NewAPIAddresserTests(s.provisioner, s.BackingState) }
func (s *stateSuite) SetUpTest(c *gc.C) { s.uniterSuite.SetUpTest(c) s.APIAddresserTests = apitesting.NewAPIAddresserTests(s.uniter, s.BackingState) s.ModelWatcherTests = apitesting.NewModelWatcherTests(s.uniter, s.BackingState) }
func (s *stateSuite) SetUpTest(c *gc.C) { s.firewallerSuite.SetUpTest(c) s.ModelWatcherTests = apitesting.NewModelWatcherTests(s.firewaller, s.BackingState, true) }