17755: Merge branch 'main' into 17755-add-singularity-to-compute-image
[arvados.git] / lib / controller / server_test.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 package controller
6
7 import (
8         "context"
9         "net/http"
10         "os"
11         "path/filepath"
12
13         "git.arvados.org/arvados.git/sdk/go/arvados"
14         "git.arvados.org/arvados.git/sdk/go/arvadostest"
15         "git.arvados.org/arvados.git/sdk/go/ctxlog"
16         "git.arvados.org/arvados.git/sdk/go/httpserver"
17         check "gopkg.in/check.v1"
18 )
19
20 func integrationTestCluster() *arvados.Cluster {
21         cfg, err := arvados.GetConfig(filepath.Join(os.Getenv("WORKSPACE"), "tmp", "arvados.yml"))
22         if err != nil {
23                 panic(err)
24         }
25         cc, err := cfg.GetCluster("zzzzz")
26         if err != nil {
27                 panic(err)
28         }
29         return cc
30 }
31
32 // Return a new unstarted controller server, using the Rails API
33 // provided by the integration-testing environment.
34 func newServerFromIntegrationTestEnv(c *check.C) *httpserver.Server {
35         log := ctxlog.TestLogger(c)
36
37         handler := &Handler{Cluster: &arvados.Cluster{
38                 ClusterID:  "zzzzz",
39                 PostgreSQL: integrationTestCluster().PostgreSQL,
40         }}
41         handler.Cluster.TLS.Insecure = true
42         arvadostest.SetServiceURL(&handler.Cluster.Services.RailsAPI, "https://"+os.Getenv("ARVADOS_TEST_API_HOST"))
43         arvadostest.SetServiceURL(&handler.Cluster.Services.Controller, "http://localhost:/")
44
45         srv := &httpserver.Server{
46                 Server: http.Server{
47                         Handler: httpserver.HandlerWithContext(
48                                 ctxlog.Context(context.Background(), log),
49                                 httpserver.AddRequestIDs(httpserver.LogRequests(handler))),
50                 },
51                 Addr: ":",
52         }
53         return srv
54 }