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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2015-2020 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 client_test
import (
"io"
. "gopkg.in/check.v1"
"github.com/snapcore/snapd/client"
)
func (cs *clientSuite) TestClientRemoveUser(c *C) {
removed, err := cs.cli.RemoveUser(&client.RemoveUserOptions{})
c.Assert(err, ErrorMatches, "cannot remove a user without providing a username")
c.Assert(removed, IsNil)
cs.rsp = `{
"type": "sync",
"result": {
"removed": [{"id": 11, "username": "one-user", "email": "user@test.com"}]
}
}`
removed, err = cs.cli.RemoveUser(&client.RemoveUserOptions{Username: "one-user"})
c.Assert(cs.req.Method, Equals, "POST")
c.Assert(cs.req.URL.Path, Equals, "/v2/users")
c.Assert(err, IsNil)
c.Assert(removed, DeepEquals, []*client.User{
{ID: 11, Username: "one-user", Email: "user@test.com"},
})
body, err := io.ReadAll(cs.req.Body)
c.Assert(err, IsNil)
c.Assert(string(body), Equals, `{"action":"remove","username":"one-user"}`)
}
func (cs *clientSuite) TestClientRemoveUserError(c *C) {
removed, err := cs.cli.RemoveUser(nil)
c.Assert(err, ErrorMatches, "cannot remove a user without providing a username")
c.Assert(removed, IsNil)
removed, err = cs.cli.RemoveUser(&client.RemoveUserOptions{})
c.Assert(err, ErrorMatches, "cannot remove a user without providing a username")
c.Assert(removed, IsNil)
cs.rsp = `{
"type": "error",
"result": {"message": "no can do"}
}`
removed, err = cs.cli.RemoveUser(&client.RemoveUserOptions{Username: "one-user"})
c.Assert(cs.req.Method, Equals, "POST")
c.Assert(cs.req.URL.Path, Equals, "/v2/users")
c.Assert(err, ErrorMatches, "no can do")
c.Assert(removed, IsNil)
body, err := io.ReadAll(cs.req.Body)
c.Assert(err, IsNil)
c.Assert(string(body), Equals, `{"action":"remove","username":"one-user"}`)
}
func (cs *clientSuite) TestClientCreateUser(c *C) {
_, err := cs.cli.CreateUser(nil)
c.Assert(err, ErrorMatches, "cannot create a user without providing an email")
_, err = cs.cli.CreateUser(&client.CreateUserOptions{})
c.Assert(err, ErrorMatches, "cannot create a user without providing an email")
cs.rsp = `{
"type": "sync",
"result": [{
"username": "karl",
"ssh-keys": ["one", "two"]
}]
}`
rsp, err := cs.cli.CreateUser(&client.CreateUserOptions{Email: "one@email.com", Sudoer: true, Known: true})
c.Assert(cs.req.Method, Equals, "POST")
c.Assert(cs.req.URL.Path, Equals, "/v2/users")
c.Assert(err, IsNil)
body, err := io.ReadAll(cs.req.Body)
c.Assert(err, IsNil)
c.Assert(string(body), Equals, `{"action":"create","email":"one@email.com","sudoer":true,"known":true}`)
c.Assert(rsp, DeepEquals, &client.CreateUserResult{
Username: "karl",
SSHKeys: []string{"one", "two"},
})
}
var createUsersTests = []struct {
options []*client.CreateUserOptions
bodies []string
responses []string
results []*client.CreateUserResult
error string
}{{
// nothing in -> nothing out
options: nil,
}, {
options: []*client.CreateUserOptions{nil},
error: "cannot create user from store details without an email to query for",
}, {
options: []*client.CreateUserOptions{{}},
error: "cannot create user from store details without an email to query for",
}, {
options: []*client.CreateUserOptions{{
Email: "one@example.com",
Sudoer: true,
}, {
Known: true,
}},
bodies: []string{
`{"action":"create","email":"one@example.com","sudoer":true}`,
`{"action":"create","known":true}`,
},
responses: []string{
`{"type": "sync", "result": [{"username": "one", "ssh-keys":["a", "b"]}]}`,
`{"type": "sync", "result": [{"username": "two"}, {"username": "three"}]}`,
},
results: []*client.CreateUserResult{{
Username: "one",
SSHKeys: []string{"a", "b"},
}, {
Username: "two",
}, {
Username: "three",
},
},
}, {
options: []*client.CreateUserOptions{{
Automatic: true,
}},
bodies: []string{
`{"action":"create","automatic":true}`,
},
responses: []string{
// for automatic result can be empty
`{"type": "sync", "result": []}`,
},
},
}
func (cs *clientSuite) TestClientCreateUsers(c *C) {
for _, test := range createUsersTests {
cs.reqs = nil
cs.rsps = test.responses
results, err := cs.cli.CreateUsers(test.options)
if test.error != "" {
c.Assert(err, ErrorMatches, test.error)
}
c.Assert(results, DeepEquals, test.results)
var bodies []string
for _, req := range cs.reqs {
c.Assert(req.Method, Equals, "POST")
c.Assert(req.URL.Path, Equals, "/v2/users")
data, err := io.ReadAll(req.Body)
c.Assert(err, IsNil)
bodies = append(bodies, string(data))
}
c.Assert(bodies, DeepEquals, test.bodies)
}
}
func (cs *clientSuite) TestClientJSONError(c *C) {
cs.rsp = `some non-json error message`
_, err := cs.cli.SysInfo()
c.Assert(err, ErrorMatches, `cannot obtain system details: cannot decode "some non-json error message": invalid char.*`)
}
func (cs *clientSuite) TestUsers(c *C) {
cs.rsp = `{"type": "sync", "result":
[{"username": "foo","email":"foo@example.com"},
{"username": "bar","email":"bar@example.com"}]}`
users, err := cs.cli.Users()
c.Check(err, IsNil)
c.Check(users, DeepEquals, []*client.User{
{Username: "foo", Email: "foo@example.com"},
{Username: "bar", Email: "bar@example.com"},
})
}
|