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
|
// -*- 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 patch_test
import (
"errors"
"os"
"path/filepath"
. "gopkg.in/check.v1"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/overlord/patch"
"github.com/snapcore/snapd/overlord/snapstate"
"github.com/snapcore/snapd/overlord/state"
"github.com/snapcore/snapd/snap"
)
type patch1Suite struct{}
var _ = Suite(&patch1Suite{})
var statePatch1JSON = []byte(`
{
"data": {
"patch-level": 0,
"snaps": {
"foo": {
"sequence": [{
"name": "foo1",
"revision": "2"
}, {
"name": "foo1",
"revision": "22"
}]
},
"core": {
"sequence": [{
"name": "core",
"revision": "1"
}, {
"name": "core",
"revision": "11"
}, {
"name": "core",
"revision": "111"
}]
},
"borken": {
"sequence": [{
"name": "borken",
"revision": "x1"
}, {
"name": "borken",
"revision": "x2"
}]
},
"wip": {
"candidate": {
"name": "wip",
"revision": "11"
}
}
}
}
}
`)
func (s *patch1Suite) SetUpTest(c *C) {
dirs.SetRootDir(c.MkDir())
err := os.MkdirAll(filepath.Dir(dirs.SnapStateFile), 0755)
c.Assert(err, IsNil)
err = os.WriteFile(dirs.SnapStateFile, statePatch1JSON, 0644)
c.Assert(err, IsNil)
}
func (s *patch1Suite) TestPatch1(c *C) {
restore := patch.MockPatch1ReadType(s.readType)
defer restore()
r, err := os.Open(dirs.SnapStateFile)
c.Assert(err, IsNil)
defer r.Close()
st, err := state.ReadState(nil, r)
c.Assert(err, IsNil)
// go from patch-level 0 to patch-level 1
restorer := patch.MockLevel(1, 1)
defer restorer()
err = patch.Apply(st)
c.Assert(err, IsNil)
st.Lock()
defer st.Unlock()
expected := []struct {
name string
typ snap.Type
cur snap.Revision
}{
{"foo", snap.TypeApp, snap.R(22)},
{"core", snap.TypeOS, snap.R(111)},
{"borken", snap.TypeApp, snap.R(-2)},
{"wip", "", snap.R(0)},
}
for _, exp := range expected {
var snapst snapstate.SnapState
err := snapstate.Get(st, exp.name, &snapst)
c.Assert(err, IsNil)
c.Check(snap.Type(snapst.SnapType), Equals, exp.typ)
c.Check(snapst.Current, Equals, exp.cur)
}
// ensure we only moved forward to patch-level 1
var patchLevel int
err = st.Get("patch-level", &patchLevel)
c.Assert(err, IsNil)
c.Assert(patchLevel, Equals, 1)
}
func (s *patch1Suite) readType(name string, rev snap.Revision) (snap.Type, error) {
if name == "borken" {
return snap.TypeApp, errors.New(`cannot read info for "borken" snap`)
}
// naive emulation for now, always works
if name == "gadget" {
return snap.TypeGadget, nil
}
if name == "core" {
return snap.TypeOS, nil
}
return snap.TypeApp, nil
}
|