func (s *prepareSuite) SetUpTest(c *gc.C) { s.FakeHomeSuite.SetUpTest(c) loggo.GetLogger("juju.provider.local").SetLogLevel(loggo.TRACE) s.PatchEnvironment("http_proxy", "") s.PatchEnvironment("HTTP_PROXY", "") s.PatchEnvironment("https_proxy", "") s.PatchEnvironment("HTTPS_PROXY", "") s.PatchEnvironment("ftp_proxy", "") s.PatchEnvironment("FTP_PROXY", "") s.PatchEnvironment("no_proxy", "") s.PatchEnvironment("NO_PROXY", "") s.HookCommandOutput(&utils.AptCommandOutput, nil, nil) s.PatchValue(local.CheckLocalPort, func(port int, desc string) error { return nil }) restore := local.MockAddressForInterface() s.AddCleanup(func(*gc.C) { restore() }) }
func (s *baseProviderSuite) SetUpTest(c *gc.C) { s.TestSuite.SetUpTest(c) s.home = coretesting.MakeFakeHomeNoEnvironments(c, "test") loggo.GetLogger("juju.provider.local").SetLogLevel(loggo.TRACE) s.restore = local.MockAddressForInterface() }