-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test the backup:list and backup:create commands
- Loading branch information
1 parent
52f22e4
commit b69f226
Showing
8 changed files
with
274 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
package mockapi | ||
|
||
import ( | ||
"crypto/rand" | ||
"encoding/json" | ||
"net/http" | ||
"slices" | ||
"time" | ||
|
||
"github.com/go-chi/chi/v5" | ||
"github.com/oklog/ulid/v2" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func (h *Handler) handleListEnvironments(w http.ResponseWriter, req *http.Request) { | ||
h.store.RLock() | ||
defer h.store.RUnlock() | ||
projectID := chi.URLParam(req, "id") | ||
var envs []*Environment | ||
for _, e := range h.store.environments { | ||
if e.Project == projectID { | ||
envs = append(envs, e) | ||
} | ||
} | ||
_ = json.NewEncoder(w).Encode(envs) | ||
} | ||
|
||
func (h *Handler) handleGetEnvironment(w http.ResponseWriter, req *http.Request) { | ||
h.store.RLock() | ||
defer h.store.RUnlock() | ||
projectID := chi.URLParam(req, "project_id") | ||
environmentID := chi.URLParam(req, "environment_id") | ||
for id, e := range h.store.environments { | ||
if e.Project == projectID && id == environmentID { | ||
_ = json.NewEncoder(w).Encode(e) | ||
break | ||
} | ||
} | ||
w.WriteHeader(http.StatusNotFound) | ||
} | ||
|
||
func (h *Handler) handleGetCurrentDeployment(w http.ResponseWriter, req *http.Request) { | ||
h.store.RLock() | ||
defer h.store.RUnlock() | ||
projectID := chi.URLParam(req, "project_id") | ||
environmentID := chi.URLParam(req, "environment_id") | ||
var d *Deployment | ||
for _, e := range h.store.environments { | ||
if e.Project == projectID && e.ID == environmentID { | ||
d = e.currentDeployment | ||
} | ||
} | ||
if d == nil { | ||
w.WriteHeader(http.StatusNotFound) | ||
return | ||
} | ||
_ = json.NewEncoder(w).Encode(d) | ||
} | ||
|
||
func (h *Handler) handleCreateBackup(w http.ResponseWriter, req *http.Request) { | ||
projectID := chi.URLParam(req, "project_id") | ||
environmentID := chi.URLParam(req, "environment_id") | ||
var options = struct { | ||
Safe bool `json:"safe"` | ||
}{} | ||
require.NoError(h.t, json.NewDecoder(req.Body).Decode(&options)) | ||
backup := &Backup{ | ||
ID: ulid.MustNew(ulid.Now(), rand.Reader).String(), | ||
EnvironmentID: environmentID, | ||
Status: "CREATED", | ||
Safe: options.Safe, | ||
Restorable: true, | ||
CreatedAt: time.Now(), | ||
UpdatedAt: time.Now(), | ||
} | ||
h.addProjectBackup(projectID, backup) | ||
_ = json.NewEncoder(w).Encode(backup) | ||
} | ||
|
||
func (h *Handler) handleListBackups(w http.ResponseWriter, req *http.Request) { | ||
h.store.RLock() | ||
defer h.store.RUnlock() | ||
projectID := chi.URLParam(req, "project_id") | ||
environmentID := chi.URLParam(req, "environment_id") | ||
var backups []*Backup | ||
if projectBackups, ok := h.store.projectBackups[projectID]; ok { | ||
for _, b := range projectBackups { | ||
if b.EnvironmentID == environmentID { | ||
backups = append(backups, b) | ||
} | ||
} | ||
} | ||
// Sort backups in descending order by created date. | ||
slices.SortFunc(backups, func(a, b *Backup) int { return -timeCompare(a.CreatedAt, b.CreatedAt) }) | ||
_ = json.NewEncoder(w).Encode(backups) | ||
} | ||
|
||
func timeCompare(a, b time.Time) int { | ||
if a.Equal(b) { | ||
return 0 | ||
} | ||
if a.Before(b) { | ||
return -1 | ||
} | ||
return 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
package tests | ||
|
||
import ( | ||
"net/http/httptest" | ||
"strings" | ||
"testing" | ||
"time" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/platformsh/cli/internal/mockapi" | ||
) | ||
|
||
func TestBackupList(t *testing.T) { | ||
authServer := mockapi.NewAuthServer(t) | ||
defer authServer.Close() | ||
|
||
apiHandler := mockapi.NewHandler(t) | ||
apiServer := httptest.NewServer(apiHandler) | ||
defer apiServer.Close() | ||
|
||
projectID := "rai7quieroohu" | ||
|
||
apiHandler.SetProjects([]*mockapi.Project{ | ||
{ | ||
ID: projectID, | ||
DefaultBranch: "main", | ||
Links: mockapi.MakeHALLinks( | ||
"self=/projects/"+projectID, | ||
"environments=/projects/"+projectID+"/environments", | ||
), | ||
}, | ||
}) | ||
main := makeEnv(projectID, "main", "production", "active", nil) | ||
main.Links["backups"] = mockapi.HALLink{HREF: "/projects/" + projectID + "//environments/main/backups"} | ||
apiHandler.SetEnvironments([]*mockapi.Environment{main}) | ||
|
||
created1, err := time.Parse(time.RFC3339, "2014-04-01T10:00:00+01:00") | ||
require.NoError(t, err) | ||
created2, err := time.Parse(time.RFC3339, "2015-04-01T10:00:00+01:00") | ||
require.NoError(t, err) | ||
|
||
apiHandler.SetProjectBackups(projectID, []*mockapi.Backup{ | ||
{ | ||
ID: "123", | ||
EnvironmentID: "main", | ||
Status: "CREATED", | ||
Safe: true, | ||
Restorable: true, | ||
Automated: false, | ||
CommitID: "foo", | ||
CreatedAt: created1, | ||
}, | ||
{ | ||
ID: "456", | ||
EnvironmentID: "main", | ||
Status: "CREATED", | ||
Safe: false, | ||
Restorable: true, | ||
Automated: true, | ||
CommitID: "bar", | ||
CreatedAt: created2, | ||
}, | ||
}) | ||
|
||
run := runnerWithAuth(t, apiServer.URL, authServer.URL) | ||
|
||
assert.Equal(t, strings.TrimLeft(` | ||
+---------------------------+-----------+------------+ | ||
| Created | Backup ID | Restorable | | ||
+---------------------------+-----------+------------+ | ||
| 2015-04-01T09:00:00+00:00 | 456 | true | | ||
| 2014-04-01T09:00:00+00:00 | 123 | true | | ||
+---------------------------+-----------+------------+ | ||
`, "\n"), run("backups", "-p", projectID, "-e", ".")) | ||
|
||
assert.Equal(t, strings.TrimLeft(` | ||
+---------------------------+-----------+------------+-----------+-----------+ | ||
| Created | Backup ID | Restorable | Automated | Commit ID | | ||
+---------------------------+-----------+------------+-----------+-----------+ | ||
| 2015-04-01T09:00:00+00:00 | 456 | true | true | bar | | ||
| 2014-04-01T09:00:00+00:00 | 123 | true | false | foo | | ||
+---------------------------+-----------+------------+-----------+-----------+ | ||
`, "\n"), run("backups", "-p", projectID, "-e", ".", "--columns", "+automated,commit_id")) | ||
} | ||
|
||
func TestBackupCreate(t *testing.T) { | ||
authServer := mockapi.NewAuthServer(t) | ||
defer authServer.Close() | ||
|
||
apiHandler := mockapi.NewHandler(t) | ||
apiServer := httptest.NewServer(apiHandler) | ||
defer apiServer.Close() | ||
|
||
projectID := "vei8wah5Ohl2e" | ||
|
||
apiHandler.SetProjects([]*mockapi.Project{ | ||
{ | ||
ID: projectID, | ||
DefaultBranch: "main", | ||
Links: mockapi.MakeHALLinks( | ||
"self=/projects/"+projectID, | ||
"environments=/projects/"+projectID+"/environments", | ||
), | ||
}, | ||
}) | ||
main := makeEnv(projectID, "main", "production", "active", nil) | ||
main.Links["backups"] = mockapi.HALLink{HREF: "/projects/" + projectID + "/environments/main//backups"} | ||
main.Links["#backup"] = mockapi.HALLink{HREF: "/projects/" + projectID + "/environments/main/backups"} | ||
apiHandler.SetEnvironments([]*mockapi.Environment{main}) | ||
|
||
run := runnerWithAuth(t, apiServer.URL, authServer.URL) | ||
|
||
run("backup", "-p", projectID, "-e", ".") | ||
|
||
assert.NotEmpty(t, run("backups", "-p", projectID, "-e", ".")) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters