func (suite *maas2EnvironSuite) getEnvWithServer(c *gc.C) (*maasEnviron, error) { testServer := gomaasapi.NewSimpleServer() testServer.AddGetResponse("/api/2.0/version/", http.StatusOK, maas2VersionResponse) testServer.AddGetResponse("/api/2.0/users/?op=whoami", http.StatusOK, "{}") testServer.Start() suite.AddCleanup(func(*gc.C) { testServer.Close() }) testAttrs := coretesting.Attrs{} for k, v := range maasEnvAttrs { testAttrs[k] = v } testAttrs["maas-server"] = testServer.Server.URL attrs := coretesting.FakeConfig().Merge(testAttrs) cfg, err := config.New(config.NoDefaults, attrs) c.Assert(err, jc.ErrorIsNil) return NewEnviron(cfg) }
func (suite *maas2EnvironSuite) getEnvWithServer(c *gc.C) (*maasEnviron, error) { testServer := gomaasapi.NewSimpleServer() testServer.AddGetResponse("/api/2.0/version/", http.StatusOK, maas2VersionResponse) testServer.AddGetResponse("/api/2.0/users/?op=whoami", http.StatusOK, "{}") // Weirdly, rather than returning a 404 when the version is // unknown, MAAS2 returns some HTML (the login page). testServer.AddGetResponse("/api/1.0/version/", http.StatusOK, "<html></html>") testServer.Start() suite.AddCleanup(func(*gc.C) { testServer.Close() }) testAttrs := coretesting.Attrs{} for k, v := range maasEnvAttrs { testAttrs[k] = v } testAttrs["maas-server"] = testServer.Server.URL attrs := coretesting.FakeConfig().Merge(testAttrs) cfg, err := config.New(config.NoDefaults, attrs) c.Assert(err, jc.ErrorIsNil) return NewEnviron(cfg) }