1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package main_test
import (
"encoding/json"
"fmt"
"net/http"
"gopkg.in/check.v1"
snap "github.com/snapcore/snapd/cmd/snap"
)
var removeUserJsonFmtReplyHappy = `{
"type": "sync",
"result": {
"removed": [{"username": %q}]
}
}`
var removeUserJsonReplyTooMany = `{
"type": "sync",
"result": {
"removed": [{"username": "too"}, {"username": "many"}]
}
}`
var removeUserJsonReplyTooFew = `{
"type": "sync",
"result": {
"removed": []
}
}`
func makeRemoveUserChecker(c *check.C, n *int, username string, fmtJsonReply string) func(w http.ResponseWriter, r *http.Request) {
f := func(w http.ResponseWriter, r *http.Request) {
switch *n {
case 0:
c.Check(r.Method, check.Equals, "POST")
c.Check(r.URL.Path, check.Equals, "/v2/users")
var gotBody map[string]any
dec := json.NewDecoder(r.Body)
err := dec.Decode(&gotBody)
c.Assert(err, check.IsNil)
wantBody := map[string]any{
"username": username,
"action": "remove",
}
c.Check(gotBody, check.DeepEquals, wantBody)
fmt.Fprint(w, fmtJsonReply)
default:
c.Fatalf("got too many requests (now on %d)", *n+1)
}
*n++
}
return f
}
func (s *SnapSuite) TestRemoveUser(c *check.C) {
n := 0
username := "karl"
s.RedirectClientToTestServer(makeRemoveUserChecker(c, &n, username, fmt.Sprintf(removeUserJsonFmtReplyHappy, username)))
rest, err := snap.Parser(snap.Client()).ParseArgs([]string{"remove-user", "karl"})
c.Assert(err, check.IsNil)
c.Check(rest, check.DeepEquals, []string{})
c.Check(n, check.Equals, 1)
c.Assert(s.Stdout(), check.Equals, fmt.Sprintf("removed user %q\n", username))
c.Assert(s.Stderr(), check.Equals, "")
}
func (s *SnapSuite) TestRemoveUserUnhappyTooMany(c *check.C) {
n := 0
s.RedirectClientToTestServer(makeRemoveUserChecker(c, &n, "karl", removeUserJsonReplyTooMany))
_, err := snap.Parser(snap.Client()).ParseArgs([]string{"remove-user", "karl"})
c.Assert(err, check.ErrorMatches, `internal error: RemoveUser returned unexpected number of removed users: 2`)
c.Check(n, check.Equals, 1)
}
func (s *SnapSuite) TestRemoveUserUnhappyTooFew(c *check.C) {
n := 0
s.RedirectClientToTestServer(makeRemoveUserChecker(c, &n, "karl", removeUserJsonReplyTooFew))
_, err := snap.Parser(snap.Client()).ParseArgs([]string{"remove-user", "karl"})
c.Assert(err, check.ErrorMatches, `internal error: RemoveUser returned unexpected number of removed users: 0`)
c.Check(n, check.Equals, 1)
}
|