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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016 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 (
"fmt"
"net/http"
. "gopkg.in/check.v1"
. "github.com/snapcore/snapd/cmd/snap"
)
func (s *SnapSuite) TestUnaliasHelp(c *C) {
c.Skip("the rendering of this text depends on the version of go-flags")
msg := `Usage:
snap.test unalias [unalias-OPTIONS] [<alias-or-snap>]
The unalias command removes a single alias if the provided argument is a manual
alias, or disables all aliases of a snap, including manual ones, if the
argument is a snap name.
[unalias command options]
--no-wait Do not wait for the operation to finish but just
print the change id.
`
s.testSubCommandHelp(c, "unalias", msg)
}
func (s *SnapSuite) TestUnalias(c *C) {
s.RedirectClientToTestServer(func(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/v2/aliases":
c.Check(r.Method, Equals, "POST")
c.Check(DecodedRequestBody(c, r), DeepEquals, map[string]interface{}{
"action": "unalias",
"snap": "alias1",
"alias": "alias1",
})
w.WriteHeader(202)
fmt.Fprintln(w, `{"type":"async", "status-code": 202, "change": "zzz"}`)
case "/v2/changes/zzz":
c.Check(r.Method, Equals, "GET")
fmt.Fprintln(w, `{"type":"sync", "result":{"ready": true, "status": "Done", "data": {"aliases-removed": [{"alias": "alias1", "snap": "foo", "app": "foo"}]}}}`)
default:
c.Fatalf("unexpected path %q", r.URL.Path)
}
})
rest, err := Parser(Client()).ParseArgs([]string{"unalias", "alias1"})
c.Assert(err, IsNil)
c.Assert(rest, DeepEquals, []string{})
c.Assert(s.Stdout(), Equals, ""+
"Removed:\n"+
" - foo as alias1\n",
)
c.Assert(s.Stderr(), Equals, "")
}
|