// NewServer builds a new empire.Empire instance and returns an httptest.Server // running the empire API. func NewServer(t testing.TB, e *empire.Empire) *Server { var opts server.Options opts.GitHub.Webhooks.Secret = "abcd" opts.Authenticator = auth.NewAccessTokenAuthenticator(e) opts.GitHub.Deployments.Environments = []string{"test"} opts.GitHub.Deployments.ImageBuilder = github.ImageFromTemplate(template.Must(template.New("image").Parse(github.DefaultTemplate))) return NewTestServer(t, e, opts) }
func newServer(c *cli.Context, e *empire.Empire) http.Handler { var opts server.Options opts.Authenticator = newAuthenticator(c, e) opts.GitHub.Webhooks.Secret = c.String(FlagGithubWebhooksSecret) opts.GitHub.Deployments.Environments = strings.Split(c.String(FlagGithubDeploymentsEnvironments), ",") opts.GitHub.Deployments.ImageBuilder = newImageBuilder(c) opts.GitHub.Deployments.TugboatURL = c.String(FlagGithubDeploymentsTugboatURL) return server.New(e, opts) }
func newServer(c *cli.Context, e *empire.Empire) (http.Handler, error) { rootCtx, err := newRootContext(c) if err != nil { return nil, err } var opts server.Options opts.Authenticator = newAuthenticator(c, e) opts.GitHub.Webhooks.Secret = c.String(FlagGithubWebhooksSecret) opts.GitHub.Deployments.Environments = strings.Split(c.String(FlagGithubDeploymentsEnvironments), ",") opts.GitHub.Deployments.ImageBuilder = newImageBuilder(c) opts.GitHub.Deployments.TugboatURL = c.String(FlagGithubDeploymentsTugboatURL) h := middleware.Common(server.New(e, opts)) return middleware.Handler(rootCtx, h), nil }